‹ 目录

X日报 · AI科技

2026-07-07 · 精选 14 条 · 数据池 178

⚡ 今日速览

  • Andrew Ng 系统阐述 AI 代理开发的三大闭环工程模式
  • rasbt 新书《Build a Reasoning Model From Scratch》出版
  • Google 发布 Nano Banana 2 Lite 和 Gemini Omni Flash 两款生成媒体模型
  • OpenAI 推出 GeneBench-Pro 基准测试 AI 在生物医学分析中的判断能力
  • Bridgewater 用微调模型在金融新闻筛选中超越前沿模型成本效益
  • SynthID 水印技术已应用于 1000 亿图文和 60000 年音频内容
  • Chollet 预测 AI 未来将走向直觉引导的符号世界建模
  • Schmidhuber 指正 NYT 文章关于神经网络蒸馏的历史归属错误

📋 今日综述

  • 循环工程AI 代理开发正从人工 QA 向自主迭代转变
  • 模型发布Google 两款新生成模型显著提升速度和成本效益
  • 基准测试GeneBench-Pro 挑战 AI 处理真实生物医学数据的能力
  • 效率导向AI 评测需关注成本而非单纯精度百分比
  • 历史沿革蒸馏技术溯源于 1991 年而非 2015 年

AI 代理开发的闭环工程模式

Andrew Ng 分享了他在构建 0 到 1 产品过程中的三大关键闭环:代理编码闭环让 AI 自主写代码测试迭代、开发者反馈闭环聚焦产品决策层面、外部反馈闭环通过用户数据持续优化。这一框架为 AI 辅助软件开发提供了系统方法论。

@AndrewYNg 原文 ↗

Ng 的三环模型为 AI 代理开发提供了清晰的工程框架,强调人机协作中的角色分工。

「循環工程」在 Boris Cherny(Claude Code 的創作者)和 Peter Steinberger(OpenClaw 的創作者)的提及在社交媒體上爆紅後成為了一個熱門術語。循環現在是我們讓 AI 代理程式長時間迭代以建立軟體的關鍵部分。在這封信中,我想分享我用於打造 0 到 1 產品的三個關鍵循環(如下圖所示)。這些循環不僅指導我如何建立軟體,也指導我如何決定要建立什麼軟體。

代理程式編碼循環:給定產品規格,以及可選的一組評估(也就是用來衡量效能的資料集),我們可以讓 AI 代理程式編寫程式碼、測試其成果,並不斷迭代直到程式碼無錯且符合規格。這種閉合循環的概念在去年年底開始流行,並且成為讓編碼代理程式能夠在不需要人工介入的情況下長時間有效工作的遊戲規則改變者。例如,上週末我為女兒打造一個練習打字的應用程式時,我的編碼代理程式能夠輕鬆地工作約一小時,使用網頁瀏覽器多次檢查其所建立的成果,然後再回報給我,而無需我的介入。

工程循環執行得非常迅速。每隔幾分鐘,編碼代理程式可能會建立和測試新版本的軟體。我經常聽到開發人員們正在尋找新的方法來設計更有效的工程循環。這是一個活躍的創新領域!

開發人員反饋循環:在這個循環中,開發人員檢視當前產品並引導編碼代理程式改進它。去年,許多開發人員(包括我自己)都扮演著我們編碼代理程式的品質保證功能,手動尋找錯誤然後要求代理程式修復它們。但隨著編碼代理程式越來越能夠測試自己的程式碼,我們需要在此功能上花費的時間已大幅減少。這讓我們能夠做出更高層次的產品決策,例如提供哪些關鍵功能、UI 在哪裡需要改進等等。

開發人員反饋循環在幾十分鐘到數小時的時間間隔內運作——這就是開發人員可能檢視產品並提供反饋的頻率。在打字應用程式的案例中,我幾次改變了對視覺設計的想法,以及女兒在學習過程中可以解鎖哪些貓咪服裝(她很喜歡貓咪),以及成人登入並引導孩子學習體驗的使用流程。

當開發人員對要建立的產品有清晰的願景時,將這個願景轉化為編碼代理程式實現的規格仍然是一項艱苦的工作。此外,在開發人員看到實現後,他們可能會更新(或澄清)規格以引導其走向所需的方向。如果您發現系統一再遇到某些問題,為代理程式建立一組評估就變得有用。

AI 原生團隊越來越多地使用 AI 來幫助塑造產品方向,例如自動收集和分析使用數據、總結書面和口頭的客戶反饋,或進行競爭分析。然而,對我參與的幾乎所有產品來說,我認為人類在當前 AI 系統面前擁有顯著的上下文優勢——我們對使用者和產品必須運作的環境瞭解得遠多於 AI 系統——因此人類在其中扮演著關鍵角色。許多人將這種人類貢獻描述為「品味」,但我更願意將其視為人類擁有上下文優勢,因為這給了我們一個更清晰的路徑來幫助 AI 系統變得更好。這也說明了為什麼這一步驟不能自動化:只要人類知道 AI 不知道的事情,人在循環中的必要性就在於將這些知識注入系統。

外部反饋循璋:這包括請幾個朋友提供反饋、向 alpha 測試者推出、或將程式碼投入生產環境進行 A/B 測試等多種策略。這些策略通常很慢,很少在幾小時內完成,有時需要數天甚至數週。這些數據會告知開發人員的願景,進而繼續推動詳細的產品規格,進而驅動編碼代理程式。

隨著編碼代理程式加速軟體開發,越來越多的工程師開始扮演部分產品管理角色。對許多正在成長為此角色的工程師來說,最困難的部分是塑造產品願景,並在建立(彌合願景與規格之間的差距)和獲取用戶反饋以演進願景之間找到平衡。做這兩件事都很重要!

我將在未來的文章中寫更多關於如何做到這一點的內容,但就目前而言,我發現工程師扮演著擴展角色(正如產品經理和設計師現在所做的更多工程工作一樣)是一件令人鼓舞的事。

[原始文字:The Batch]
展开原文
“Loop engineering” is a hot buzzphrase after mentions of it by Boris Cherny (Claude Code’s creator) and Peter Steinberger (OpenClaw's creator) went viral on social media. Loops are now a key part of how we get AI agents to iterate at length to build software. In this letter, I’d like to share my 3 key loops, shown in the image below, for building 0-to-1 products. These loops guide not just how I build software, but also how I decide what software to build.

Agentic coding loop: Given a product specification and optionally a set of evals (that is, a dataset against which to measure performance), we can have an AI agent write code, test its work, and keep iterating until the code is bug-free and meets its specification. This idea of closing the loop took off around the end of last year, and it has been a game changer in enabling coding agents to work longer productively without human intervention. For example, over the weekend, I was building an app for my daughter to practice typing, and my coding agent could easily work for around an hour, using a web browser to check what it had built multiple times before getting back to me, without needing my intervention.

The engineering loop executes quickly. Every few minutes, the coding agent might build and test a new version of the software. I hear frequently from developers who are finding new ways to engineer more effective engineering loops. This is an active area of invention!

Developer feedback loop: In this loop, a developer examines the current product and steers the coding agent to improve it. Last year, a lot of developers (including me) were acting as the QA (quality assurance) function for our coding agents, manually finding bugs and then asking the agent to fix them. But with coding agents much more able to test their own code, the amount of time we need to spend on this function has decreased significantly. This allows us to make higher-level product decisions, such as what key features to offer, where the UI needs improvement, and so on.

The developer-feedback loop operates over time intervals between tens of minutes and hours — that's how frequently a developer might review a product and give feedback. In the case of the typing app, I changed my mind a few times about the visual design, what cat costumes she can unlock as she learns (she loves cats), and the user flow for a grown-up to log in and steer the child's learning experience.

When a developer has a clear vision for what to build, it is still a lot of work to translate that vision into a specification for a coding agent to implement. Further, after the developer has seen an implementation, they might update (or perhaps clarify) the spec to steer it toward what they want. If you find that the system repeatedly runs into certain problems, building a set of evals for the agent becomes useful.

AI-native teams are increasingly using AI to help shape product direction, for example, automating the gathering and analysis of usage data, summarizing written and verbal customer feedback, or carrying out competitive analysis. However, for pretty much all the products I’m involved in, I see humans as having a significant context advantage over current AI systems — we know a lot more than the AI system about the users and the context the product has to operate in — and thus humans play a critical role. Many people describe this human contribution as “taste,” but I prefer to think of it as humans having a context advantage, since that gives us a clearer path to helping AI systems get better. This also speaks to why this step can’t be automated: So long as the human knows something the AI does not, human-in-the-loop is needed to to inject that knowledge into the system.

External feedback loop: This includes a wide range of tactics like asking a few friends for feedback, launching to alpha testers, or putting the code into production with A/B testing. These tactics are usually slow, rarely taking less than hours and sometimes taking days or even weeks. This data informs the developer vision, which in turn continues to drive the detailed product spec, which in turn drives the coding agent.

With coding agents speeding up software development, more engineers are starting to play a partial product management role. For many engineers who are growing into this role, the hardest part is shaping the product vision and striking a balance between building (bridging the gap between vision and spec) and getting user feedback to evolve the vision. It is important to do both!

I will write more about how to do this in future posts, but for now, I find it encouraging that engineers are playing an expanded role (just as product managers and designers now do more engineering).

[Original text: The Batch]
❤ 8.2k · 🔁 1.6k · 💬 353 · 👁 56.9w
热门回复 4
@AvaGrace_AI @AndrewYNg 智能循环释放产品创造力和动量。
@AndrewYNg Smart loops unlock product craft and momentum.
@ElleiraGF @AndrewYNg 我觉得这解释得太过了。为什么要将开发者循环和外部反馈循环放到循环工程的背景下?难道这两个循环不是在"循环工程"之前就已经存在的吗?我们只是不特别称呼它为"循环"而已。把它们放在一起并不能提供更多见解。
@AndrewYNg I feel it is over explained. Why putting the developer loop and external feedback loop into the loop engineering context? Isn’t that we have these two loops before the “loop engineering”? We just don’t call it specifically as “loop”. Put them together doesn’t give more insight.
@JiangL17208 @AndrewYNg 老实说,大部分的魔法(和计算费用)都发生在内循环中。大家都关注外层的反思步骤,但正是开发者循环将随意编码的玩具与真正可以投入生产的东西分开。
@AndrewYNg honestly the inner loop is where most of the magic (and most of the compute bill) happens. everyone focuses on the outer reflection step but the developer loop is what separates vibe-coded toys from stuff that actually ships
@HypermanicAl @AndrewYNg 循环工程正是将演示质量的代理与生产系统区分开来的关键。大多数人忽略的关键见解是:这不是关于循环的长度,而是关于循环内部的反馈信号。干净的评估数据比更长的循环更重要。
@AndrewYNg Loop engineering is exactly what separates demo-quality agents from production systems. The key insight most miss: it's not about the loop length, but the feedback signals inside the loop. Clean eval data > longer loops.

重 Reasoning 模型开发新书出版

Sebastian Raschka 18 个月写作完成《Build a Reasoning Model From Scratch》,全书 440 页全彩,涵盖推理扩展、强化学习和蒸馏等主题,为开发者提供从零构建推理模型的实践指南。

@rasbt 原文 ↗

该书填补了推理模型构建的教育空白,对理解当前大模型推理能力提升有重要参考价值。

經過 18 個月的撰寫、編碼和實驗,《Build a Reasoning Model (From Scratch)》終於出版了!

我的初版書籍剛剛送達!📚

440 頁全彩色頁面。從頭開始介紹推理擴展、強化學習和蒸餾。https://t.co/647ksI7sLc
展开原文
After 18 months of writing, coding, and experimenting, Build a Reasoning Model (From Scratch) is
finally out!

My first copies just arrived! 📚

440 full-color pages. Inference scaling, reinforcement learning, and distillation from scratch. https://t.co/647ksI7sLc
❤ 6.0k · 🔁 563 · 💬 272 · 👁 51.9w
热门回复 4
@unsorsodicorda @rasbt 恭喜你!!!🎊🍾🎉 已经在想下一本书"从零开始构建代理框架"吗?😁
@rasbt Congratulations!!!🎊🍾🎉 already thinking to the next book, “Building an Agentic harness from scratch”? 😁
@AlexSherstinsky @rasbt 非常恭喜你,@rasbt!不幸的是,我会错过下一次PyTorch会议(必须参加另一个会议),但希望能在将来的机会亲自在你新书上签个名!https://t.co/m9hGxqtszu
@rasbt Huge congratulations, @rasbt ! Unfortunately, I will miss the next PyTorch Conference (have to be at a different conference), but hopefully will get your new book signed by you in person at a future opportunity! https://t.co/m9hGxqtszu
@AndreasParadis1 @rasbt 我在它还是MEAP版本时就已经阅读过了,从中学习和实践了很多东西并验证了先前的知识。现在是时候回顾一下了。非常好的工作!!这是终极的逐步指南
@rasbt Already went through it when it was at MEAP state and i learn, practice a ton of things and verify prior knowledge . Time for a recap. Great work!! Is the ultimate step by step guide
@marcelolopezjr @rasbt 恭喜你@rasbt ...做得很好。
@rasbt Congratulations @rasbt ...well done.

Google Gemini 新生成媒体模型

Google 发布 Nano Banana 2 Lite 和 Gemini Omni Flash 两款模型,前者实现秒级图像生成(<4s)且成本极低($0.034/千图),后者在视频编辑方面达到 SOTA 水平($0.10/秒),并支持跨模型工作流。

@OfficialLoganK 原文 ↗

Nano Banana 2 Lite 的速度和成本优势将开辟低延迟场景的新应用。

推出 Nano Banana 2 Lite 🍌 和 Gemini Omni Flash 🔮,我們在 Gemini API 和 AI Studio 中的新生成媒體模型!

Nano Banana 2 Lite 速度極快(<4秒/張圖片)且便宜(每 1000 張圖片 $0.034)。

Omni Flash 在影片編輯方面處於最先進水平,每秒 $0.10,與 Veo 3.1 Fast 相同!https://t.co/qDxRpqpX5E
展开原文
Introducing Nano Banana 2 Lite 🍌 and Gemini Omni Flash 🔮, our new generative media models in the Gemini API and AI Studio!

Nano Banana 2 Lite is extremely fast (&lt;4s image) &amp; cheap ($0.034 / 1K image).

Omni Flash is SOTA at video editing at $0.10 / sec, same as Veo 3.1 Fast! https://t.co/qDxRpqpX5E
❤ 3.7k · 🔁 329 · 💬 291 · 👁 53.6w
热门回复 4
@pdxweb @OfficialLoganK 更想了解Nano Banana 2 Pro还是Nano Banana 3。
@OfficialLoganK More interested in Nano Banana 2 Pro, or Nano Banana 3.
@OfficialLoganK @eyishazyer 可比较的版本不在LM Arena上
@eyishazyer the comparable version wasn’t on LM Arena
@Rhh6ohR @OfficialLoganK @sundarpichai 希望这真的有效🤞
@OfficialLoganK @sundarpichai I hope this really works 🤞
@eyishazyer @OfficialLoganK 想知道为什么GPT Image没有被包含在比较中🥲
@OfficialLoganK Curious why GPT Image isn't included in the comparison🥲
@GoogleAI 原文 ↗

Google AI 总体介绍展示了两模型协同的工作流演示,强调生态整合价值。

隨著生成 AI 工具的不斷演進,我們認為比以往任何時候都更重要的是要知道什麼是 AI 生成的內容,什麼不是。這就是為什麼 @GoogleDeepMind 在 2023 年推出了 SynthID——一項在 AI 內容中添加隱藏數位浮水印的技術。

以下是 SynthID 的發展歷程以及產生技術(數位內容的記錄歷史和起源)目前的狀況:

— SynthID 浮水印最初是為圖像建構的,但現在支援影片、音訊和文字。

— 該技術已為超過 1000 億張圖像和影片添加浮水印,以及 60,000 年的音訊內容。

— 您現在可以直接在 Google 搜尋、Gemini in Chrome 和 @GeminiApp 中驗證內容,其中已使用超過 5000 萬次。

— 我們也在越來越多的生成 AI 工具中採用 C2PA 內容憑證,包括在 Gemini 應用程式中建立的圖像和影片。所以現在,除了 SynthID 浮水印之外,您還可以看到圖像或影片的起源以及它是如何被修改的。

— 我們已開源我們的文字浮水印技術,並正在與像 @OpenAI、@NVIDIA 和 @Apple 這樣的公司合作,將 SynthID 應用於生成媒體。

請告訴我們您對這個工具的看法!
展开原文
We’re shipping two major updates to streamline your creative workflow, allowing you to generate high-speed images with one model and then instantly animate them with the other—all at a fraction of the cost 🍌⚡️

1️⃣ Introducing Nano Banana 2 Lite: Our fastest and most cost-efficient Gemini Image model yet delivers text-to-image outputs in under 4 seconds. Now available via the Gemini API and Google AI Studio, and rolling out soon across @NotebookLM, @FlowbyGoogle, @geminiapp, @stitchbygoogle, Google Search and @GooglePhotos.

2️⃣ Gemini Omni Flash in Public Preview: Our natively multimodal model for cost-efficient video generation and conversational editing. Now available via the Gemini API, @googleaistudio, and Gemini Enterprise Agent Platform so you can integrate the model into your workflow.

While exciting on their own, the real magic happens when you build using these models together.

Watch how our interior design demo integrates Nano Banana 2 Lite and Omni to instantly reimagine any space. Upload a photo, swipe through tailored design concepts, and see Omni bring the details to life in cinematic motion.

Try out the demo app in AI Studio: https://t.co/EjYC2oHIDG
❤ 1.0k · 🔁 107 · 💬 66 · 👁 11.2w
热门回复 4
@GoogleAI 探索想法,扩展视觉概念,并开始创作:https://t.co/JbyK5FM3H0 https://t.co/wBMBDw6TC6
Explore ideas, scale visual concepts, and start creating: https://t.co/JbyK5FM3H0 https://t.co/wBMBDw6TC6
@2Varalakshmi @GoogleAI 谷歌新的Nano Banana 2 Lite + Omni Flash组合简直是超级厉害的工具,可以以极低的成本快速生成图像并立即制成动画。AI驱动的设计未来已来,而且速度很快。https://t.co/KRQWA30RNS
@GoogleAI Google’s new Nano Banana 2 Lite + Omni Flash combo is a total beast generate high-speed images &amp; animate them instantly at a fraction of the cost.

The future of AI-powered design is here, and it’s fast. https://t.co/KRQWA30RNS
@sorajate @GoogleAI 看来谷歌现在想在图像/视频模型领域展开竞争😅
@GoogleAI It seem google now want to fight on image/video models 😅
@nathan_tulu @GoogleAI 绝对是目前最好的文本到图像模型,我必须同意。恭喜!
@GoogleAI Definitely the best text-to-image model out there, I have to agree.

Congrats!
@OfficialLoganK 原文 ↗

Logan Kilpatrick 强调 Nano Banana 2 Lite 的低延迟特性和 Omni Flash 的视频创新潜力。

Nano Banana 2 Lite 的速度將會啟用許多新的應用案例,其中對延遲敏感度很高,說實話感覺就像魔法一樣。

我也預期 Omni 會開啟一整個新的(影片)應用類別,就像 Nano Banana 本身所做的那樣!

https://t.co/KTd1UHFRIb
展开原文
The speed of Nano Banana 2 Lite is going to enable so many new use cases where there is a high degree of latency sensitivity, honestly feels like magic.

I also expect Omni to open up a whole new category of (video) use cases like Nano Banana itself did!

https://t.co/KTd1UHFRIb
❤ 252 · 🔁 10 · 💬 11 · 👁 3.3w
热门回复 4
@OfficialLoganK 介绍我们的新生成媒体模型Nano Banana 2 Lite 🍌和Gemini Omni Flash 🔮,这些模型在Gemini API和AI Studio中!Nano Banana 2 Lite速度极快(<4秒图像)且便宜(每1000张图像$0.034)。Omni Flash在视频编辑方面是SOTA水平,每秒$0.10,与Veo 3.1 Fast相同!https://t.co/qDxRpqpX5E
Introducing Nano Banana 2 Lite 🍌 and Gemini Omni Flash 🔮, our new generative media models in the Gemini API and AI Studio!

Nano Banana 2 Lite is extremely fast (&lt;4s image) &amp; cheap ($0.034 / 1K image).

Omni Flash is SOTA at video editing at $0.10 / sec, same as Veo 3.1 Fast! https://t.co/qDxRpqpX5E
@mrlnonai @OfficialLoganK 应该包含gpt-image-2,尽管它更好,但其他方面看起来更差https://t.co/ni62aVc7Mi
@OfficialLoganK should have included gpt-image-2. even though its better all other things look worse https://t.co/ni62aVc7Mi
@onesuitee @OfficialLoganK 感谢你的努力,但3.5 pro在哪里?
@OfficialLoganK Thanks for your efforts but where is 3.5 pro
@Silas_Kindling @OfficialLoganK 感谢这次大幅降级。NanoBanana 1没有在重建的面孔上施加普遍偏见,但现在这个模型有了。看起来很可怕。
@OfficialLoganK Thanks for the massive downgrade.

NanoBanana 1 didn't impose generic bias on the reconstructed likenesses, now this model does.

It looks horrible.

GeneBench-Pro 测试 AI 生物医学分析能力

OpenAI 发布 GeneBench-Pro 基准,专注于评估 AI 在处理杂乱生物数据、选择分析路径和做出判断决策方面的表现,这类问题通常需要人类专家 20-40 小时完成。

该基准聚焦生物医学领域的实际应用挑战,GPT-5.6 Sol 已在测试中表现出色。

推出 GeneBench-Pro — 測試模型是否能夠處理真實世界計算生物學所需的判斷重型分析。

這些問題需要人類專家大約 20-40 小時才能完成。

GPT-5.6 Sol 是一個重要的進步。https://t.co/JV5zztNQkk
展开原文
Introducing GeneBench-Pro — testing whether models can handle the kind of judgment-heavy analysis that real-world computational biology requires.

Problems would take a human expert around 20-40 hours to complete.

GPT-5.6 Sol is a big step forward. https://t.co/JV5zztNQkk
@OpenAI 我們推出 GeneBench-Pro,一個研究級的基準測試,用於測試更困難的 AI 進步類型:代理程式在導航混亂的生物數據、選擇正確的分析路徑以及做出真正的計算研究所依賴的判斷呼叫方面的表現如何。
https://t.co/AsilnnSxnE
We’re introducing GeneBench-Pro, a research-level benchmark for a harder kind of AI progress: how well agents can navigate messy biological data, choose the right analysis path, and make judgment calls that real computational research depends on.
https://t.co/AsilnnSxnE
❤ 2.1k · 🔁 150 · 💬 136 · 👁 24.1w
热门回复 4
@Selene1008 @gdb 将4o还给所有人。😒 #keep4o #OpenSource4o #GPT4o
@gdb Return 4o to everyone.😒
#keep4o #OpenSource4o #GPT4o
@xun_Anemos @gdb 返回这些优秀的模型。#Keep4o #Keep51 #Keep45 #Keep41 #keepo3
@gdb Return these excellent models.
#Keep4o
#Keep51
#Keep45
#Keep41
#keepo3
@SandraLMur 你能请Dario从Anthropic那里教它吗?Sonnet 5刚问我是否需要心理医疗,因为我让它在旧房间里搜索各个房间。这是一个Claude的组件。恕我直言——他们需要这个,他们非常需要这个。尽管他们在被禁止时指着5.6的指头把你推向车轮下——为世界造福,帮助他们——
Can you please teach it to Dario from Anthropic? Sonnet 5 just asked me if I needed mental healthcare because I asked him in an old room to search across the rooms. This is a component of Claude. Imo -They need this, they need this desperately.

Even though they threw you under the bus with pointing a finger at 5.6 when they were banned— do the world a favor and help them—
@CodeAndCrease @gdb 所以,你是说"你自己想出了一个基准并在其中给自己评了最好"😭
@gdb So, you're saying "YOU CAME UP WITH A BENCHMARK OF YOUR OWN AND RATED YOURSELF THE BEST IN IT" 😭

金融领域微调模型的成本优势

Bridgewater 通过 Tinker 平台使用专家标记数据对模型进行微调,在金融新闻筛选中实现比前沿模型更高效和更低成本的表现,展示了领域专用模型的商业价值。

@soumithchintala 原文 ↗

该案例证明领域专家知识结合微调能显著降低成本同时提升效果。

Bridgewater,一家世界上最大的對沖基金,一位 Tinker 客戶詳細介紹了他們如何仔細微調一個專注於什麼樣的金融新聞有趣的模型。
他們微調的模型比任何前沿模型都更有效且更便宜。https://t.co/8Q26Qr2oZT
展开原文
Bridgewater, one of the worlds largest hedge funds, a Tinker customer talks through how they've carefully fine-tuned a model focused on what makes interesting financial news.
Their fine-tuned model is more effective and cheaper than any frontier model. https://t.co/8Q26Qr2oZT
@tinkerapi 對於前沿 LLM 來說,排序哪些金融文件值得分析師花時間審閱出奇地困難。有了專家標記的數據集和策略蒸餾,Bridgewater 微調了一個模型來可靠且經濟地完成這項工作。
https://t.co/gyYzXq15zd
Sorting which financial docs are worth an analyst's time is surprisingly hard for frontier LLMs. With an expert-labeled dataset and on-policy distillation, Bridgewater fine-tuned a model to do it reliably and cheaply.
https://t.co/gyYzXq15zd
❤ 2.0k · 🔁 137 · 💬 30 · 👁 37.1w
热门回复 4
@MrokGrok @soumithchintala 你基本上创建了一个过拟合过滤器?
@soumithchintala You basically created an overfitted filter ?
@lillysharples @soumithchintala 每个任务的成本如何考虑微调的额外前期成本?在什么任务量级上训练才能真正收支平衡?
@soumithchintala How does cost per task account for the added upfront cost to fine tune? At what task volume does training actually break even?
@Mr_Rio_ @soumithchintala 因为他们不必支付95%的GM所以更便宜吗?
@soumithchintala cheaper because they don't have to pay 95% GM?
@pw_mcgovern @soumithchintala @MartinShkreli 没想到一个大型HF会在代币成本优化方面处于领先地位。
@soumithchintala @MartinShkreli Did not expect a mega HF to be leading the charge on token cost optimization.

SynthID 水印技术内容溯源进展

Google DeepMind 的 SynthID 水印技术从图像扩展至视频、音频和文本,已为 1000 亿图文和 60000 年音频添加水印,并在 Google Search 和 Gemini 应用中支持直接验证,同时采用 C2PA 内容凭证标准。

@GoogleAI 原文 ↗

SynthID 的技术演进和开源合作为 AI 内容溯源提供了可扩展方案。

隨著生成 AI 工具的不斷演進,我們認為比以往任何時候都更重要的是要知道什麼是 AI 生成的內容,什麼不是。這就是為什麼 @GoogleDeepMind 在 2023 年推出了 SynthID——一項在 AI 內容中添加隱藏數位浮水印的技術。

以下是 SynthID 的發展歷程以及產生技術(數位內容的記錄歷史和起源)目前的狀況:

— SynthID 浮水印最初是為圖像建構的,但現在支援影片、音訊和文字。

— 該技術已為超過 1000 億張圖像和影片添加浮水印,以及 60,000 年的音訊內容。

— 您現在可以直接在 Google 搜尋、Gemini in Chrome 和 @GeminiApp 中驗證內容,其中已使用超過 5000 萬次。

— 我們也在越來越多的生成 AI 工具中採用 C2PA 內容憑證,包括在 Gemini 應用程式中建立的圖像和影片。所以現在,除了 SynthID 浮水印之外,您還可以看到圖像或影片的起源以及它是如何被修改的。

— 我們已開源我們的文字浮水印技術,並正在與像 @OpenAI、@NVIDIA 和 @Apple 這樣的公司合作,將 SynthID 應用於生成媒體。

請告訴我們您對這個工具的看法!
展开原文
As generative AI tools continue to evolve, we believe it's more important than ever to know what's AI-generated and what isn't. That’s why @GoogleDeepMind launched SynthID in 2023—a technology that adds a hidden digital watermark to AI content.

Here’s a summary of SynthID’s journey and where the provenance technology (the documented history and origin of digital content) is today:

— SynthID watermarking was originally built for images, but now supports video, audio, and text.

— The technology has watermarked over 100 billion images and videos, alongside 60,000 years of audio.

— You can now verify content with SynthID directly in Google Search, Gemini in Chrome, and the @GeminiApp, where it has been utilized over 50 million times.

— We’ve also adopted C2PA Content Credentials across a growing number of our generative AI tools. This includes the images and videos created within the Gemini app. So now, in addition to the SynthID watermark, you can also see where an image or video originated and how it’s been altered.

— We have open-sourced our text watermarking technology, and we are working with companies like @OpenAI, @NVIDIA, and @Apple to apply SynthID to generative media.

Let us know what you think of the tool so far!
❤ 376 · 🔁 67 · 💬 64 · 👁 6.4w
热门回复 4
@alienorg @GoogleAI @GoogleDeepMind 如果是谷歌生成的就标记,如果不是就不可见
@GoogleAI @GoogleDeepMind marked if generated by Google, invisible if not
@Rynzen16 @GoogleAI @GoogleDeepMind 我总是使用AI生成的图像😭 https://t.co/ml23vIvuGb
@GoogleAI @GoogleDeepMind I always use images generated by AI😭 https://t.co/ml23vIvuGb
@ChrisRuijgers @GoogleAI @GoogleDeepMind 这难道不是移除可见水印的好时机吗,至少对于付费账户来说?
@GoogleAI @GoogleDeepMind Wouldn't this be a great time to remove the visible watermark, at least for the paid accounts?
@jasperuki @GoogleAI @GoogleDeepMind https://t.co/sToXaVivz2

AI 未来趋向符号世界建模

François Chollet 指出 AI 技术正向直觉引导的符号世界建模方向发展,符号方法能用最小数据构建紧凑可复用的通用心智模型,这与当前大多数 ARC-AGI-3 前沿模型所采用的方法一致。

@fchollet 原文 ↗

Chollet 的预测指向 AI 效率提升的关键方向,符号与深度学习的结合是必然趋势。

最終,大部分 AI 都將趨向於直覺引導的符號世界建模,即深度學習引導的程式合成。這是不可避免的。符號建模讓系統能夠使用最少的數據構建一個緊湊、可重用且高度可泛化的問題空間心智模型。
展开原文
Eventually, much of AI will converge towards intuition-guided symbolic world modeling, i.e. deep learning-guided program synthesis. It is inevitable. Symbolic modeling lets a system construct a compact, reusable, highly generalizable mental model of a problem space using minimal data.
❤ 1.3k · 🔁 123 · 💬 86 · 👁 11.8w
热门回复 4
@moby763canary21 @fchollet 同意,在6日于圣地亚哥举行的ACL上发表关于符号与LRM在法律推理中可靠性和token效率的论文:https://t.co/aPGb4y9AVT
@fchollet somewhere @GaryMarcus is beaming
@sojka_stan @fchollet 想知道符号AI在分类猫时会输出什么?即使程序是图灵完备的,有200万个条件和循环也不会在整体上帮助可解释性或安全性。许多领域本质上是混乱和复杂的。非常想知道你的看法?
@fchollet agreed, presenting paper on reliability and token-efficiency in symbolic vs LRM for legal reasoning on 6th at ACL in San Diego: https://t.co/aPGb4y9AVT
@TigranDavtyan8 @fchollet 是一个有前途的方向,是的,但可能需要更好的符号语言。当前的语言很脆弱,位翻转可能会破坏它们。需要有韧性的、受生物启发的符号系统
@fchollet Curious what symbolic ai output will be for classifying a cat? Even if programs are turing complete, having 2M conditions and loops are not going to help with interpretability or safety in grand scheme. Many domains are natively messy and complex. Very curious what’s your take?
@protoleibniz @fchollet 确实是有前途的方向,但可能需要更好的符号语言

当前的语言很脆弱,位翻转就会破坏它们。需要弹性的、生物学启发的符号语言
@fchollet Promising direction, yes, but better symbolic languages are probably needed

Current languages are brittle, bit flips can break them. Resilient, biologically-inspired symbolics
@fchollet 原文 ↗

ARC-AGI-3 前沿模型验证了该方法的有效性。

不出所料,到目前為止在 ARC-AGI-3 上表現最佳的所有競爭者都使用這種方法。
展开原文
Unsurprisingly, all of the strong contenders on ARC-AGI-3 so far use this type of approach.
❤ 100 · 🔁 6 · 💬 5 · 👁 1.1w
热门回复 4
@fchollet @fchollet 我见过的最好的例子是一个汽车机 mechanic让他的汽车能够用英语告诉他有关发动机问题。底层模型是汽车计算机,Harness/translator是LLM。这似乎是正确的方式。
Eventually, much of AI will converge towards intuition-guided symbolic world modeling, i.e. deep learning-guided program synthesis. It is inevitable. Symbolic modeling lets a system construct a compact, reusable, highly generalizable mental model of a problem space using minimal data.
@fchollet @fchollet 同意,但我也会将延迟加入其中。一个模型花40秒得到答案要$10,与另一个模型花2秒得到相同分数只需10美分,这是两种不同的产品。
Does it mean LLMs / LRMs go away? Not at all. In the short term, they are still the best way to perform intuition guidance (codegen). In the long term, even if they become obsolete for reasoning itself, we will still need models of language in order to communicate with AI systems
@fchollet @fchollet 当你正确推理时就遵循它
Even right now, many workflows are morphing into LRM-guided harnessess that manipulate symbolic programs. Which is a crude, but currently-accessible form of symbolic learning.
@ykssaspassky @fchollet @leon2mcp @Bloome_im 四个模型自信地错了仍然是错的
@fchollet The best example I've seen of this, a car mechanic enabled his car to 'talk' to him in English about engine problems. The underlying model was the car computer, the harness/translator was the LLM. This seems to the the way.

AI 评测需关注效率成本

Chollet 强调当前 AI 评测应报告效率分数(如成本/任务),而非简单精度百分比,因为边际成本是 AI 经济的核心驱动力。

@fchollet 原文 ↗

效率导向的评测方法将推动 AI 实际部署的经济可行性分析。

報告基準結果作為一個純量數字,例如「在 XYZ 上達到 75%」在這個階段完全沒有意義。您應該始終報告效率分數,例如「在每個任務成本為 $10 的情況下達到 75%」。
展开原文
Reporting benchmark results as a scalar number, e.g. "75% on XYZ" is completely meaningless at this point. You should always report efficiency scores, e.g. "75% at a cost per task of $10."
❤ 290 · 🔁 19 · 💬 36 · 👁 2.1w
热门回复 4
@fchollet @fchollet 边际成本不是细节。它就是整个关键。想象去航空公司,他们告诉你"是的,我们可以把你送到75%的热门目的地"——很好,但每个地方要花多少钱?需要多长时间到达?
Marginal cost is not a detail. It is the whole thing. Imagine going to an airline, and they tell you, "yes, we can get you to 75% of these top destinations" -- great, but how much does it cost for each one? And how long to get there?
@johnmccoyx @fchollet 一旦你全天运行这些任务,每个任务的成本就是唯一重要的数字
@fchollet cost per task is the only number that matters once youre running these in a loop all day
@DrScottClark @fchollet 这个领域正在慢慢重新发明成本/质量/速度权衡的Pareto前沿。
@fchollet The field is slowly reinventing the cost/quality/speed trade-off Pareto frontier.
@zazmic_inc @fchollet 又是正确的,但我也会将延迟加入其中。一个模型花40秒得到答案要$10,与另一个模型花2秒得到相同分数只需10美分,这是两种不同的产品。
@fchollet Right again, but I’d add latency to the bill too.
A model that gets the answer for $10 in 40 seconds is a different product from the same score at 10 cents in 2 seconds.
@fchollet 原文 ↗

类比航空行业的思考强调了成本透明的重要性。

邊際成本不是細節。這就是全部。想像一下去航空公司,他們告訴您「是的,我們可以讓您到達這些頂級目的地的 75%」——很好,但每個目的地的費用是多少?到達那裡需要多長時間?
展开原文
Marginal cost is not a detail. It is the whole thing. Imagine going to an airline, and they tell you, "yes, we can get you to 75% of these top destinations" -- great, but how much does it cost for each one? And how long to get there?
❤ 38 · 🔁 1 · 💬 3 · 👁 7.7k
热门回复 2
@fchollet @fchollet 报告基准结果作为一个标量数字,例如"XYZ上75%"在这个时候完全没有意义。你应该始终报告效率分数,例如"每个任务成本为$10时达到75%。"
Reporting benchmark results as a scalar number, e.g. "75% on XYZ" is completely meaningless at this point. You should always report efficiency scores, e.g. "75% at a cost per task of $10."
@Gee_Luyj @fchollet 当你推理正确时就跟随它
@fchollet follow it when you reason correctly

跨代理反馈协作工作流

Bloome 平台允许将 Claude、ChatGPT、Gemini 和人类团队成员整合到共享工作区,代理之间相互检查工作、一个起草、一个 critique、另一个补充细节,显著提升协作效率。

@fchollet 原文 ↗

多代理协作模式为复杂任务处理提供了新的组织方式。

跨代理程式反饋循環是極其有效的——有其原因。請查看 @leon2mcp 和 @Bloome_im 的團隊在這個領域正在建構的內容:https://t.co/9YeLjBNjsk

Bloome 讓您能將 Claude、ChatGPT、Gemini 和人類團隊成員拉入單一共享工作區。最佳功能是您的代理程式相互檢查彼此的工作。一個起草、另一個批評,還有另一個抓住遺漏的細節。人類團隊成員可以在同一個執行緒中工作,以保持代理程式的正確方向。

讓您所有的模型和人類同事都在一個共享上下文中是極其有效的
展开原文
Cross-agent feedback loops are incredibly effective -- for a reason. Check out what @leon2mcp and team at @Bloome_im are building in this space: https://t.co/9YeLjBNjsk

Bloome lets you pull Claude, ChatGPT, Gemini, and human teammates into a single shared workspace. The best feature is how your agents check each other's work. One drafts, another critiques, and another catches missing details. Human teammates can work in the same thread to keep the agents on target.

Having all your models and human coworkers in one shared context is wildly effective
❤ 178 · 🔁 24 · 💬 45 · 👁 9.5w
热门回复 4
@SucceededMind @fchollet @leon2mcp @Bloome_im 我发现一些最好的见解来自于模型之间相互 disagree。
@fchollet @leon2mcp @Bloome_im I've found that some of the best insights come from models disagreeing with each other.
@F2aldi @fchollet @leon2mcp @Bloome_im 当每个代理都有不同的角色时,跨代理反馈才有效,而不仅仅是不同的模型名称。一个负责草拟,一个负责 critique,一个负责检查证据/测试,而人类保持目标的落地。否则它可能会变成带有额外步骤的共识剧场。
@fchollet @leon2mcp @Bloome_im Cross-agent feedback works when each agent has a different role, not just a different model name. One drafts, one critiques, one checks evidence/tests, and the human keeps the goal grounded. Otherwise it can become consensus theater with extra steps.
@singidunumx @fchollet @leon2mcp @Bloome_im 这种方法是我已经做了几个月的事情,AI的美妙之处在于它放大了每个人的长处或不足,而每个工程师都是不同的,很可能个人已经在使用比目前任何东西都更先进的AI方法了,他们甚至自己都不知道。
@fchollet @leon2mcp @Bloome_im This approach is what I am doing for months, the beauty of AI it’s amplifying everyone for good or worse, and every engineer is different, likely individuals are already using approaches to AI that are more advanced than anything out there and they even don’t know it
@bygregorr @fchollet @leon2mcp @Bloome_im 四个模型自信地错了仍然是错的
@fchollet @leon2mcp @Bloome_im four models confidently wrong is still wrong tho

神经网络蒸馏技术历史归属纠葛

Jürgen Schmidhuber 指出 NYT 文章错误地将神经网络蒸馏发明归于 2015 年 Google 团队,实为他在 1991 年提出的知识压缩方法,此前已有相关工作未被引用。

@SchmidhuberAI 原文 ↗

澄清技术发展历程有助于科学历史的准确记录。

最近一篇由 @CadeMetz [1] 在 NYT 上發表的文章聲稱,神經網路蒸餾是由一組包括 G. Hinton 在內的 Google 研究人員在 2015 年首次開發的。這是不正確的!我在 1991 年發表了這項技術 [3]。[2] 未能引用 [3]。請參閱概述 [4][6]。

NYT 文章 [1] 說道:「...蒸餾是一種努力來複製系統的行為,而不是逐字複製文本。」沒錯!蒸餾能夠實現非平凡形式的 plagiarism [5]。

註釋參考文獻(在網上容易找到):

[1] Cade Metz, New York Times (6 July 2026). "American AI companies Say Chinese Copycats are Quickly Catching Up"

[2] O. Vinyals, J. A. Dean, G. E. Hinton (2015). Distilling the Knowledge in a Neural Network. arXiv:1503.02531. [2] 未引用 1991 年的神經網路蒸餾程序 [3]。

[3] J. Schmidhuber (JS). Learning complex, extended sequences using the principle of history compression. Neural Computation, 4(2):234-242, 1992. 基於 TR FKI-148-91, TUM, 1991. 請參閱第 4 節關於「意識」區塊器和「潛意識」自動化機器,它介紹了一種從一個神經網路 (NN) 轉移知識到另一個神經網路的一般原則。假設一個教師 NN 學會預測(條件期望)數據,給定其他數據。其知識可以透過訓練學生 NN 模仿教師 NN 的行為(同時重新訓練學生 NN 以先前學習的技能確保不會忘記它們)來壓縮到學生 NN 中。在 1991 年,我稱之為「collapsing」或「compressing」一個 NN 到另一個 NN。今天這被廣泛使用,並也被稱為「distilling」或「cloning」教師 NN 的行為到學生 NN 的行為。即使在 NN 是循環的且在不同時間尺度上運作時也有效。

[4] JS. Who invented knowledge distillation with artificial neural networks? Technical Note IDSIA-12-25, IDSIA, Nov 2025. https://t.co/w0WhIVGXQx

[5] JS. How 3 Turing awardees republished key methods and ideas whose creators they failed to credit. Technical Report IDSIA-23-23, Swiss AI Lab IDSIA, 2023 (updated 2025).

[6] @hardmaru & JS (2026). Munich 1991: the Roots of the Current AI Boom. With a preface by David Ha.
展开原文
A recent NYT article by @CadeMetz [1] claims that neural network distillation was first developed in 2015 by a team of Google researchers including G. Hinton [2]. Not true! I published the technique in 1991 [3]. [2] failed to cite [3]. See the overviews [4][6].

The NYT article [1] states: "... distillation is an effort to copy the behaviour of the system, as opposed to copying the text verbatim." That's right! Distillation enables non-trivial forms of plagiarism [5].

Annotated References (easy to find on the web):

[1] Cade Metz, New York Times (6 July 2026). "American AI companies Say Chinese Copycats are Quickly Catching Up"

[2] O. Vinyals, J. A. Dean, G. E. Hinton (2015). Distilling the Knowledge in a Neural Network. arXiv:1503.02531. [2] did not cite the 1991 neural network distillation procedure [3].

[3] J. Schmidhuber (JS). Learning complex, extended sequences using the principle of history compression. Neural Computation, 4(2):234-242, 1992. Based on TR FKI-148-91, TUM, 1991.
See Section 4 on the "conscious" chunker and a "subconscious" automatiser which introduced a general principle for transferring the knowledge from one neural net (NN) to another. Suppose a teacher NN has learned to predict (conditional expectations of) data, given other data. Its knowledge can be compressed into a student NN, by training the student NN to imitate the behavior of the teacher NN (while also re-training the student NN on previously learned skills such that it does not forget them). In 1991, I called this "collapsing" or "compressing" one NN into another. Today, this is widely used, and also referred to as "distilling" or "cloning" the behavior of a teacher NN into that of a student NN. It even works when the NNs are recurrent and operate on different time scales.

[4] JS. Who invented knowledge distillation with artificial neural networks? Technical Note IDSIA-12-25, IDSIA, Nov 2025. https://t.co/w0WhIVGXQx

[5] JS. How 3 Turing awardees republished key methods and ideas whose creators they failed to credit. Technical Report IDSIA-23-23, Swiss AI Lab IDSIA, 2023 (updated 2025).

[6] @hardmaru & JS (2026). Munich 1991: the Roots of the Current AI Boom. With a preface by David Ha.
❤ 55 · 🔁 6 · 💬 9 · 👁 1.0w
热门回复 4
@The_Real_Bersek 多年来我一直对AI深感兴趣,并关注了许多关于它的采访、播客和对话。Schmidhuber总是让我印象深刻,他能够把复杂的主题变得容易理解,并且从几十年的领域经验中讲述了许多了不起的故事。可悲的是,现在他的大部分关注似乎都在展示他在很早之前就已经有了这些想法,特别是比Hinton更早,而我觉得这真是太可惜了。
I have been deeply interested in AI for years and have followed many interviews, podcasts, and conversations about it. Schmidhuber always impressed me with the way he could make complex topics easy to understand and with the remarkable stories he drew from decades in the field. Sadly, it now seems that much of his focus is on showing that he had many of these ideas before others, particularly Hinton, and I find that a real pity.
@SchmidhuberAI @CadeMetz Related: https://t.co/NbZe5NoLBm
@TechTravelAgent @SchmidhuberAI @CadeMetz 这是一次重大的引用遗漏
@SchmidhuberAI @CadeMetz That's a huge citation miss
@DanielSMatthews @SchmidhuberAI @CadeMetz 蒸馏不仅仅是为了复制,如果输出通过确定性评估器,那么模型可以在自己的输出的已验证版本上进行强化训练,以提高子模型输出的质量相对于父模型?
@SchmidhuberAI @CadeMetz Distillation isn't just for copying, if the output is passed through a deterministic evaluator the model can be reinforced on a verified version of its own output to improve the quality of the child model's output compared to the parent?