GithubHelp home page GithubHelp logo

blog's People

Contributors

fliaping avatar

Watchers

 avatar  avatar

blog's Issues

ARTS-Week-7 | Fliaping's Blog

https://blog.fliaping.com/arts-week-7/

Algorithm:每周至少做一个 leetcode 的算法题 Review:阅读并点评至少一篇英文技术文章 Tip:学习至少一个技术技巧 Share:分享一篇有观点和思考的技术文章 ARTS挑战 Algorithm 排序算法汇总: 纯内存排序 基于比较的排序算法 插入排序 直接插入 Shell排序 罕见:伸展排序、二叉查找树排序、图书

大模型系列文章-大模型为什么有效 | Fliaping's Blog

https://blog.fliaping.com/llm-why-does-it-work/?

引言 什么是智能? 人类公认的智能体就是人类自己,人类智能有以下特点: 学习能力: 能够从经验中学习并适应新的环境。 理解与推理: 能够理解复杂的信息和进行逻辑推断。 解决问题: 面对挑战或问题时,能够找到有效的解决方案。 自主决策: 在没有外部帮助的情况下,基于信息和经验做出决策。 语言处理: 理解和

Java正则替换异常问题 | Fliaping's Blog

https://blog.fliaping.com/java-regex-replacement-exception-problem/

用Java进行正则匹配替换时,会出现莫名的异常,例如: Exception in thread “main” java.lang.IllegalArgumentException: Illegal group reference Exception in thread “main” java.lang.IndexOutOfBoundsException: No group 3 使用java正则替换,一般的方式是: 构建正则表达式:Pattern p = Pattern.compile(regex); Matcher matcher = p.match(text); 通过matcher做查找替换操作 代码示例: Pattern p = Pattern.compile("cat"); Matcher m = p.matcher("one cat two cats in the yard"); StringBuffer sb = new StringBuffer(); while (m.find()) { m.appendReplacement(sb, "dog"); } m.appendTail(sb); System.out.println(sb.toString()); 不过需要注意的是m

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.