Research Papers 论文研究 5h ago Updated 1h ago 更新于 1小时前 47

ERR+: Sequential Entropy Resolution for Efficient and Decisive LLM Reasoning ERR+:用于高效果断LLM推理的序列熵解析

ERR+ is a two-phase RLVR framework that optimizes the internal reasoning structure of large reasoning models by rewarding entropy resolution during the thinking phase The Entropy Relief Reward (ERR) provides a bonus proportional to cumulative token-level entropy drops, log-normalized by response length, rewarding uncertainty resolution without suppressing exploration The Robust Relative Efficiency Reward uses a tanh-transformed within-group z-score to penalize excessive response length relative 提出ERR+框架,通过两阶段RLVR优化大语言模型的推理过程质量,而非仅关注最终答案正确性 发现正确推理轨迹在思考阶段呈现更频繁且幅度更大的token级熵降模式,以此作为过程优化信号 第一阶段引入熵缓解奖励(ERR),奖励不确定性解析过程;第二阶段引入鲁棒相对效率奖励,优化响应简洁性 在五个数据集上的实验表明,该方法在多个模型架构上均能同时提升准确性和响应效率

62
Hot 热度
72
Quality 质量
68
Impact 影响力

Analysis 深度分析

TL;DR

  • ERR+ is a two-phase RLVR framework that optimizes the internal reasoning structure of large reasoning models by rewarding entropy resolution during the thinking phase
  • The Entropy Relief Reward (ERR) provides a bonus proportional to cumulative token-level entropy drops, log-normalized by response length, rewarding uncertainty resolution without suppressing exploration
  • The Robust Relative Efficiency Reward uses a tanh-transformed within-group z-score to penalize excessive response length relative to peers, improving conciseness
  • Formal analysis reveals gradient conflict between the two objectives in early training, motivating the sequential (rather than joint) optimization design
  • Experiments across five datasets show consistent accuracy and conciseness improvements across multiple model backbones

Why It Matters

This work addresses a critical gap in RLVR: while correctness-based rewards optimize final answers, they neglect the quality of the reasoning process itself. By introducing entropy-based process rewards, ERR+ provides a principled way to shape how models think, not just what they conclude. This is directly relevant to anyone building or fine-tuning large reasoning models, as it offers a method to achieve better performance with shorter, more decisive reasoning traces.

Technical Details

  • Entropy Relief Reward (ERR): Computes cumulative token-level entropy drops during the thinking phase; rewards resolution of uncertainty (entropy decrease) while leaving exploratory high-entropy states unconstrained, unlike prior methods that suppress entropy entirely. The reward is log-normalized by response length to prevent length bias.
  • Robust Relative Efficiency Reward: Scores each response's length against co-generated peers using a tanh-transformed within-group z-score, creating a bounded, robust signal that penalizes unnecessarily long responses without absolute length cutoffs.
  • Sequential Two-Phase Design: Formal gradient analysis shows joint optimization of ERR and efficiency rewards induces conflict in early training; the sequential approach (ERR first, then efficiency) avoids this instability.
  • Empirical Validation: Tested across five datasets and multiple model families, demonstrating consistent improvements in both accuracy and response conciseness.
  • Key Observation: Correct reasoning traces exhibit more frequent and larger token-level entropy drops within the thinking phase compared to incorrect traces, forming the empirical foundation of the approach.

Industry Insight

  • Entropy-based process rewards represent an underexplored direction for improving LLM reasoning quality beyond outcome supervision; practitioners should consider monitoring token-level entropy as a diagnostic and training signal.
  • The sequential optimization strategy (rather than joint) highlights the importance of understanding gradient interactions in multi-objective RLVR, suggesting that reward scheduling may be as important as reward design.
  • The conciseness improvements without accuracy loss are particularly valuable for production deployment, where latency and token costs are significant constraints.

TL;DR

  • 提出ERR+框架,通过两阶段RLVR优化大语言模型的推理过程质量,而非仅关注最终答案正确性
  • 发现正确推理轨迹在思考阶段呈现更频繁且幅度更大的token级熵降模式,以此作为过程优化信号
  • 第一阶段引入熵缓解奖励(ERR),奖励不确定性解析过程;第二阶段引入鲁棒相对效率奖励,优化响应简洁性
  • 在五个数据集上的实验表明,该方法在多个模型架构上均能同时提升准确性和响应效率

为什么值得看

本文首次将token级熵变化作为推理过程质量的量化指标,为RLVR方法提供了新的优化维度。两阶段顺序设计解决了多目标优化中的梯度冲突问题,对构建高效可靠的推理模型具有直接参考价值。

技术解析

  • 核心发现:通过跨多个模型家族的实证分析,发现正确推理轨迹在思考阶段表现出更频繁和更大幅度的token级熵降,而错误轨迹则缺乏这一模式
  • ERR奖励机制:Entropy Relief Reward计算思考阶段累积的token级熵降,通过响应长度的对数归一化,奖励不确定性解析而非简单压制熵值
  • 鲁棒相对效率奖励:采用tanh变换的组内z-score,将每个响应的长度与同组生成结果对比评分,鼓励简洁高效的推理
  • 顺序训练设计:形式化分析证明两目标联合优化在训练早期会产生梯度冲突,因此采用分阶段顺序训练策略
  • 实验验证:在五个数据集上测试,跨不同模型骨干均实现准确率与响应简洁性的双重提升

行业启示

  • 推理模型优化应从"结果导向"转向"过程导向",引入过程质量信号可突破现有RLVR方法的性能瓶颈
  • 熵分析可作为推理过程可解释性的重要工具,为模型调试和错误诊断提供新视角
  • 多目标强化学习中的梯度冲突问题可通过顺序训练有效缓解,这一设计原则可推广至其他复杂奖励场景

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

LLM 大模型 Research 科学研究 Training 训练 Inference 推理 Evaluation 评测