<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[专注AI领域的技术研究探索、技术落地]]></title><description><![CDATA[尽量做有质量、深度，可以让读者真正受益成长的内容。]]></description><link>https://blog.csdn.net/hjingfeng</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; hjingfeng]]></copyright><item><title><![CDATA[AI探索实践17 - 每个人都可以用10分钟轻松制作AI换脸、AI数字人视频的方法！]]></title><link>https://blog.csdn.net/hjingfeng/article/details/137027048</link><guid>https://blog.csdn.net/hjingfeng/article/details/137027048</guid><author>hjingfeng</author><pubDate>Tue, 26 Mar 2024 09:09:31 +0800</pubDate><description><![CDATA[用剪映+facefusion实现数字人的制作]]></description><category></category></item><item><title><![CDATA[Nvidia 的浪潮和护城河 [译]]]></title><link>https://blog.csdn.net/hjingfeng/article/details/136867889</link><guid>https://blog.csdn.net/hjingfeng/article/details/136867889</guid><author>hjingfeng</author><pubDate>Wed, 20 Mar 2024 10:25:50 +0800</pubDate><description><![CDATA[来自英伟达对人工智能的狂热已经达到了这样的程度：周一，首席执行官黄仁勋在一场被分析师称为“人工智能伍德斯托克”的活动中，在运动场上推出了该公司的最新芯片。这家芯片公司的客户、合作伙伴和粉丝纷纷涌入美国冰球联盟圣何塞鲨鱼队的主场 SAP 中心，聆听黄仁勋在 Nvidia 年度大会上发表的主题演讲，今年的大会可容纳约 11,000 名观众。职业摔跤的 WWE Monday Night RAW 赛事于二月份在那里举行。贾斯汀·汀布莱克 (Justin Timberlake) 计划于五月到该体育馆进行比赛。]]></description><category></category></item><item><title><![CDATA[JSON 非常慢：这就是更快的方法！[译]]]></title><link>https://blog.csdn.net/hjingfeng/article/details/136765293</link><guid>https://blog.csdn.net/hjingfeng/article/details/136765293</guid><author>hjingfeng</author><pubDate>Mon, 18 Mar 2024 08:08:50 +0800</pubDate><description><![CDATA[文本分析了json为什么慢，以及可以替代的几种技术实现]]></description><category></category></item><item><title><![CDATA[人工智能的悄然进化：超越传统人工智能模型的复合人工智能系统的崛起 [译]]]></title><link>https://blog.csdn.net/hjingfeng/article/details/136760751</link><guid>https://blog.csdn.net/hjingfeng/article/details/136760751</guid><author>hjingfeng</author><pubDate>Sat, 16 Mar 2024 13:17:06 +0800</pubDate><description><![CDATA[复合人工智能系统（CAS）是一个集成了不同组件的系统，包括但不限于人工智能模型、检索器、数据库和外部工具，以有效地处理人工智能任务。与仅使用一种人工智能模型（例如基于 Transformer 的 LLM）的旧式人工智能系统不同，CAS 强调多种工具的集成。CAS 的示例包括 AlphaGeometry，其中法学硕士与传统的符号求解器相结合来解决奥林匹克问题，以及 RAG 系统，其中法学硕士与检索器和数据库相结合，用于回答与给定文档相关的问题。在这里，了解多模态 AI和 CAS 之间的区别非常重要。]]></description><category></category></item><item><title><![CDATA[AI探索实践16 - Typescript开发AI应用8：为大模型增加记忆(Memory)]]></title><link>https://blog.csdn.net/hjingfeng/article/details/136722112</link><guid>https://blog.csdn.net/hjingfeng/article/details/136722112</guid><author>hjingfeng</author><pubDate>Fri, 15 Mar 2024 10:20:10 +0800</pubDate><description><![CDATA[要实现为大模型增加记忆功能，在本文中主要是RunnableWithMessageHistory对象的使用。通过配置数据连接信息，和定义获取历史记录方法，我们可以非常简单的就实现这个目的。在Langchain官网上还有很多对话存储的api，读者可以根据自己的实际情况选择不同的实现方式。从数据安全性角度来说，连接信息存储在前端（比如本文的例子）并不是一个好的选择。Langchain也支持通过token的形式连接云端系统，这种方式是一种选择。不过，我还是建议通过后端的api来实现存储。]]></description><category></category></item><item><title><![CDATA[AI探索实践15 - Typescript开发AI应用7：实现Agent]]></title><link>https://blog.csdn.net/hjingfeng/article/details/136698892</link><guid>https://blog.csdn.net/hjingfeng/article/details/136698892</guid><author>hjingfeng</author><pubDate>Thu, 14 Mar 2024 12:19:59 +0800</pubDate><description><![CDATA[本文的Agent实例，是利用了之前介绍的几个技能：附加对话历史、文档加载、文档分割、向量数据库、检索链等作为工具，并附加到agent的工具列表中。当面大模型遇到问题推理到需要使用某个工具时，就会调用该工具来实现一定的业务。]]></description><category></category></item><item><title><![CDATA[AI探索实践14 - Typescript开发AI应用6：将对话历史记录添加到上下文]]></title><link>https://blog.csdn.net/hjingfeng/article/details/136641393</link><guid>https://blog.csdn.net/hjingfeng/article/details/136641393</guid><author>hjingfeng</author><pubDate>Tue, 12 Mar 2024 09:14:40 +0800</pubDate><description><![CDATA[虽然在模板中，我们定义了一个 chat_history 的变量，但是我们在调用链时，并不能直接将上面定义的消息数组： chatHistory 传入链中。在用户和大模型的对话过程中，为了更好的帮助大模型提供准确的回答，除了加载第三方文档数据之外，还有一个重要的内容：用户和大模型的对话历史记录。由于大模型每次对话对于token长度的处理能力有所限制，我们应该在页面上引导用户在不同的问题，使用新的会话。这个问题和抓取网页的内容完全不相干，但是由于有对话的历史记录的存在，大模型得以准确地回答。]]></description><category></category></item><item><title><![CDATA[AI探索实践13 - Typescript开发AI应用5：抓取网页、文档分割、向量存储与检索链语义检索的使用 【推荐】]]></title><link>https://blog.csdn.net/hjingfeng/article/details/136588067</link><guid>https://blog.csdn.net/hjingfeng/article/details/136588067</guid><author>hjingfeng</author><pubDate>Mon, 11 Mar 2024 09:00:00 +0800</pubDate><description><![CDATA[本文介绍了如何使用文档加载、使用抓取网页内容工具cheerio来实现将网页内容抓取下来并转换为文档集合，通过文档分割、文档嵌入化，将抓取的内容嵌入化并存入内存向量数据库。最后介绍了如何从向量数据库检索相关性最高的3个文档，并得到准确的模型响应。]]></description><category></category></item><item><title><![CDATA[AI探索实践12 - Typescript开发AI应用4：大模型响应数据的格式化输出]]></title><link>https://blog.csdn.net/hjingfeng/article/details/136570566</link><guid>https://blog.csdn.net/hjingfeng/article/details/136570566</guid><author>hjingfeng</author><pubDate>Sat, 09 Mar 2024 09:44:39 +0800</pubDate><description><![CDATA[通过使用LangChain的相关类，实现了对大模型响应结果解析成字符串、数组和对象的格式化输出]]></description><category></category></item><item><title><![CDATA[AI探索实践11 - Typescript开发AI应用3：Prompt Template (提示语模版) 功能]]></title><link>https://blog.csdn.net/hjingfeng/article/details/136551418</link><guid>https://blog.csdn.net/hjingfeng/article/details/136551418</guid><author>hjingfeng</author><pubDate>Fri, 08 Mar 2024 10:50:36 +0800</pubDate><description><![CDATA[本篇文章将介绍一个比较重要的概念 Prompt Template - 提示语模板，以及如何在前端实现。]]></description><category></category></item><item><title><![CDATA[AI探索实践10 - Typescript开发AI应用2：前端实现本地模型流式响应输出]]></title><link>https://blog.csdn.net/hjingfeng/article/details/136522923</link><guid>https://blog.csdn.net/hjingfeng/article/details/136522923</guid><author>hjingfeng</author><pubDate>Thu, 07 Mar 2024 09:57:03 +0800</pubDate><description><![CDATA[文本主要是记录如何用前端技术，实现流式响应（打字机）的一种方法。通过使用前端流请求与响应的处理方法，设计必要的变量来控制数据读取和显示逻辑，来实现设计目标。]]></description><category></category></item><item><title><![CDATA[AI探索实践9 - Typescript开发AI应用1：不用Python！用前端也能开发一个本地运行的“ChatGPT”！]]></title><link>https://blog.csdn.net/hjingfeng/article/details/136489515</link><guid>https://blog.csdn.net/hjingfeng/article/details/136489515</guid><author>hjingfeng</author><pubDate>Tue, 05 Mar 2024 21:00:50 +0800</pubDate><description><![CDATA[借助LangChain的js库，使用前端程序也能开发出ChatGPT之类的大模型应用了！]]></description><category></category></item><item><title><![CDATA[AI探索实践8 - 本地运行大模型]]></title><link>https://blog.csdn.net/hjingfeng/article/details/136445044</link><guid>https://blog.csdn.net/hjingfeng/article/details/136445044</guid><author>hjingfeng</author><pubDate>Mon, 04 Mar 2024 10:15:05 +0800</pubDate><description><![CDATA[大模型的本地化运行，是创建企业内部AI应用重要组成部分。选取开源的、对中文支持友好的、开源协议友好的开源大模型可以帮助我们快速建立低成本、高性能的AI应用。通过使用Ollama软件，让我们能够轻松搭建和运行一个本地大模型实例。]]></description><category></category></item><item><title><![CDATA[AI探索实践7 - 打造企业智能体(AI Agent)的重要技术-ReAct]]></title><link>https://blog.csdn.net/hjingfeng/article/details/136419072</link><guid>https://blog.csdn.net/hjingfeng/article/details/136419072</guid><author>hjingfeng</author><pubDate>Sat, 02 Mar 2024 17:20:54 +0800</pubDate><description><![CDATA[ReAct并不是指Facebook开源的前端开发框架react，而是一种实现AI Agent的一种重要方法]]></description><category></category></item><item><title><![CDATA[英伟达高级研究科学家Jim Fan：AI的下一步的重大挑战!]]></title><link>https://blog.csdn.net/hjingfeng/article/details/136394163</link><guid>https://blog.csdn.net/hjingfeng/article/details/136394163</guid><author>hjingfeng</author><pubDate>Fri, 01 Mar 2024 13:51:24 +0800</pubDate><description><![CDATA[他的演讲，为AI的未来发展设定了宏伟的蓝图，描绘了一个在多个维度上高度发展的AI技术景观。从AlphaGo的胜利到Voyager和MetaMorph的开发，再到基础智能体（Foundation Agent）的构想，我们可以看到AI技术如何从专注于单一任务的实现，逐步发展到具有广泛应用和自我进化能力的全能AI。当OpenAI在将海量的文本，训练输出高质量的文本、图片、视频时，英伟达在根据同样的原则，在研究将海量的实体+任务提示的数据，训练输出动作，这项研究将能够使所有能够移动的物体，都能够实现自动化！]]></description><category></category></item><item><title><![CDATA[AI探索实践6 - 打造企业智能体(AI Agent)的重要技术-RAG]]></title><link>https://blog.csdn.net/hjingfeng/article/details/136372096</link><guid>https://blog.csdn.net/hjingfeng/article/details/136372096</guid><author>hjingfeng</author><pubDate>Thu, 29 Feb 2024 15:17:43 +0800</pubDate><description><![CDATA[RAG模型正在给智能化服务领域带来一场变革。客服机器人、虚拟助手将因RAG的进步而变得更加智能，能够提供更加精准和个性化的服务。随着RAG模型对上下文的理解能力增强，它们将能够更自然地参与到复杂对话中，提供无缝的用户体验。]]></description><category></category></item><item><title><![CDATA[AI探索实践5 - 打造企业智能体(AI Agent)的重要技术-向量数据库]]></title><link>https://blog.csdn.net/hjingfeng/article/details/136296222</link><guid>https://blog.csdn.net/hjingfeng/article/details/136296222</guid><author>hjingfeng</author><pubDate>Mon, 26 Feb 2024 12:34:39 +0800</pubDate><description><![CDATA[简单来说，向量数据库是一种专门设计来存储和处理向量形式数据的数据库系统。向量在很多不同的领域都有应用，例如地理信息系统、机器学习、计算机图形学等。在这些领域中，向量数据是一种基本的数据类型，能够表示空间中的点、线、面等对象。向量代表了物品或实体的特征，可以是高维数据点，如一张图像、一段音频或一篇文本的数学表达。在向量数据库中，每个数据点都是一个有序的数值列表，我们可以通过这些数值来量化比较数据点之间的相似程度。在具体使用中，人们常常通过SQL或其它查询语言向向量数据库查询数据。]]></description><category></category></item><item><title><![CDATA[AI和Vision Pro不需要杀手级应用 [译]]]></title><link>https://blog.csdn.net/hjingfeng/article/details/136278689</link><guid>https://blog.csdn.net/hjingfeng/article/details/136278689</guid><author>hjingfeng</author><pubDate>Sun, 25 Feb 2024 08:25:30 +0800</pubDate><description><![CDATA[软件推动硬件采用的情况比你想象的要罕见，如果我们想要构建、投资并分析下一代计算范式的赢家，我们必须重新思考比杀手级应用更大的东西——我称之为杀手级效用理论！]]></description><category></category></item><item><title><![CDATA[AI探索实践4 - 让AI翻译马斯克推荐的视频的2388行英文字幕的折腾过程、问题和收获]]></title><link>https://blog.csdn.net/hjingfeng/article/details/136263860</link><guid>https://blog.csdn.net/hjingfeng/article/details/136263860</guid><author>hjingfeng</author><pubDate>Sat, 24 Feb 2024 08:26:27 +0800</pubDate><description><![CDATA[通过处理大数据量内容，发现国内大模型的一些本土化特点。文末的视频是最大亮点。]]></description><category></category></item><item><title><![CDATA[AI探索实践3 - 3秒钟生成海量内容指定格式的重点分析、结论]]></title><link>https://blog.csdn.net/hjingfeng/article/details/136242173</link><guid>https://blog.csdn.net/hjingfeng/article/details/136242173</guid><author>hjingfeng</author><pubDate>Thu, 22 Feb 2024 21:12:00 +0800</pubDate><description><![CDATA[AI文本摘要就是使用人工智能技术自动将长篇文章浓缩为几个关键句子或段落，帮助我们迅速理解文章的核心内容。想象一下，这项技术可以帮我们快速审阅大量文档，节约宝贵的时间，让我们有更多精力去做更有创意和战略意义的工作。]]></description><category></category></item></channel></rss>