REVIEW 4 major objections 4 minor 6 cited by
Fast on the Easy, Deep on the Hard: Efficient Reasoning via Powered Length Penalty
T0 review · 4 major / 4 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read Adding a powered length penalty to the reward function teaches language models to be fast on easy questions and deep on hard ones, cutting tokens on easy benchmarks by up to 90 percent while broadly holding accuracy.
desk verdict A plausible reward-shaping knob with a genuinely interesting 'thought disappearance' effect, but the headline numbers are assembled from different alpha values and need honest re-reporting. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The carrying mechanism is the Powered Length Penalty (PLP), the reward function $f(\mathrm{len}) = 1 + \alpha/\mathrm{len}^{\gamma}$ with $\alpha \geq 0$ and $\gamma > 0$ (the analysis takes $\gamma = 0.5$), applied to correct responses inside the RLOO advantage estimator, which gives each of $k$ sampled answers the difference between its reward and the mean reward of the other $k-1$ answers to the same question. Adding the penalty to 1 rather than subtracting it from 1 keeps long correct answers far above the zero reward of wrong answers, so on hard questions the model is rewarded for correctness, while on easy questions, whose correct answers are short, the penalty creates large reward gaps that drive compression. The statement that carries the argument is the variance formula $\operatorname{Var}(Z) = (\ln b - \ln a)/(b-a) - 4/(\sqrt{a}+\sqrt{b})^{2}$ for $Z = 1 + 1/\sqrt{\mathrm{len}}$ with $\mathrm{len}\sim U(a,b)$: the variance shrinks as the length scale grows, so the same fixed function penalizes short answers heavily and long answers almost not at all. The paper contrasts this with standardized penalties, whose variance stays fixed at 1 regardless of length, meaning they keep punishing long answers even where reasoning is needed.
What would settle it
Build a training set with the same questions and answers as GSM8K but with the length-difficulty correlation removed, for example rewriting easy problems so their correct solutions are long and hard problems so their correct solutions are short, then train with the same PLP reward and measure accuracy by difficulty tier. If the model then shortens the long easy answers while accuracy on the short hard answers falls as tokens shrink, the penalty is tracking length statistics rather than true difficulty, and the reported fast-on-the-easy behavior is specific to the length-difficulty correlation in GSM8K. A cheaper check: Table 3's prediction that the thinking-stage fraction tracks difficulty can be tested question by question against human difficulty ratings.
Extended reading notes
Core claim
On its own terms, the paper claims that a powered, absolute length penalty produces difficulty-adaptive reasoning without any difficulty estimator, extra training signal, or inference-time prompt. With $\gamma$ fixed at 0.5 in the analysis, the reward $Z = 1 + 1/\sqrt{\mathrm{len}}$ for correct answers makes the advantage differences among short responses large, so easy answers are pushed to be shorter, while the differences among long responses are small, so hard answers are judged almost purely on correctness; the variance of $Z$ when length is uniform on $(a,b)$ is $(\ln b - \ln a)/(b-a) - 4/(\sqrt{a}+\sqrt{b})^{2}$, which decreases as the length scale grows. Empirically, training on just 3,200 GSM8K questions transfers to harder benchmarks: the thinking stage nearly disappears on GSM8K itself (26 of 1,319 sampled responses keep the thinking label, versus 1,319 of 1,319 for the original model), drops to 162 of 500 on MATH500, and remains on all 30 AIME2024 responses, while AIME2024 accuracy rises from 27.7% to 33.7% (1.5B model) and from 54.7% to 55.7% (7B model) at fewer tokens. The claim, as the authors would state it, is that the same reward that teaches conciseness on easy problems preserves, and in these runs slightly improves, correctness on hard ones because the penalty field is automatically tuned by the length distribution of correct answers.
Load-bearing premise
The load-bearing premise, stated in the paper's introduction, is that response length is a reliable indicator of question difficulty, so that penalizing length hits easy questions hard and spares hard questions, and this premise gives way if easy questions regularly draw verbose correct answers or hard questions draw terse ones.
Editorial extensions
If this is right
- Training on a simple dataset can transfer efficiency to harder benchmarks: with 3,200 GSM8K questions as the only training data, MATH500 tokens drop by about a third on the 1.5B model with accuracy preserved, and AIME2024 accuracy improves at fewer tokens on both model sizes.
- The model learns on its own to skip the explicit thinking stage on easy questions, with the thinking label appearing in 26 of 1,319 GSM8K responses versus 1,319 of 1,319 originally, so inference cost adapts to the model's own judgment of difficulty rather than a fixed reasoning budget.
- Accuracy and efficiency are not a fixed trade-off on hard problems: on AIME2024 the 1.5B model goes from 27.7% to 33.7% accuracy with tokens reduced from 15,643 to 13,327, and the 7B model from 54.7% to 55.7% with tokens reduced from 12,816 to 9,056.
- The strength parameter $\alpha$ traces a controllable effort-accuracy frontier: larger $\alpha$ compresses outputs further, but past a model-specific point accuracy collapses, so practitioners can dial the trade-off rather than accept a single compression level.
- Because the method needs no critic or reward model, correctness on a verifiable answer being the reward itself, it adds no inference-time prompts and keeps the training pipeline memory-light on top of RLOO.
Reading between the lines
- My inference: because the model spontaneously drops the thinking stage on easy questions, the fraction of responses that keep a thinking stage could serve as a per-question measure of perceived difficulty, and comparing that fraction with human difficulty ratings would show whether the learned economy tracks genuine difficulty or only length statistics.
- My inference: the big-reward design, adding the penalty to 1 instead of subtracting it from 1, suggests that the safety margin of correct long answers above zero is what preserves accuracy, so other length-control schemes could reproduce the effect by keeping correct long answers far from zero rather than by copying the exact functional form.
- My inference: the method's transferability is likely weakest in non-mathematical domains such as legal or medical reasoning, where difficulty and response length correlate less reliably, so running the same recipe on such a domain and comparing the accuracy-efficiency frontier with the math results would be the natural test of the paper's implicit claim that the mechanism generalizes.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper proposes a powered length penalty (PLP) for RLOO-based reinforcement learning of reasoning models. For a correct response of length len(y), the reward is R(y,x)=1+α/len(y)^γ, and incorrect responses receive 0. The intent is to penalize verbosity strongly on easy questions while leaving long reasoning chains on hard questions nearly unpenalized. The authors train DeepSeek-R1-Distill-Qwen-1.5B, DeepSeek-R1-Distill-Qwen-7B, and Qwen2.5-7B-Instruct on 3,200 GSM8K training questions, then evaluate on GSM8K, MATH500, and AIME2024. They report token reductions with preserved or improved accuracy on the easier sets and improved accuracy on AIME2024. Section 4 gives a variance analysis of the penalty under a uniform length distribution, and Section 5.4 reports ablations over α.
Significance. If the headline claim held—that a single PLP-trained model is fast on easy, deep on hard, preserving or improving accuracy across three difficulty levels while cutting tokens—this would be a simple and practical contribution to efficient reasoning. The idea of making the length penalty decay with response length is intuitive, and the choice to train on one dataset and test across difficulty levels is a clean experimental design. I credit the paper for reporting ablations over α and for stating that three training runs were performed per setting. However, the central empirical claim is not currently established: the 1.5B results in Table 1 are assembled from different values of α for different datasets, the AIME2024 differences are within the noise of a 30-question benchmark, and no error bars or significance tests are reported despite the stated three-run protocol. These issues are fixable within the manuscript's scope, so the contribution remains potentially valuable.
major comments (4)
- [§5.2, Table 1; Appendix Tables 1–3] The 1.5B 'Ours' row in Table 1 does not correspond to a single trained model. GSM8K (α=5, 411 tokens, 86.3%) and AIME2024 (α=5, 13327 tokens, 33.7%) use α=5, while MATH500 (α=2, 3606 tokens, 85.1%) uses α=2. Under α=5, the 1.5B MATH500 accuracy is 81.9%, which is below the original model's 82.9%. Therefore, the claim that PLP preserves or improves accuracy on all three benchmarks for a single configuration is not supported by the reported data. Please present results for one hyperparameter setting per model, or explicitly reframe the contribution as per-dataset hyperparameter selection.
- [§5.1, Table 1, AIME2024] AIME2024 contains only 30 questions. With the reported evaluation protocol (N=10 conditional samples per question), the 1.5B improvement of 6.0 points corresponds to roughly two questions, and the 7B improvement of 1.0 point corresponds to 0.3 questions. The implementation details say three independent training runs were performed, but no per-seed variance, confidence interval, or significance test is reported anywhere. Without this information, the claimed AIME2024 accuracy gains are not distinguishable from sampling noise.
- [§5.4, Figures 5 and 6] The hyperparameter selection rule for α is unclear and appears post-hoc. The text states that for the 1.5B model 'α=2 yielded the best results,' yet Table 1 uses α=5 for GSM8K and AIME2024 and α=2 for MATH500. For the 7B model, 'the optimal performance was achieved when α=4,' which does match the Table 1 row. Since α is a free parameter and no validation-based selection criterion is given, the reader cannot tell whether the reported numbers were chosen after looking at the test benchmarks. Please specify a single selection rule (e.g., choose α on a validation split and fix it for all evaluation datasets), or report the full per-α table as the main result and avoid cherry-picked rows.
- [§3.4, §5.1] The reward function depends on both α and γ, but the experimental section never states which value of γ was used. Section 4 restricts its analysis to γ=0.5, and Figure 2 uses γ=0.5, yet the implementation details in Section 5.1 mention only α in the ablations. If γ is fixed to 0.5 throughout, say so explicitly in the experimental setup; if γ varies, report its values. This is needed for reproducibility of Table 1.
minor comments (4)
- [§3.3] The heading 'Length Cliping' contains a typo; it should be 'Length Clipping.'
- [§4] The sentence 'The variances of the above two different methods also exhibit the same trend in general distributions' asserts a generalization from the uniform-distribution calculation without proof or citation. Please either provide a supporting argument or soften the claim.
- [Appendix B] The appendix introduction states 'The same parameter was tested on GSM8K, MATH500, and AIME2024,' but the tables show that the reported 'Ours' row uses different α values across datasets for the 1.5B model. This wording is misleading and should be corrected.
- [Table 2] The TokenSkip result is taken from the reference paper rather than measured under the same evaluation protocol. Please state this in the caption or table note so the comparison is not over-interpreted.
Circularity Check
The 1.5B 'Ours' results are a composite of per-benchmark α selections, so the headline accuracy-efficiency tradeoff partly reduces to test-set hyperparameter selection; the powered-length-penalty method itself is not circularly derived.
-
fitted input called prediction
[Table 1 (Section 5.2); Appendix Tables 1-3; Section 5.4 Ablation Studies]
""Ours86.3% 411 85.1% 3606 33.7% 13327"; "R1-1.5B 2 3606 85.1%"; "R1-1.5B 5 13327 33.7%"; "In the 1.5B model, we found that selecting α=2 yielded the best results.""
The Table 1 'Ours' row for the 1.5B model is not produced by a single trained model: GSM8K (86.3%, 411 tokens) and AIME2024 (33.7%, 13,327 tokens) match the α=5 runs, while MATH500 (85.1%, 3,606 tokens) matches the α=2 run. Appendix Table 2 shows that with α=5 the same 1.5B model obtains 81.9% on MATH500, below the original 82.9%. Thus the reported 'accuracy preserved on MATH500' is the result of selecting α=2 after seeing MATH500 test results, and the α used for the headline GSM8K/AIME numbers would make MATH500 accuracy worse.
full rationale
The paper's core mechanism—training with RLOO and reward f(len)=1+α/len^γ—is empirical and externally anchored to original-model baselines; it is not a derived-from-first-principles claim that reduces to its own definition. Section 4's variance formula Var(Z)=ln(b/a)/(b-a)-4/(√a+√b)^2 is an internal mathematical property of the chosen penalty under a uniform-length assumption; it is not used to produce the empirical accuracy numbers and so is not circular. The paper does not rely on load-bearing self-citations. The main circularity is the 'fitted input called prediction' pattern at the level of hyperparameter selection: for the 1.5B model, the Table 1 'Ours' row assembles results from α=5 (GSM8K and AIME2024) and α=2 (MATH500), and under the α=5 configuration MATH500 accuracy falls below the original baseline. Since α is selected on the same test sets whose results are reported, the headline accuracy-preservation claim for MATH500 is not out-of-sample for the 1.5B model. The 7B row is a single α=4 configuration across all three datasets, so the method retains independent empirical content; the circularity is partial, not total. The small AIME sample size and absence of per-seed variance are additional statistical robustness concerns, but they are not themselves circularity.
Assumptions & free parameters
free parameters (2)
- Alpha (α) =
1.5B: 5 for GSM8K/AIME2024 and 2 for MATH500 in Table 1; 7B: 4; swept values 1-30
- Gamma (γ) =
0.5
assumptions (3)
- domain assumption Response length is an indicator of question difficulty.
- ad hoc to paper The length distribution of model outputs is approximately uniform for the variance analysis, and the variance trend generalizes to real distributions.
- standard math RLOO with k=8 samples gives unbiased advantage estimates and stable training.
Cite this review
Pith. "Pith review of Fast on the Easy, Deep on the Hard: Efficient Reasoning via Powered Length Penalty." pith.science (2026). https://pith.science/paper/TDDJRNJJ
@misc{pith2026250610446,
author = {Pith},
title = {Pith review of: Fast on the Easy, Deep on the Hard: Efficient Reasoning via Powered Length Penalty},
year = {2026},
howpublished = {\url{https://pith.science/paper/TDDJRNJJ}},
note = {Machine review of arXiv:2506.10446}
}
read the original abstract
Large language models (LLMs) have demonstrated significant advancements in reasoning capabilities, performing well on various challenging benchmarks. Techniques like Chain-of-Thought prompting have been introduced to further improve reasoning. However, these approaches frequently generate longer outputs, which in turn increase computational latency. Although some methods use reinforcement learning to shorten reasoning, they often apply uniform penalties without considering the problem's complexity, leading to suboptimal outcomes. In this study, we seek to enhance the efficiency of LLM reasoning by promoting conciseness for simpler problems while preserving sufficient reasoning for more complex ones for accuracy, thus improving the model's overall performance. Specifically, we manage the model's reasoning efficiency by dividing the reward function and including a novel penalty for output length. Our approach has yielded impressive outcomes in benchmark evaluations across three datasets: GSM8K, MATH500, and AIME2024. For the comparatively simpler datasets GSM8K and MATH500, our method has effectively shortened output lengths while preserving or enhancing accuracy. On the more demanding AIME2024 dataset, our approach has resulted in improved accuracy.
Figures
Figures from the paper (3 more)
Forward citations
Cited by 6 Pith papers
-
A First-Principles Theory of Slow Thinking and Active Perception
Active lifting of data distributions via latent-sequence sampling and max-rate uncertainty reduction formally derives slow-thinking LLMs and places them on representation and sampler hierarchies that can be climbed.
-
Compress the Easy, Explore the Hard: Difficulty-Aware Entropy Regularization for Efficient LLM Reasoning
CEEH selectively applies entropy regularization to hard questions and a shortest-correct-length penalty to easy ones, reducing reasoning length while preserving accuracy across six math benchmarks.
-
Learning to Reason Efficiently with Discounted Reinforcement Learning
Discounted correctness rewards in GRPO post-training shorten LLM reasoning traces by roughly 13-40% while matching pass@1 accuracy, supported by Blackwell-optimality analysis for restricted policy classes.
-
Baichuan-M2: Scaling Medical Capability with Large Verifier System
Baichuan-M2, a 32B medical LLM trained with a patient simulator and a clinical rubric generator as RL verifiers, reports state-of-the-art HealthBench scores (60.1 overall, 34.7 hard), ahead of all open-source models.
-
Reward Modeling for Reinforcement Learning-Based LLM Reasoning: Design, Challenges, and Evaluation
A taxonomy-driven survey arguing that reward design is the central mechanism shaping reliable LLM reasoning, with maps of reward paradigms, reward-hacking failure modes, and benchmark pitfalls.
-
Towards Concise and Adaptive Thinking in Large Reasoning Models: A Survey
A comprehensive review that categorizes methods for shortening and adaptively triggering chain-of-thought reasoning in large language models.
Reference graph
Works this paper leans on
-
[1]
URL: " 'urlintro :=
ENTRY address author booktitle chapter edition editor howpublished institution journal key month note number organization pages publisher school series title type volume year eprint doi pubmed url lastchecked label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block STRINGS urlintro eprinturl eprintpr...
-
[2]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION word.in bbl.in capitalize " " * FUNCT...
-
[3]
Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. 2023. Gpt-4 technical report. arXiv preprint arXiv:2303.08774
arXiv 2023
-
[4]
Pranjal Aggarwal and Sean Welleck. 2025. L1: Controlling how long a reasoning model thinks with reinforcement learning. arXiv preprint arXiv:2503.04697
arXiv 2025
-
[5]
Arash Ahmadian, Chris Cremer, Matthias Gall \'e , Marzieh Fadaee, Julia Kreutzer, Olivier Pietquin, Ahmet \"U st \"u n, and Sara Hooker. 2024. Back to basics: Revisiting reinforce style optimization for learning from human feedback in llms. arXiv preprint arXiv:2402.14740
arXiv 2024
-
[6]
Daman Arora and Andrea Zanette. 2025. Training language models to reason efficiently. arXiv preprint arXiv:2502.04463
arXiv 2025
-
[7]
Haolin Chen, Yihao Feng, Zuxin Liu, Weiran Yao, Akshara Prabhakar, Shelby Heinecke, Ricky Ho, Phil Mui, Silvio Savarese, Caiming Xiong, et al. 2024. Language models are hidden reasoners: Unlocking latent reasoning capabilities via self-rewarding. arXiv preprint arXiv:2411.04282
arXiv 2024
-
[8]
Karl Cobbe, Vineet Kosaraju, Mohammad Bavarian, Mark Chen, Heewoo Jun, Lukasz Kaiser, Matthias Plappert, Jerry Tworek, Jacob Hilton, Reiichiro Nakano, et al. 2021. Training verifiers to solve math word problems. arXiv preprint arXiv:2110.14168
arXiv 2021
Show all 35 references
-
[9]
Mengru Ding, Hanmeng Liu, Zhizhang Fu, Jian Song, Wenbo Xie, and Yue Zhang. 2024. Break the chain: Large language models can be shortcut reasoners. arXiv preprint arXiv:2406.06580
2024 arXiv
-
[10]
Xidong Feng, Ziyu Wan, Muning Wen, Stephen Marcus McAleer, Ying Wen, Weinan Zhang, and Jun Wang. 2023. Alphazero-like tree-search can guide large language model decoding and training. arXiv preprint arXiv:2309.17179
2023 arXiv
-
[11]
Daya Guo, Dejian Yang, Haowei Zhang, Junxiao Song, Ruoyu Zhang, Runxin Xu, Qihao Zhu, Shirong Ma, Peiyi Wang, Xiao Bi, et al. 2025. Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning. arXiv preprint arXiv:2501.12948
2025 arXiv
-
[12]
Tingxu Han, Zhenting Wang, Chunrong Fang, Shiyu Zhao, Shiqing Ma, and Zhenyu Chen. 2024. Token-budget-aware llm reasoning. arXiv preprint arXiv:2412.18547
2024 arXiv
-
[13]
Binyuan Hui, Jian Yang, Zeyu Cui, Jiaxi Yang, Dayiheng Liu, Lei Zhang, Tianyu Liu, Jiajun Zhang, Bowen Yu, Keming Lu, et al. 2024. Qwen2. 5-coder technical report. arXiv preprint arXiv:2409.12186
2024 arXiv
-
[14]
Daniel Kahneman. 2011. Thinking, fast and slow. macmillan
2011
-
[15]
Ayeong Lee, Ethan Che, and Tianyi Peng. 2025. How well do llms compress their own chain-of-thought? a token complexity approach. arXiv preprint arXiv:2503.01141
2025 arXiv
-
[16]
Hunter Lightman, Vineet Kosaraju, Yuri Burda, Harrison Edwards, Bowen Baker, Teddy Lee, Jan Leike, John Schulman, Ilya Sutskever, and Karl Cobbe. 2023. Let's verify step by step. In The Twelfth International Conference on Learning Representations
2023
-
[17]
Tengxiao Liu, Qipeng Guo, Xiangkun Hu, Cheng Jiayang, Yue Zhang, Xipeng Qiu, and Zheng Zhang. 2024. Can language models learn to skip steps? arXiv preprint arXiv:2411.01855
2024 arXiv
-
[18]
Haotian Luo, Li Shen, Haiying He, Yibo Wang, Shiwei Liu, Wei Li, Naiqiang Tan, Xiaochun Cao, and Dacheng Tao. 2025. O1-pruner: Length-harmonizing fine-tuning for o1-like reasoning pruning. arXiv preprint arXiv:2501.12570
2025 arXiv
-
[19]
Xinyin Ma, Guangnian Wan, Runpeng Yu, Gongfan Fang, and Xinchao Wang. 2025. Cot-valve: Length-compressible chain-of-thought tuning. arXiv preprint arXiv:2502.09601
2025 arXiv
-
[20]
Self-training elicits concise reasoning in large language models, 2025
Tergel Munkhbat, Namgyu Ho, Seo Hyun Kim, Yongjin Yang, Yujin Kim, and Se-Young Yun. Self-training elicits concise reasoning in large language models, 2025. URL https://arxiv. org/abs/2502.20122
2025 arXiv
-
[21]
Maxwell Nye, Anders Johan Andreassen, Guy Gur-Ari, Henryk Michalewski, Jacob Austin, David Bieber, David Dohan, Aitor Lewkowycz, Maarten Bosma, David Luan, et al. 2021. Show your work: Scratchpads for intermediate computation with language models
2021
-
[22]
Ethan Perez, Patrick Lewis, Wen-tau Yih, Kyunghyun Cho, and Douwe Kiela. 2020. https://doi.org/10.18653/v1/2020.emnlp-main.713 Unsupervised question decomposition for question answering . In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing...
2020 doi
-
[23]
Yuxiao Qu, Matthew YR Yang, Amrith Setlur, Lewis Tunstall, Edward Emanuel Beeching, Ruslan Salakhutdinov, and Aviral Kumar. 2025. Optimizing test-time compute via meta reinforcement fine-tuning. arXiv preprint arXiv:2503.07572
2025 arXiv
-
[24]
John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. 2017. Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347
2017 arXiv
-
[25]
Yang Sui, Yu-Neng Chuang, Guanchu Wang, Jiamu Zhang, Tianyi Zhang, Jiayi Yuan, Hongyi Liu, Andrew Wen, Shaochen Zhong, Hanjie Chen, et al. 2025. Stop overthinking: A survey on efficient reasoning for large language models. arXiv preprint arXiv:2503.16419
2025 arXiv
-
[26]
Mirac Suzgun, Nathan Scales, Nathanael Sch \"a rli, Sebastian Gehrmann, Yi Tay, Hyung Won Chung, Aakanksha Chowdhery, Quoc V Le, Ed H Chi, Denny Zhou, et al. 2022. Challenging big-bench tasks and whether chain-of-thought can solve them. arXiv preprint arXiv:2210.09261
2022 arXiv
-
[27]
Kimi Team, Angang Du, Bofei Gao, Bowei Xing, Changjiu Jiang, Cheng Chen, Cheng Li, Chenjun Xiao, Chenzhuang Du, Chonghua Liao, et al. 2025. Kimi k1. 5: Scaling reinforcement learning with llms. arXiv preprint arXiv:2501.12599
2025 arXiv
-
[28]
Qwen Team. 2024. https://qwenlm.github.io/blog/qwq-32b-preview/ Qwq: Reflect deeply on the boundaries of the unknown
2024
-
[29]
Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Fei Xia, Ed Chi, Quoc V Le, Denny Zhou, et al. 2022. Chain-of-thought prompting elicits reasoning in large language models. Advances in neural information processing systems, 35:24824--24837
2022
-
[30]
Heming Xia, Yongqi Li, Chak Tou Leong, Wenjie Wang, and Wenjie Li. 2025. Tokenskip: Controllable chain-of-thought compression in llms. arXiv preprint arXiv:2502.12067
2025
-
[31]
Wenyi Xiao, Leilei Gan, Weilong Dai, Wanggui He, Ziwei Huang, Haoyuan Li, Fangxun Shu, Zhelun Yu, Peng Zhang, Hao Jiang, et al. 2025. Fast-slow thinking for large vision-language model reasoning. arXiv preprint arXiv:2504.18458
2025
-
[32]
Silei Xu, Wenhao Xie, Lingxiao Zhao, and Pengcheng He. 2025. Chain of draft: Thinking faster by writing less. arXiv preprint arXiv:2502.18600
2025 arXiv
-
[33]
Shunyu Yao, Dian Yu, Jeffrey Zhao, Izhak Shafran, Tom Griffiths, Yuan Cao, and Karthik Narasimhan. 2023. Tree of thoughts: Deliberate problem solving with large language models. Advances in neural information processing systems, 36:11809--11822
2023
-
[34]
Yixin Ye, Zhen Huang, Yang Xiao, Ethan Chern, Shijie Xia, and Pengfei Liu. 2025. Limo: Less is more for reasoning. arXiv preprint arXiv:2502.03387
2025 arXiv
-
[35]
Denny Zhou, Nathanael Sch \"a rli, Le Hou, Jason Wei, Nathan Scales, Xuezhi Wang, Dale Schuurmans, Claire Cui, Olivier Bousquet, Quoc Le, et al. 2022. Least-to-most prompting enables complex reasoning in large language models. arXiv preprint arXiv:2205.10625
2022 arXiv
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.