Chain-of-Experience for Continual LLM Improvement
大模型也能靠反复试错变强:边做题边接收反馈,准确率和成本同步改善
这篇论文提出了Chain-of-Experience(CoE)方法,让大语言模型在回答同一道题时不断利用之前尝试留下的反馈重新作答,而不是一问一答就结束。研究在GPT-5、Gemini-2.5 Pro、Claude-4.5 Sonnet等8个模型上,针对数学、编程、知识类任务测试后发现,CoE比不带反馈的基线方法表现更稳定,整体准确率提升5.6%,同时API成本降低19%。即便只用模型自己给自己的反馈(没有标准答案),提升幅度也很可观,叠加多种反馈效果更好。
他们做了什么
- 以往对大模型的评测大多是一问一答,没有考察模型能否通过反复交互和反馈不断变强,这篇论文正是研究这一点
- CoE让模型在生成下一个答案时,参考此前所有尝试及其对应反馈。研究设计了四种反馈:完全没有反馈、代码执行结果反馈、由另一个模型充当评委给出的反馈、以及直接告知对错的正确性反馈
- 实验覆盖GPT-5、o3、Gemini-2.5 Pro、Claude-4.5 Sonnet等8个最新推理模型,测试集包括AIME 2025、OmniMath(数学)、LiveCodeBench V6、LiveBench Code(编程)、GPQA Diamond(知识)等六个基准
- 仅靠模型自我评判的反馈,就比常见的少样本上下文学习(ICL)、Dynamic CheatSheet、Agentic Context Engineering等方法高出7%到9%;如果用最强的正确性反馈,平均准确率能冲到79.3%,而对比方法大多只有62%到67%左右
- 基础能力越强的模型,从反馈中获益越多(平均皮尔逊相关系数为0.5);即使故意给模型持续错误或误导性的反馈,模型的表现依然相对稳健,不会大幅崩溃


| AIME 2025 | LiveBench (Code) | OmniMath | ||||
|---|---|---|---|---|---|---|
| Setting | Acc | Best R | Acc | Best R | Acc | Best R |
| Dual (Model + Corr/Exec) | 76.7 | R19 | 81.2 | R15 | 73.5 | R17 |
| Correctness / Executor | 70.0 | R13 | 78.1 | R15 | 74.5 | R17 |
| Binary Executor | – | – | 71.9 | R13 | – | – |
| Model | 60.0 | R6 | 57.8 | R17 | 50.5 | R9 |
| Model + DC | 50.0 | R8 | 51.6 | R15 | 46.0 | R10 |
| Model + SimpleMem | 56.7 | R6 | 54.7 | R17 | 49.5 | R12 |


| Feedback | AIME 2025 | GPQA Diamond | ||
|---|---|---|---|---|
| GPT-5 mini | o4 mini | GPT-5 mini | o4 mini | |
| Self | 93.3 | 91.1 | 79.9 | 78.8 |
| SelMV Self | 91.1 | 88.9 | 80.4 | 79.5 |
| All Correct | 90.0 | 73.3 | 79.3 | 75.8 |
| SelMV Correct | 93.3 | 73.3 | 79.3 | 76.3 |
| Incorrect | 91.7 | 83.3 | 79.3 | 72.7 |
| SelMV Incorrect | 89.7 | 86.7 | 82.8 | 77.8 |
| Method | AIME 2025 | LiveCodeBench (V6) | LiveBench (Code) | OmniMath | GPQA Diamond | EvaLearn |
|---|---|---|---|---|---|---|
| ICL | 71.83% | 62.50% | 65.46% | 53.12% | 78.45% | 40.99% |
| ACE | 71.98% | 66.94% | 69.38% | 50.33% | 76.58% | 42.54% |
| DC | 73.33% | 63.59% | 68.58% | 48.64% | 79.56% | 42.68% |
| w/o Feedback | 77.78% | 72.57% | 60.16% | 65.17% | 80.02% | 44.91% |
| Reasoning-high | 69.05% | 70.63% | 55.46% | 61.81% | 76.21% | 39.58% |
| Reasoning-low | 60.48% | 61.03% | 55.38% | 50.60% | 72.92% | 29.34% |
| Binary-Executor | – | 72.90% | 71.65% | – | – | – |
| Self | 82.22% | 75.69% | 69.94% | 67.52% | 81.03% | 51.73% |
| Correctness/Executor | 89.05% | 74.50% | 75.78% | 79.61% | 99.52% | 57.05% |


| Category | Agreement (%) | Cohen’s κ |
|---|---|---|
| Feedback Fidelity | 84.0 | 0.81 |
| Self Reflection | 72.0 | 0.71 |
| Specification Recall | 80.0 | 0.78 |
| Random | 68.0 | 0.63 |
| Overall | 76.0 | 0.768 |


| Dataset | Method | Tokens | Acc (%) |
|---|---|---|---|
| AIME 2025 | CEF | 108,734 | 84.6 |
| SF | 108,231 | 83.8 | |
| NF | 106,825 | 74.1 | |
| DC | 11,233 | 74.7 | |
| OmniMath | CEF | 176,412 | 74.2 |
| SF | 175,806 | 72.1 | |
| NF | 173,944 | 66.8 | |
| DC | 16,904 | 63.9 | |
| LiveCodeBench (V6) | CEF | 224,118 | 72.6 |
| SF | 223,441 | 71.2 | |
| NF | 221,550 | 68.0 | |
| DC | 20,771 | 66.4 |


为什么重要
这说明不需要重新训练模型,只要让大模型在回答过程中不断利用反馈进行自我修正,就能同时提升准确率并降低推理成本,这对开发多轮对话、编程助手或智能体类产品的团队很有实用价值。研究还给出了不同任务类型该用哪种反馈更划算的具体依据。
本文术语
- Chain-of-Experience(CoE) · 让模型在多次尝试同一任务的过程中不断积累此前的答案与反馈,并据此改进下一次作答的测试时方法
- self feedback · 由模型自己(或另一个模型)对答案做出评判所产生的反馈,不依赖标准答案
- correctness feedback · 直接告知答案对错的反馈信号
- 上下文学习(ICL) · 在提示中放入几个已解决的示例,让模型参考后再回答新问题
- Dynamic CheatSheet / Agentic Context Engineering · 此前提出的方法,把从已解决问题中提炼出的策略存入外部记忆库供后续复用
论文原文摘要(英文)
Humans continuously learn from experience, whereas conventional large language model (LLM) evaluations ignore the models' ability to improve through inference-time interaction. In this paper, we study how LLMs learn from iterative experience at test time, a setting we refer to as Chain-of-Experience (CoE), where models accumulate experiential traces through iterative interactions with self or environmental feedback to form a continual improvement loop beyond zero-shot inference. We instantiate CoE with diverse feedback mechanisms, including model self-feedback and environmental signals such as correctness or public coding test pass rates, and evaluate across math, coding, and knowledge domains using 8 LLMs, including GPT-5, Gemini-2.5 Pro, Claude-4.5 Sonnet. Our study shows that leveraging iterative experience consistently outperforms feedback-free baselines, achieving substantial gains with self feedback alone, alongside a 5.6% overall improvement and 19% lower API cost across tasks and models. We further show that combining complementary feedback channels (e.g., model and correctness signals) yields additional gains, and that CoE delivers higher accuracy per token than existing test-time strategies. We observe a positive correlation between LLM base ability and improvement capacity, and show that models remain robust under weak or spurious feedback, with different feedback contributing to distinct improvement aspects and most gains emerging early in the iterations.
在 arXiv 阅读最新论文
- LoRA-GA$^2$: Low Rank Adaptation with Multi-step Gradient Adaptive Alignment在正式微调前先偷看几步训练的梯度,让LoRA的初始化更聪明
- Remember, Verify, or Ask? Cross-Family Evaluation of Memory Commitment in LLM AgentsAI助手在该向你提问的时候,却更愿意自己去核实事实
- Robust Incomplete Multimodal Sentiment Analysis via Iterative Proxy Correction文本信息缺失或损坏时,这个AI不靠一次性猜测,而是反复修正猜测结果,从而更准确地判断情绪
- Generating Diverse Personas for User Simulators to Test Interview Dialogue Systems要测试访谈式对话系统需要大量不同性格的虚拟用户,这项研究用大语言模型自动生成这些虚拟用户人设
- Rethinking Patch Based Multivariate Time Series Forecasting with Semantic Structured Partitioning别再机械切分时间序列,按语义把它切成有意义的块
- Reliable Financial Named Entity Recognition under Domain ShiftAI在正式文件里学到的自信,一到推特上就变得不可信
- Bringing analytic rigor to agentic AI for science: The Brain Researcher platform for neuroimaging data analysis让AI分析脑影像数据时,把“为什么这个结论可信”也一并记录下来
- GenMatch: An End-to-End Generative Matching Framework for Micro-View Order-Dispatching in Ride-Hailing滴滴把打车派单从预测-计算-匹配三段式流程改成一次生成完成,线上效果提升明显
METAL LAB 最新报道
图片来源: Haoqin Tu et al., arXiv:2608.18027, CC BY 4.0