paper-with-me

Papers

Making Slow Thinking Faster: Compressing LLM Chain-of-Thought via Step Entropy

2025-08-05 · Zeju Li, Jianyuan Zhong, Ziyang Zheng, Xiangyu Wen, Zhijian Xu, Yingying Cheng, Fan Zhang, Qiang Xu arxiv

Large Language Models (LLMs) using Chain-of-Thought (CoT) prompting excel at complex reasoning but generate verbose thought processes with considerable redundancy, leading to increased inference costs and reduced efficiency. We introduce a novel CoT compression framework based on step entropy, a metric that quantifies \emph{the informational contribution of individual reasoning steps} to identify redundancy. Through theoretical analysis and extensive empirical validation on mathematical reasoning benchmarks, we demonstrate that steps with low entropy are indeed highly redundant. Our experiments reveal that an astonishing 80\% of low-entropy intermediate steps can be pruned with minor degradation in the final answer accuracy across DeepSeek-R1-7B, 14B and Qwen3-8B. This finding sharply contrasts with random or high-entropy pruning, which severely impairs reasoning performance. Building on this, we propose a novel two-stage training strategy combining Supervised Fine-Tuning (SFT) and Group Relative Policy Optimization (GRPO) reinforcement learning. This approach enables LLMs to autonomously learn to generate compressed COTs during inference by strategically incorporating [SKIP] tokens. Our method significantly improves LLM inference efficiency while preserving accuracy, paving the way for more scalable LLM deployments and a better understanding of their internal reasoning. The code and data are released in https://github.com/staymylove/COT_Compresstion_via_Step_entropy.

📄 PDF Abstract BibTeX arXiv:2508.03346

Code (0)

등록된 구현이 없습니다.

Tasks

Reinforcement LearningMathematical Reasoning

Similar Papers 제목 키워드 기반

Efficient Reasoning Models: A Survey

2025-04-15 · Sicheng Feng, Gongfan Fang, Xinyin Ma, Xinchao Wang

Reasoning models have demonstrated remarkable progress in solving complex and logic-intensive tasks by generating extended Chain-of-Thoughts (CoTs) prior to arriving at a final answer. Yet, the emergence of this "slow-th…

Knowledge DistillationModel CompressionSurvey

SAT: Balancing Reasoning Accuracy and Efficiency with Stepwise Adaptive Thinking

2026-04-09 · Weiyang Huang, Xuefeng Bai, Kehai Chen, Xinyang Chen 외 arxiv

Large Reasoning Models (LRMs) have revolutionized complex problem-solving, yet they exhibit a pervasive "overthinking", generating unnecessarily long reasoning chains. While current solutions improve token efficiency, th…

Skip-Thinking: Chunk-wise Chain-of-Thought Distillation Enable Smaller Language Models to Reason Better and Faster

2025-05-24 · Xiao Chen, Sihang Zhou, Ke Liang, Xiaoyu Sun 외

Chain-of-thought (CoT) distillation allows a large language model (LLM) to guide a small language model (SLM) in reasoning tasks. Existing methods train the SLM to learn the long rationale in one iteration, resulting in …

Heuristic SearchLanguage ModelingLanguage ModellingLarge Language Model+1

Reasoning Models Better Express Their Confidence

2025-05-20 · Dongkeun Yoon, Seungone Kim, Sohee Yang, Sunkyoung Kim 외

Despite their strengths, large language models (LLMs) often fail to communicate their confidence accurately, making it difficult to assess when they might be wrong and limiting their reliability. In this work, we demonst…

In-Context Learning

Towards Concise and Adaptive Thinking in Large Reasoning Models: A Survey

2025-07-13 · Jason Zhu, Hongyu Li arxiv

Large reasoning models (LRMs) like OpenAI o1 and DeepSeek R1 have demonstrated impressive performance on complex reasoning tasks like mathematics and programming with long Chain-of-Thought (CoT) reasoning sequences (slow…