觉
AI觉醒星球
Awakening is here
Knowledge File / AI小生意项目库
2026-09-19 2 浏览 免费阅读

Google DeepMind 的 Dream-RSI:让 AI 智能体通过“做梦”回放过去的尝试来改进

谷歌与 DeepMind 提出 Dream-RSI:把智能体搜索过程中记录下来的尝试与结果当作“梦境”,在已有搜索树上离线回放不同策略,从而在不重复昂贵计算的前提下改进探索决策。方法只改搜索策略、不动底层模型,并在 Gemini 3.1 Pro 与 Gemini 3.7 Flash 上跨三类共八项任务做了对比测试。

SOURCE / AI小生意项目库 MIN / 9 ACCESS / 免费阅读 POST / 2026-09-19 19:08:06

原贴

查看原文
作者:Jonathan Kemper 来源站点:the-decoder.com 原贴时间:

原文

Researchers at Google and Deepmind have developed a method that helps AI agents tackle difficult search tasks more efficiently. It uses past search runs to test new strategies without repeating costly computations. Self-improving AI agents are supposed to one day discover new algorithms, solutions to math problems, or faster code on their own. They follow the same basic process of proposing a solution, evaluating the result, learning from it, and trying again. Over thousands of attempts, they gradually work toward a good result. For complex tasks, the search space can grow enormous. The agent must constantly decide which promising approaches to pursue, which to try in parallel, and which to abandon. This process, called exploration, can determine whether the search succeeds or wastes compute chasing the wrong ideas. A research team from Google and Deepmind has introduced " Dream-RSI " to improve those decisions. The method changes how the agent searches, not the underlying AI model. Existing approaches generally handle exploration in two ways. A fixed search strategy can't learn from experience, so the agent may repeatedly hit the same dead ends. Adapting the strategy during a search avoids that rigidity but comes at a cost. It takes many attempts to find out whether a strategy works, and testing countless alternatives would mean repeating long, expensive runs. The researchers propose reusing data from a completed search to test alternative strategies within the space the agent has already explored. The agent records its attempts and their results as it searches, providing the data needed to replay those decisions later. The researchers compare this to finding your way through an unfamiliar area. On your first visit, you hit dead ends, double back, and struggle to find a route. Once you have a mental map, though, you can plan another route without visiting every spot again. Dream-RSI applies that principle to recorded search histories. Rather than testing a new strategy in a live run, the agent runs it against stored results. This lets it check what would have happened if it had pursued other approaches first or abandoned some earlier. The system doesn't invent entirely new solutions during replay; it tests different decisions within the recorded search tree. Because those results already exist, the agent doesn't need to generate or evaluate solutions again, avoiding the expensive computations a live run would require. That makes testing new search strategies much cheaper. The researchers call this process "dreaming." The agent plays through thousands of variations and selects the best one before putting it to work in a live search. The process repeats in a loop. After each search, the agent uses the recorded results to test better strategies, then applies the improved version to its next live run. Throughout this cycle, only the search strategy changes; the model generating the solutions remains untouched. The researchers tested Dream-RSI with Gemini 3.1 Pro and Gemini 3.7 Flash on eight tasks across three areas. Each comparison used a baseline with the same starting conditions but a fixed search strategy. One task asked the system to write the fastest possible program for a statistical calculation commonly used in genomics and finance. Dream-RSI's program ran faster than the established libraries sklearn and glmnet on all six test datasets.

中文翻译

谷歌和 DeepMind 的研究人员开发出一种方法,帮助 AI 智能体更高效地处理困难的搜索任务。它利用过去的搜索记录来测试新策略,而无需重复昂贵的计算。自我改进的 AI 智能体被认为有朝一日能够自行发现新算法、数学问题的解法或更快的代码。它们遵循同样的基本流程:提出一个方案、评估结果、从中学习、然后再次尝试。经过成千上万次尝试,它们逐步逼近一个好的结果。对于复杂任务,搜索空间可能变得极其庞大。智能体必须不断决定哪些有前景的路径值得追求、哪些要并行尝试、哪些应当放弃。这个过程被称为探索,它可能决定搜索是成功,还是白白浪费算力去追逐错误的想法。

核心信息

谷歌与 DeepMind 提出 Dream-RSI:把智能体搜索过程中记录下来的尝试与结果当作“梦境”,在已有搜索树上离线回放不同策略,从而在不重复昂贵计算的前提下改进探索决策。方法只改搜索策略、不动底层模型,并在 Gemini 3.1 Pro 与 Gemini 3.7 Flash 上跨三类共八项任务做了对比测试。

  • 谷歌与 DeepMind 提出 Dream-RSI:把智能体搜索过程中记录下来的尝试与结果当作“梦境”,在已有搜索树上离线回放不同策略,从而在不重复昂贵计算的前提下改进探索决策。方法只改搜索策略、不动底层模型,并在 Gemini 3.1 Pro 与 Gemini 3.7 Flash 上跨三类共八项任务做了对比测试。
  • 原贴提到:Researchers at Google and Deepmind have developed a method that helps AI
  • 来源:the-decoder.com

详细解读

这是什么信号

Dream-RSI 是一条关于“自改进智能体”工程化路径的信号:把探索(exploration)从模型能力里拆出来,当成一个可以单独优化的策略层。具体做法是——智能体在搜索时记录下自己的尝试与对应结果,之后用这份历史记录做离线回放,测试“如果当初先走另一条路、或早点放弃某个分支,会怎样”。因为结果已经存在,回放不需要重新生成或评估解法,也就绕开了实时运行中最贵的那部分计算。研究者把这套过程称为“做梦”。整个循环里唯一变化的是搜索策略,负责产出解法的模型始终不变。

为什么重要

  • 算力结构变了。自改进循环的成本大头往往不是单次推理,而是成千上万次试错。把试错搬到已有记录上回放,等于把探索成本与实时推理成本解耦。
  • 策略层可以独立演进。模型不动、只改搜索策略,意味着这一层能叠加在任一模型迭代之上,形成第二条改进曲线,而不是被模型升级覆盖掉。
  • 探索本身就是成败变量。复杂任务的搜索空间会膨胀到智能体必须持续决定“追哪条、并行哪条、弃哪条”;固定策略学不到经验,边搜边改又太贵。回放给出的是一条中间路线。

对谁有价值

做智能体、自动代码优化、算法与科研自动化的团队最直接受益,因为这正是搜索空间大、单次评估贵的场景。算力预算有限、但又想提升智能体成功率的团队同样值得关注:它提供的不是更大的模型,而是更省的单位试错成本。对研究者而言,它把“探索策略”推成了一个可测量、可对比的实验对象。

可以怎么行动

  1. 先把日志做扎实。记录每一步的状态、候选方案、评分与最终结果,回放能不能做起来取决于记录粒度。
  2. 在历史记录上做离线对照。不改模型,只换探索策略,比较不同策略在同一份轨迹上的表现,成本远低于重跑。
  3. 把策略选择当参数而非硬编码。让“何时放弃、何时并行、优先追哪条”成为可调、可评估的配置项。
  4. 对高成本任务优先做回放评估。越是单次运行昂贵的任务,回放的性价比越高。

风险与限制

  • 回放不产生新解法。它只在已记录的搜索树里测试不同决策,探索边界的扩张仍然依赖真实运行,因此它优化的是“走得更聪明”,不是“走到从未到过的地方”。
  • 质量取决于记录与评分函数。历史轨迹不完整、评分不准,回放得到的结论就会失真。
  • 验证范围有限。公开信息显示测试覆盖三类共八项任务,对比基线是同起点但固定搜索策略的方案;在开放域任务上是否同样成立,尚待验证。
  • 实现细节未充分披露。原文没有给出论文链接、代码开源或更细的方法说明,工程落地时仍需自行验证可复现性。

信息差价值

这条内容的真正价值,不只是“有人发布了一个新功能”,而是它揭示了 the-decoder.com 背后的产品方向、工作流变化或竞争信号。对 OPC 来说,这种信息可以转化成持续追踪的栏目选题。

如果把《Google DeepMind 的 Dream-RSI:让 AI 智能体通过“做梦”回放过去的尝试来改进》放到你的内容系统里,它最大的价值在于帮助读者更快看懂“为什么值得关注”,而不是只看到一条碎片化动态。

参考来源

AI SUMMARY

这篇文章回答了什么

Google DeepMind 的 Dream-RSI:让 AI 智能体通过“做梦”回放过去的尝试来改进主要讲什么?

谷歌与 DeepMind 提出 Dream-RSI:把智能体搜索过程中记录下来的尝试与结果当作“梦境”,在已有搜索树上离线回放不同策略,从而在不重复昂贵计算的前提下改进探索决策。方法只改搜索策略、不动底层模型,并在 Gemini 3.1 Pro 与 Gemini 3.7 Flash 上跨三类共八项任务做了对比测试。

这篇文章最值得关注的要点是什么?

谷歌与 DeepMind 提出 Dream-RSI:把智能体搜索过程中记录下来的尝试与结果当作“梦境”,在已有搜索树上离线回放不同策略,从而在不重复昂贵计算的前提下改进探索决策。方法只改搜索策略、不动底层模型,并在 Gemini 3.1…;原贴提到:Researchers at Google and Deepmind have developed a method that helps AI;来源:the-decoder.com

这篇文章和哪些AI专题相关?

它适合放在Agent工作流、AI副业、AI工具专题里阅读。 关联原因:这篇内容命中「Agent、智能体」等主题信号。;这篇内容命中「项目、小生意、变现」等主题信号。;这篇内容命中「自动化、模型」等主题信号。

阅读这篇文章建议先理解哪些关键词?

建议先理解AI工具、工具、自动化、模型、Cursor这些关键词,再结合正文判断工具、机会或风险是否值得进入自己的工作流。

上一篇 Qwen3.8-Omni-Flash 以低于谷歌 Gemini Flash 的价格,在多模态基准上与之匹敌 下一篇 把这个放在这里,稍微看看你接下来可以发布什么。探索……