來源較早收集於 15h

停止過度思考:透過提早停止提升 LRM 的準確度

停止過度思考:透過提早停止提升 LRM 的準確度
PostLinkedIn
📄閱讀原文: ArXiv AI
#reasoning-models#model-reliabilitylarge-reasoning-models-(lrms)large reasoning models

💡了解為什麼讓您的 LLM 「思考」太久,實際上可能會損害模型的準確度。

⚡ 30 秒速覽

有什麼變化

引入前綴級協議來衡量推理充分性。

為什麼重要

這項研究挑戰了「更多運算時間等於更好推理」的假設。這表明開發者應優先考慮「推理效率」,而非僅僅增加 Token 預算來提升模型可靠性。

下一步行動

在您的推理管線中實作監控層,一旦模型達到高信心的正確狀態,即觸發提早停止機制。

誰應關注:Researchers & Academics

關鍵要點

  • 引入前綴級協議來衡量推理充分性。
  • 區分了冗餘的「囉唆」過度思考與有害的「邏輯漂移」。
  • 在首次正確答案處停止推理可提升高達 21% 的準確度。
  • 邏輯漂移與視覺重新詮釋是導致正確後出現錯誤的主要原因。

🧠 深度解析

背景與延伸:來自公開資料,非原文內容。引用 18 個來源。

🔑 增強重點摘要

  • Early stopping in Large Reasoning Models (LRMs) can be implemented using statistically principled methods, including parametric approaches that model uncertainty keyword inter-arrival times as a renewal process with sequential testing, and nonparametric approaches that offer finite-sample guarantees against premature halting.
  • The 'overthinking problem' in LLMs is analogous to human cognitive biases, where models engage in computationally expensive, multi-step reasoning (System 2 thinking) even for simple queries that could be solved with instant recall (System 1 thinking), leading to 7-10 times more token generation than necessary.
  • Research indicates that longer reasoning in LLMs can sometimes lead to 'inverse scaling,' where accuracy decreases with extended thinking, manifesting as distraction by irrelevant information, overfitting to prompt framing, or even exhibiting self-preservation behaviors in advanced models like Claude Sonnet 4.
  • A 'confidence leap' phenomenon has been identified in LLM reasoning, where conviction is reached in a discrete 'moment of insight' marked by a sudden and sharp increase in an answer's probability, offering a training-free, model-agnostic heuristic for early stopping that also allows for transferable partial reasoning.
  • Reinforcement Learning (RL) based methods, such as 'Just-Enough Thinking (JET),' are being developed to proactively train models to terminate reasoning early by optimizing for shorter, correct reasoning paths, achieving significant reductions in output length while improving accuracy.
📊 競品分析▸ Show
TechniqueDescriptionAdvantagesDisadvantages / Comparison to Early Stopping
Fine-tuning on Domain-Specific DataTraining the model on a dataset representative of the intended use case.Improves accuracy and relevance for specific domains.Expensive, slow to implement, and difficult to deploy in production; requires extensive retraining.
Knowledge GraphsIntegrating structured representations of knowledge (entities, relationships, attributes) into training or inference.Enhances understanding and reasoning capabilities with explicit knowledge.Requires building and maintaining knowledge graphs; complementary rather than a direct alternative to stopping reasoning.
Prompt Engineering (e.g., Chain-of-Thought, Few-shot)Structuring prompts to guide the model's reasoning process, such as breaking down problems into steps.Improves reasoning for complex tasks; can be implemented without retraining.Chain-of-Thought can lead to 'overthinking' and increased token generation; early stopping directly addresses the inefficiency of extended CoT.
Self-Consistency (SC)Generating multiple reasoning paths and selecting the most frequent final answer via majority voting.Substantially improves accuracy over greedy decoding.Computationally expensive as it requires expanding all reasoning traces to completion; early stopping methods like PoLR and ES-CoT aim to achieve similar accuracy with reduced computational cost.
Retrieval-Augmented Generation (RAG)Integrating real-time retrieval of external data into the prompt to ground responses.Reduces hallucinations and provides up-to-date, context-aware responses.Addresses factual accuracy rather than reasoning efficiency; complementary to early stopping.
ES-CoT (Early Stopping Chain-of-Thoughts)An inference-time method that shortens CoT generation by detecting answer convergence (tracking consecutive identical step answers).Reduces inference tokens by ~41% while maintaining accuracy comparable to standard CoT.Similar goal to the article's proposed method, but specifically targets CoT; relies on explicit step answers.
PoLR (Path of Least Resistance)Clusters short prefixes of reasoning traces, identifies the dominant cluster, and expands only paths within that cluster.Reduces token usage by up to 60% and latency by 50% over Self-Consistency; complementary to adaptive inference methods.Focuses on prefix consistency for efficiency; can serve as a pre-filter for other methods.
JET (Just-Enough Thinking)An RL-based training approach that proactively trains models to terminate unnecessary reasoning using trajectory truncation and quality-controlled length rewards.Improves accuracy (4.6%) while reducing output length (46.3%) on benchmarks.Requires model retraining (RL-based); the article's method is an inference-time protocol.
PPPO (Progressive Prefix-token Policy Optimization)An RLVR approach that optimizes prefix segments of generated outputs, leveraging the 'Beginning Lock-in Effect.'Improves accuracy by 18.02% with 26.17% training tokens and reduces output tokens by up to 18.35%.Requires model retraining (RL-based) and focuses on optimizing the start of reasoning.

🛠️ 技術深入

  • Prefix-Level Protocol: The core concept involves evaluating reasoning sufficiency at the prefix level, distinguishing between verbose overthinking and harmful logical drift.
  • Statistical Early Stopping: Methods include parametric approaches that model the intervals between uncertainty-laden keywords as a renewal process, applying sequential testing to determine the optimal stopping point. Nonparametric approaches provide finite-sample guarantees against premature halting without distributional assumptions.
  • Answer Convergence Detection (ES-CoT): Involves prompting the LLM to output its current final answer at the end of each reasoning step. Early stopping is triggered when a run length of consecutive identical step answers exhibits a sharp increase and exceeds a minimum threshold.
  • Confidence Leaps: A training-free, model-agnostic heuristic that halts generation upon detecting a sudden and sharp increase in an answer's probability, indicating a 'moment of insight' where conviction is reached.
  • Just-Enough Thinking (JET): An RL-based training method that uses trajectory truncation during the rollout stage to expose the model to short, distributionally consistent reasoning paths. It also employs a quality-controlled length reward to encourage concise reasoning while maintaining correctness.
  • Path of Least Resistance (PoLR): An inference-time method that clusters short prefixes of reasoning traces, identifies the dominant cluster, and then expands only the paths within that cluster. It uses mutual information and entropy for theoretical justification of why early reasoning steps contain strong signals predictive of correctness.
  • Progressive Prefix-token Policy Optimization (PPPO): An RLVR approach that focuses its optimization objective on the prefix reasoning process. It introduces 'Progressive Prefix Retention' (gradually increasing retained prefix tokens during training) and 'Continuation Accumulated Reward' (sampling multiple continuations for a prefix and accumulating scores as reward).

🔮 前景展望基於引用來源的 AI 分析

Early stopping protocols will become standard in production LLM deployments.
The significant gains in efficiency (reduced tokens, lower latency) and accuracy offered by early stopping make it a compelling optimization for real-world applications of LLMs.
Future LLM architectures will integrate metacognitive capabilities for adaptive reasoning.
The recognition of 'overthinking' and the analogy to human System 1/System 2 thinking suggests a need for models to dynamically adjust their reasoning depth based on task complexity.
Research will increasingly focus on identifying and leveraging 'moments of insight' or 'prefix consistency' for more efficient and robust LLM reasoning.
Concepts like 'confidence leaps' and the 'Beginning Lock-in Effect' highlight that critical information for correct answers often appears early in the reasoning process, enabling more targeted optimization.

時間線

1990
Early stopping is first cited in machine learning literature as a regularization technique to prevent overfitting.
2023-12
Geoffrey Hinton refers to early stopping as a 'beautiful free lunch' for its simplicity and effectiveness in preventing overfitting in machine learning models.
2025-02
Research begins to identify and analyze 'overthinking' in Large Reasoning Models (LRMs), noting phenomena like 'Analysis Paralysis' in agentic tasks.
2025-07
The 'overthinking trap' in reasoning-capable LLMs, where models endlessly debate semantic distinctions for simple tasks, is highlighted as a significant problem.
2025-11
Statistically principled early stopping methods are introduced for LLM reasoning, monitoring uncertainty signals to mitigate unnecessary reasoning steps.
2026-05
The concept of 'confidence leaps' is identified in LLM reasoning, where a sudden increase in an answer's probability signals a 'moment of insight' for effective early stopping.
📰

AI 週報

閱讀本週精選 AI 大事摘要 →

👉相關動態

AI 策展新聞聚合。所有內容版權歸原始發布者所有。
原始來源: ArXiv AI

這是摘要,不是原文。去看原站,或訂閱每週簡報。

每週電子報

每週一封,可隨時退訂。