REVIEW 4 major objections 4 minor 5 cited by
AlphaOne: Reasoning Models Thinking Slow and Fast at Test Time
T0 review · 4 major / 4 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read One training-free schedule makes reasoning models think slow, then fast, and solve more problems.
desk verdict AlphaOne's scheduling idea is real and well-ablated, but the paper's universal-dominance claim is contradicted by its own Table 1 and needs correction before publication. 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 central object is the $\alpha$ moment: the generation timestamp at which the number of generated thinking tokens reaches $\alpha N_{\mathrm{think}}$, where $N_{\mathrm{think}}$ is the model's average natural thinking-token length. Before that moment, $\alpha$1 models slow-thinking activation as $\mathrm{Bernoulli}(p_{\mathrm{wait}})$ with $p_{\mathrm{wait}} = S(t)$ from a user-specified schedule; the paper adopts linear annealing, starting slow and decaying to zero. After the $\alpha$ moment, $\alpha$1 deterministically replaces any “wait” transition token with `</think>`, terminating slow thinking and curbing the “slow thinking inertia” that would otherwise keep the model deliberating. This two-phase mechanism is what allows sparse and dense modulation to be unified: a constant near-zero $p_{\mathrm{wait}}$ with $\alpha > 1$ approximates s1, while $\alpha = 1$ and $p_{\mathrm{wait}} = 0$ recovers vanilla generation.
What would settle it
Run $\alpha$1 on a benchmark split where the 10 calibration questions have unusually short thinking lengths, then evaluate on a held-out split with much longer reasoning chains; if the $\alpha$ moment fires too early and accuracy falls below the vanilla model, the 10-sample estimate is the load-bearing element rather than the schedule itself.
Extended reading notes
Core claim
The paper's central discovery is that reasoning models solve problems better when slow thinking is front-loaded: a linearly annealed Bernoulli process that frequently appends “wait” after structural delimiters during the first $\alpha$-scaled portion of the thinking phase, followed by replacing every further “wait” with `</think>`, improves accuracy over both the base model and over monotonic slow-thinking increase (s1) and monotonic thinking-budget reduction (Chain of Draft). The authors report an average accuracy boost of +6.15% for the 1.5B model with roughly 14% fewer generated tokens, and claim $\alpha$1's average gains exceed Chain of Draft by +3.12 percentage points and s1 by +4.62 percentage points across all models and benchmarks. They also report that “slow thinking first, then fast thinking” is the better scheduling strategy for LRMs, in contrast to the human pattern of fast-then-slow deliberation.
Load-bearing premise
The load-bearing premise is that the average thinking-phase token length $N_{\mathrm{think}}$, estimated from only 10 randomly sampled test questions per benchmark, is representative enough that the $\alpha$ moment lands correctly on the real questions; if those samples misrepresent the actual questions or the distribution shifts, the schedule misfires and the gains could vanish.
Editorial extensions
If this is right
- On the paper's evidence, the tested o1-style reasoning models can be improved without training by choosing $\alpha$ and a slow-to-fast schedule, which changes what practitioners can do when test-time compute is limited.
- Because $\alpha$1 reports higher accuracy with fewer tokens than the monotonic baselines, token budget and reasoning depth are not simply traded off; the right schedule can improve both at once.
- The existence of an optimal $\alpha$ (around 1.4 in the reported settings) means that blindly scaling thinking time is suboptimal; there is a sweet spot that depends on model and benchmark.
- The framework unifies s1 and Chain of Draft as special cases, so observations about those methods can be reinterpreted as points on a shared schedule family.
Reading between the lines
- Because the method needs only the average thinking length, not per-question difficulty, a natural extension is to make $\alpha$ or $N_{\mathrm{think}}$ adaptive per query based on confidence or difficulty; the paper does not test this.
- The dependence on “wait” as the transition token suggests the mechanism might generalize to any model-specific trigger; if it does, replacing “wait” with an arbitrary token should still help, which is a testable prediction.
- Since $\alpha$1 is training-free and parallel scaling is non-conflicting, combining it with best-of-N or self-consistency could compound gains; the paper lists this as a future direction but does not demonstrate it.
- The reported contrast with humans (slow-first for LRMs versus fast-first for people) is an observation about current model training rather than an immutable law; future models that learn to self-schedule might make an external $\alpha$ unnecessary.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes AlphaOne (α1), a training-free test-time decoding strategy for large reasoning models (LRMs). The method defines an "α moment" at a token budget of α times the average thinking-phase length; before this moment it stochastically inserts the slow-thinking transition token "wait" after "\n\n" according to an annealed Bernoulli schedule, and after this moment it replaces "wait" with "</think>" to force a shift to fast reasoning. Experiments on three LRMs (1.5B, 7B, 32B) across six benchmarks (AIME24, AMC23, Minerva, MATH500, LiveCodeBench, OlympiadBench) compare α1 against the base model, s1, and Chain-of-Draft in terms of Pass@1 and token count. The paper claims that α1 consistently outperforms all baselines on all benchmarks, and distills the insight that "slow thinking first, then fast thinking" is the best schedule for LRMs.
Significance. The core idea of a parameterized, dense slow-to-fast reasoning schedule with a deterministic cutoff is simple, novel, and potentially useful for efficient LRM inference. The paper includes valuable ablations (scheduling functions, α scaling, wait-token frequency, post-α modulation, and transitioning-token choice) and reports per-benchmark N_think values, which aids reproducibility. If the empirical claims survive correction, the method offers a cheap, training-free way to improve reasoning accuracy while reducing token use on many benchmarks. However, the headline dominance claim is contradicted by the paper's own Table 1, and the evaluation protocol uses test-set information to set key parameters and reports no uncertainty quantification. These issues materially weaken the current evidence, although they are fixable within the manuscript's scope.
major comments (4)
- [§4.2, Table 1] This is the central empirical claim of the paper, so the overstatement is load-bearing and must be fixed.
- [§4.1, Table 3, App. A.2] The concern is not that the framework is circular in a formal sense; rather, the empirical evaluation is not fully out-of-sample.
- [§4.2] The absence of uncertainty quantification is particularly problematic for the cells where α1 trails by a small margin, since those margins are comparable to the margins it leads by elsewhere.
- [§B.1] This is a presentation issue but it affects reproducibility of the ablation claim.
minor comments (4)
- [Eq. (2) and Fig. 6/9] The REP metric's normalization is described only as "dividing the current thinking phase token length by the maximum token length," but the maximum is not specified (presumably 8192). It would help to state the denominator explicitly and to note that REP is sensitive to token counts near zero, which may make the metric less robust for methods with very short thinking phases.
- [§3.3] The term "slow thinking inertia" is used as an explanatory concept but is never operationalized; consider defining it more concretely (e.g., by the measured probability of generating "wait" or "</think>" before and after the α moment). The post-α ablation in Table 2 provides empirical support, but a quantitative definition would make the mechanism clearer.
- [§4.1] The sentence "We set α as 1.4" appears in the implementations paragraph, but Figure 5 later shows that the optimal α varies by model and benchmark and can be as high as ~5.6. Clarify whether α=1.4 is the value used for all Table 1 results or only the default, and whether any per-benchmark tuning was performed. The current presentation is ambiguous about this key parameter.
- [Limitations] The Limitations section honestly acknowledges the need for test questions to estimate N_think, which is good. However, the same limitation is not mentioned in the abstract or §4.2, where the method is presented as universally applicable; please make the conditions of applicability explicit in the main text.
Circularity Check
No significant circularity: AlphaOne's framework is an empirical construction whose test-set dependence and dominance overclaim are validity issues, not self-referential derivation.
full rationale
The paper's central machinery is definitional and empirical rather than derived: the α moment is defined as the token position reaching α·N_think (Section 3.1), the pre-α slow-thinking schedule is defined as a Bernoulli process with p_wait := S(t) (Section 3.2), and the post-α behavior is defined as replacing 'wait' with '</think>' (Section 3.3). No equation reduces a reported result to its own inputs by construction. The claim that α1 'unifies and generalizes' s1 and CoD is presented as an explicit design reduction, not as a prediction derived from first principles. The empirical findings (linear anneal is best, post-α modulation helps, slow-then-fast is effective) are comparisons between ablations, not consequences of the definitions. The main validity concerns are not circularity: N_think is estimated from 10 test questions and α is set to 1.4 after observing scaling curves on the same benchmarks, and Section 4.2's statement that α1 'consistently yields a higher problem-solving accuracy than all baseline methods across all models and benchmarks' is contradicted by Table 1 (e.g., QwQ-32B on Minerva, MATH500, and Olympiad; DeepSeek-R1-Distill-7B on Minerva and MATH500). The paper's Limitations section itself acknowledges the test-data dependence: 'This paper obtains it by first running LRMs on 10 random samples, which requires marginal cost. However, in case that no test questions are available, ALPHAONE can only rely on an empirical thinking phase length that may be suboptimal.' This is a leakage and robustness limitation, not an equation-level circularity. Self-citations to co-authored prior work appear only in future-work and multimodal context, and are not load-bearing for the α1 method. Therefore, under the stated criteria, the derivation is self-contained and no circular step can be exhibited.
Assumptions & free parameters
free parameters (4)
- alpha =
1.4
- N_think (average thinking phase token length) =
per-benchmark values in Table 3, e.g., 4130 for AIME24 with 1.5B model
- scheduling function S(t) =
linear annealing: S(t) = -1/T_m * t + 1
- gamma (exponential anneal) =
0.3
assumptions (3)
- domain assumption Assumption 1: The reasoning velocity of slow thinking is smaller than that of fast thinking.
- domain assumption Appending ' wait' after the structural delimiter '\n\n' activates slow thinking.
- domain assumption Replacing ' wait' with '</think>' after the α moment deterministically terminates slow thinking and switches to fast reasoning.
invented entities (2)
-
α moment
-
Slow thinking inertia
Cite this review
Pith. "Pith review of AlphaOne: Reasoning Models Thinking Slow and Fast at Test Time." pith.science (2026). https://pith.science/paper/7OXKREG2
@misc{pith2026250524863,
author = {Pith},
title = {Pith review of: AlphaOne: Reasoning Models Thinking Slow and Fast at Test Time},
year = {2026},
howpublished = {\url{https://pith.science/paper/7OXKREG2}},
note = {Machine review of arXiv:2505.24863}
}
abstract
This paper presents AlphaOne ($\alpha$1), a universal framework for modulating reasoning progress in large reasoning models (LRMs) at test time. $\alpha$1 first introduces $\alpha$ moment, which represents the scaled thinking phase with a universal parameter $\alpha$. Within this scaled pre-$\alpha$ moment phase, it dynamically schedules slow thinking transitions by modeling the insertion of reasoning transition tokens as a Bernoulli stochastic process. After the $\alpha$ moment, $\alpha$1 deterministically terminates slow thinking with the end-of-thinking token, thereby fostering fast reasoning and efficient answer generation. This approach unifies and generalizes existing monotonic scaling methods by enabling flexible and dense slow-to-fast reasoning modulation. Extensive empirical studies on various challenging benchmarks across mathematical, coding, and scientific domains demonstrate $\alpha$1's superior reasoning capability and efficiency. Project page: https://alphaone-project.github.io/
Figures
Figures from the paper (5 more)
Forward citations
Cited by 5 Pith papers
-
Risky Business: Measuring The Faithfulness-Safety Tension
Faithful reasoning and safety pull in opposite directions in current reasoning models, and the two behaviors are controlled by anti-correlated internal vectors that can be steered independently.
-
Adaptive Termination for Multi-round Parallel Reasoning: An Universal Semantic Entropy-Guided Framework
A semantic entropy-guided stopping rule for multi-round parallel LLM reasoning improves accuracy while reducing inference steps on five benchmarks.
-
Xolver: Multi-Agent Reasoning with Holistic Experience Learning Just Like an Olympiad Team
A training-free multi-agent framework with episodic and shared memory reports new best results on GSM8K, AIME 2024/2025, Math-500, and LiveCodeBench.
-
Reinforcement Learning Meets Large Language Models: A Survey of Advancements and Applications Across the LLM Lifecycle
A survey that maps reinforcement learning methods, datasets, benchmarks, and open-source tools across the full training lifecycle of large language models, focusing on verifiable-reward reasoning.
-
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]
online" 'onlinestring :=
ENTRY address archivePrefix author booktitle chapter edition editor eid eprint eprinttype howpublished institution journal key month note number organization pages publisher school series title type volume year doi pubmed url lastchecked label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block STRING...
-
[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]
Hewett, Mojan Javaheripi, Piero Kauffmann, James R
Marah Abdin, Jyoti Aneja, Harkirat Behl, Sébastien Bubeck, Ronen Eldan, Suriya Gunasekar, Michael Harrison, Russell J. Hewett, Mojan Javaheripi, Piero Kauffmann, James R. Lee, Yin Tat Lee, Yuanzhi Li, Weishung Liu, Caio C. T. Mendes, Anh Nguyen, Eric Price, Gustavo de Rosa, Olli Saarikivi, and 8 others. 2024. https://arxiv.org/abs/2412.08905 Phi-4 technic...
arXiv 2024
-
[4]
AI-MO . 2024. https://huggingface.co/datasets/AI-MO/aimo-validation-amc AIMO Validation Dataset - AMC . https://huggingface.co/datasets/AI-MO/aimo-validation-amc. Accessed: 2025-05-19
2024
-
[5]
Menick, Sebastian Borgeaud, and 8 others
Jean - Baptiste Alayrac, Jeff Donahue, Pauline Luc, Antoine Miech, Iain Barr, Yana Hasson, Karel Lenc, Arthur Mensch, Katherine Millican, Malcolm Reynolds, Roman Ring, Eliza Rutherford, Serkan Cabi, Tengda Han, Zhitao Gong, Sina Samangooei, Marianne Monteiro, Jacob L. Menick, Sebastian Borgeaud, and 8 others. 2022. http://papers.nips.cc/paper\_files/paper...
2022
-
[6]
Afra Amini, Tim Vieira, Elliott Ash, and Ryan Cotterell. 2025. https://openreview.net/forum?id=W9FZEQj3vv Variational best-of-n alignment . In The Thirteenth International Conference on Learning Representations, ICLR 2025, Singapore, April 24-28, 2025 . OpenReview.net
2025
-
[7]
Maciej Besta, Nils Blach, Ales Kubicek, Robert Gerstenberger, Michal Podstawski, Lukas Gianinazzi, Joanna Gajda, Tomasz Lehmann, Hubert Niewiadomski, Piotr Nyczyk, and Torsten Hoefler. 2024. https://doi.org/10.1609/AAAI.V38I16.29720 Graph of thoughts: Solving elaborate problems with large language models . In Thirty-Eighth AAAI Conference on Artificial In...
-
[8]
Hudson, Ehsan Adeli, Russ Altman, Simran Arora, Sydney von Arx, Michael S
Rishi Bommasani, Drew A. Hudson, Ehsan Adeli, Russ Altman, Simran Arora, Sydney von Arx, Michael S. Bernstein, Jeannette Bohg, Antoine Bosselut, Emma Brunskill, Erik Brynjolfsson, Shyamal Buch, Dallas Card, Rodrigo Castellon, Niladri S. Chatterji, Annie S. Chen, Kathleen Creel, Jared Quincy Davis, Dorottya Demszky, and 34 others. 2021. https://arxiv.org/a...
arXiv 2021
Show all 86 references
-
[9]
Guoxin Chen, Minpeng Liao, Chengxi Li, and Kai Fan. 2024 a . http://papers.nips.cc/paper\_files/paper/2024/hash/30dfe47a3ccbee68cffa0c19ccb1bc00-Abstract-Conference.html Alphamath almost zero: Process supervision without process . In Advances in Neural Information Processing S...
2024
- [10]
-
[11]
Xinyun Chen, Maxwell Lin, Nathanael Sch \" a rli, and Denny Zhou. 2024 c . https://openreview.net/forum?id=KuPixIqPiq Teaching large language models to self-debug . In The Twelfth International Conference on Learning Representations, ICLR 2024, Vienna, Austria, May 7-11, 2024 ...
2024
-
[12]
Yinlam Chow, Guy Tennenholtz, Izzeddin Gur, Vincent Zhuang, Bo Dai, Aviral Kumar, Rishabh Agarwal, Sridhar Thiagarajan, Craig Boutilier, and Aleksandra Faust. 2025. https://openreview.net/forum?id=77gQUdQhE7 Inference-aware fine-tuning for best-of-n sampling in large language ...
2025
-
[13]
Christiano, Jan Leike, Tom B
Paul F. Christiano, Jan Leike, Tom B. Brown, Miljan Martic, Shane Legg, and Dario Amodei. 2017. https://proceedings.neurips.cc/paper/2017/hash/d5e2c0adad503c91f91df240d0cd4e49-Abstract.html Deep reinforcement learning from human preferences . In Advances in Neural Information ...
2017
-
[14]
Karl Cobbe, Vineet Kosaraju, Mohammad Bavarian, Mark Chen, Heewoo Jun, Lukasz Kaiser, Matthias Plappert, Jerry Tworek, Jacob Hilton, Reiichiro Nakano, Christopher Hesse, and John Schulman. 2021. https://arxiv.org/abs/2110.14168 Training verifiers to solve math word problems . ...
2021 arXiv
- [15]
-
[16]
Runpei Dong, Chunrui Han, Yuang Peng, Zekun Qi, Zheng Ge, Jinrong Yang, Liang Zhao, Jianjian Sun, Hongyu Zhou, Haoran Wei, Xiangwen Kong, Xiangyu Zhang, Kaisheng Ma, and Li Yi. 2024. https://openreview.net/forum?id=y01KGvd9Bw Dream LLM : Synergistic multimodal comprehension an...
2024
-
[17]
Lizhe Fang, Yifei Wang, Zhaoyang Liu, Chenheng Zhang, Stefanie Jegelka, Jinyang Gao, Bolin Ding, and Yisen Wang. 2025. https://openreview.net/forum?id=fL4qWkSmtM What is wrong with perplexity for long-context language modeling? In The Thirteenth International Conference on Lea...
2025
-
[18]
Li Fei-Fei. 2023. https://www.google.com/books/edition/The_Worlds_I_See/6BmhEAAAQBAJ?hl=en&gbpv=0 The Worlds I See: Curiosity, Exploration, and Discovery at the Dawn of AI . Flatiron books: a moment of lift book
2023
-
[19]
Yichao Fu, Junda Chen, Yonghao Zhuang, Zheyu Fu, Ion Stoica, and Hao Zhang. 2025. https://openreview.net/pdf?id=wpK4IMJfdX Reasoning without self-doubt: More efficient chain-of-thought through certainty probing . In ICLR 2025 Workshop on Foundation Models in the Wild
2025
- [20]
-
[21]
Zhibin Gou, Zhihong Shao, Yeyun Gong, Yelong Shen, Yujiu Yang, Nan Duan, and Weizhu Chen. 2024. https://openreview.net/forum?id=Sx038qxjek CRITIC: large language models can self-correct with tool-interactive critiquing . In The Twelfth International Conference on Learning Repr...
2024
-
[22]
Lin Gui, Cristina Garbacea, and Victor Veitch. 2024. http://papers.nips.cc/paper\_files/paper/2024/hash/056521a35eacd9d2127b66a7d3c499c5-Abstract-Conference.html Bonbon alignment for large language models and the sweetness of best-of-n sampling . In Advances in Neural Informat...
2024
-
[23]
Shibo Hao, Yi Gu, Haodi Ma, Joshua Jiahua Hong, Zhen Wang, Daisy Zhe Wang, and Zhiting Hu. 2023. https://doi.org/10.18653/V1/2023.EMNLP-MAIN.507 Reasoning with language model is planning with world model . In Proceedings of the 2023 Conference on Empirical Methods in Natural L...
2023 doi
- [24]
-
[25]
Chaoqun He, Renjie Luo, Yuzhuo Bai, Shengding Hu, Zhen Leng Thai, Junhao Shen, Jinyi Hu, Xu Han, Yujie Huang, Yuxiang Zhang, Jie Liu, Lei Qi, Zhiyuan Liu, and Maosong Sun. 2024. https://doi.org/10.18653/V1/2024.ACL-LONG.211 Olympiadbench: A challenging benchmark for promoting ...
2024 doi
-
[26]
Jie Huang, Xinyun Chen, Swaroop Mishra, Huaixiu Steven Zheng, Adams Wei Yu, Xinying Song, and Denny Zhou. 2024 a . https://openreview.net/forum?id=IkmD3fKBPQ Large language models cannot self-correct reasoning yet . In The Twelfth International Conference on Learning Represent...
2024
- [27]
- [28]
-
[29]
Naman Jain, King Han, Alex Gu, Wen - Ding Li, Fanjia Yan, Tianjun Zhang, Sida Wang, Armando Solar - Lezama, Koushik Sen, and Ion Stoica. 2025. https://openreview.net/forum?id=chfJJYC3iL Livecodebench: Holistic and contamination free evaluation of large language models for code...
2025
-
[30]
Dongzhi Jiang, Ziyu Guo, Renrui Zhang, Zhuofan Zong, Hao Li, Le Zhuo, Shilin Yan, Pheng-Ann Heng, and Hongsheng Li. 2025. https://arxiv.org/abs/2505.00703 T2i-r1: Reinforcing image generation with collaborative semantic-level and token-level cot . arXiv preprint arXiv:2505.00703
2025 arXiv
-
[31]
Daniel Kahneman. 2011. https://www.google.com/books/edition/_/SHvzzuCnuv8C?hl=en Thinking, fast and slow . macmillan
2011
-
[32]
Ryo Kamoi, Yusen Zhang, Nan Zhang, Jiawei Han, and Rui Zhang. 2024. https://doi.org/10.1162/TACL\_A\_00713 When can llms Actually correct their own mistakes? A critical survey of self-correction of llms . Trans. Assoc. Comput. Linguistics, 12:1417--1440
2024 doi
-
[33]
Zhewei Kang, Xuandong Zhao, and Dawn Song. 2025. https://doi.org/10.48550/ARXIV.2502.18581 Scalable best-of-n selection for large language models via self-certainty . CoRR, abs/2502.18581
2025 doi
-
[34]
Wouter Kool, Herke van Hoof, and Max Welling. 2019. http://proceedings.mlr.press/v97/kool19a.html Stochastic beams and where to find them: The gumbel-top-k trick for sampling sequences without replacement . In Proceedings of the 36th International Conference on Machine Learnin...
2019
-
[35]
Seongyun Lee, Sue Hyun Park, Yongrae Jo, and Minjoon Seo. 2024. https://doi.org/10.18653/V1/2024.NAACL-LONG.23 Volcano: Mitigating multimodal hallucination through self-feedback guided revision . In Proceedings of the 2024 Conference of the North American Chapter of the Associ...
2024 doi
-
[36]
Ramasesh, Ambrose Slone, Cem Anil, Imanol Schlag, Theo Gutman - Solo, Yuhuai Wu, Behnam Neyshabur, Guy Gur - Ari, and Vedant Misra
Aitor Lewkowycz, Anders Andreassen, David Dohan, Ethan Dyer, Henryk Michalewski, Vinay V. Ramasesh, Ambrose Slone, Cem Anil, Imanol Schlag, Theo Gutman - Solo, Yuhuai Wu, Behnam Neyshabur, Guy Gur - Ari, and Vedant Misra. 2022. http://papers.nips.cc/paper\_files/paper/2022/has...
2022
- [37]
-
[38]
Hunter Lightman, Vineet Kosaraju, Yuri Burda, Harrison Edwards, Bowen Baker, Teddy Lee, Jan Leike, John Schulman, Ilya Sutskever, and Karl Cobbe. 2024. https://openreview.net/forum?id=v8L0pN6EOi Let's verify step by step . In The Twelfth International Conference on Learning Re...
2024
-
[39]
Haotian Liu, Chunyuan Li, Qingyang Wu, and Yong Jae Lee. 2023. http://papers.nips.cc/paper\_files/paper/2023/hash/6dcf277ea32ce3288914faf369fe6de0-Abstract-Conference.html Visual instruction tuning . In Advances in Neural Information Processing Systems 36: Annual Conference on...
2023
-
[40]
Wenjie Ma, Jingxuan He, Charlie Snell, Tyler Griggs, Sewon Min, and Matei Zaharia. 2025. https://arxiv.org/abs/2504.09858 Reasoning models can be effective without thinking . arXiv preprint arXiv:2504.09858
2025 arXiv
-
[41]
Aman Madaan, Niket Tandon, Prakhar Gupta, Skyler Hallinan, Luyu Gao, Sarah Wiegreffe, Uri Alon, Nouha Dziri, Shrimai Prabhumoye, Yiming Yang, Shashank Gupta, Bodhisattwa Prasad Majumder, Katherine Hermann, Sean Welleck, Amir Yazdanbakhsh, and Peter Clark. 2023. http://papers.n...
2023
-
[42]
Mathematical Association of America . 2024. https://maa.org/math-competitions/american-invitational-mathematics-examination-aime American Invitational Mathematics Examination -- AIME . American Invitational Mathematics Examination -- AIME 2024. Accessed: 2025-05-15
2024
-
[43]
Cand \` e s, and Tatsunori Hashimoto
Niklas Muennighoff, Zitong Yang, Weijia Shi, Xiang Lisa Li, Li Fei - Fei, Hannaneh Hajishirzi, Luke Zettlemoyer, Percy Liang, Emmanuel J. Cand \` e s, and Tatsunori Hashimoto. 2025. https://doi.org/10.48550/ARXIV.2501.19393 s1: Simple test-time scaling . CoRR, abs/2501.19393
-
[44]
OpenAI. 2024. https://openai.com/index/gpt-4o-and-more-tools-to-chatgpt-free/ Introducing gpt-4o and more tools to chatgpt free users
2024
-
[45]
OpenAI . 2025. https://openai.com/index/thinking-with-images/ Thinking with images . Accessed: 2025-05-25
2025
-
[46]
Xiao Pu, Michael Saxon, Wenyue Hua, and William Yang Wang. 2025. https://arxiv.org/abs/2504.13367 Thoughtterminator: Benchmarking, calibrating, and mitigating overthinking in reasoning models . arXiv preprint arXiv:2504.13367
2025 arXiv
-
[47]
Zekun Qi, Runpei Dong, Shaochen Zhang, Haoran Geng, Chunrui Han, Zheng Ge, Li Yi, and Kaisheng Ma. 2024. https://doi.org/10.1007/978-3-031-72775-7\_13 Shapellm: Universal 3d object understanding for embodied interaction . In Computer Vision - ECCV 2024 - 18th European Conferen...
2024 doi
-
[48]
Zekun Qi, Wenyao Zhang, Yufei Ding, Runpei Dong, Xinqiang Yu, Jingwen Li, Lingyun Xu, Baoyu Li, Xialin He, Guofan Fan, Jiazhao Zhang, Jiawei He, Jiayuan Gu, Xin Jin, Kaisheng Ma, Zhizheng Zhang, He Wang, and Li Yi. 2025. https://doi.org/10.48550/ARXIV.2502.13143 Sofar: Languag...
2025 doi
- [49]
- [50]
-
[51]
Qwen Team . 2025. Preview of qwen qwen1.5-32b. https://qwenlm.github.io/blog/qwq-32b-preview/. Accessed: 2025-03-20
2025
-
[52]
John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. 2017. https://arxiv.org/abs/1707.06347 Proximal policy optimization algorithms . CoRR, abs/1707.06347
2017 arXiv
-
[53]
Pier Giuseppe Sessa, Robert Dadashi - Tazehozi, L \' e onard Hussenot, Johan Ferret, Nino Vieillard, Alexandre Ram \' e , Bobak Shahriari, Sarah Perrin, Abram L. Friesen, Geoffrey Cideron, Sertan Girgin, Piotr Stanczyk, Andrea Michi, Danila Sinopalnikov, Sabela Ramos Garea, Am...
2025
-
[54]
Hao Shao, Shengju Qian, Han Xiao, Guanglu Song, Zhuofan Zong, Letian Wang, Yu Liu, and Hongsheng Li. 2024 a . https://openreview.net/forum?id=aXeiCbMFFJ Visual cot: Advancing multi-modal language models with a comprehensive dataset and benchmark for chain-of-thought reasoning ...
2024
- [55]
-
[56]
Jinyan Su, Jennifer Healey, Preslav Nakov, and Claire Cardie. 2025. https://arxiv.org/abs/2505.00127 Between underthinking and overthinking: An empirical study of reasoning length and correctness in llms . arXiv preprint arXiv:2505.00127
2025 arXiv
- [57]
-
[58]
Hanshi Sun, Momin Haider, Ruiqi Zhang, Huitao Yang, Jiahao Qiu, Ming Yin, Mengdi Wang, Peter Bartlett, and Andrea Zanette. 2024. https://openreview.net/forum?id=348hfcprUs Fast best-of-n decoding via speculative rejection . In The Thirty-eighth Annual Conference on Neural Info...
2024
- [59]
-
[60]
Francis Song, Noah Y
Jonathan Uesato, Nate Kushman, Ramana Kumar, H. Francis Song, Noah Y. Siegel, Lisa Wang, Antonia Creswell, Geoffrey Irving, and Irina Higgins. 2022. https://doi.org/10.48550/ARXIV.2211.14275 Solving math word problems with process- and outcome-based feedback . CoRR, abs/2211.14275
- [61]
-
[62]
Ziyu Wan, Xidong Feng, Muning Wen, Stephen Marcus McAleer, Ying Wen, Weinan Zhang, and Jun Wang. 2024 b . https://openreview.net/forum?id=C4OpREezgj Alphazero-like tree-search can guide large language model decoding and training . In Forty-first International Conference on Mac...
2024
- [63]
-
[64]
Le, Ed H
Xuezhi Wang, Jason Wei, Dale Schuurmans, Quoc V. Le, Ed H. Chi, Sharan Narang, Aakanksha Chowdhery, and Denny Zhou. 2023. https://openreview.net/forum?id=1PL1NIMMrw Self-consistency improves chain of thought reasoning in language models . In The Eleventh International Conferen...
2023
- [65]
- [66]
-
[67]
Chi, Quoc V
Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Brian Ichter, Fei Xia, Ed H. Chi, Quoc V. Le, and Denny Zhou. 2022. http://papers.nips.cc/paper\_files/paper/2022/hash/9d5609613524ecf4f15af0f7b31abca4-Abstract-Conference.html Chain-of-thought prompting elicits reasoning...
2022
- [68]
-
[69]
Penghao Wu and Saining Xie. 2024. https://doi.org/10.1109/CVPR52733.2024.01243 V*: Guided visual search as a core mechanism in multimodal llms . In IEEE/CVF Conference on Computer Vision and Pattern Recognition, CVPR 2024, Seattle, WA, USA, June 16-22, 2024 , pages 13084--13094. IEEE
2024
-
[70]
Yuxi Xie, Kenji Kawaguchi, Yiran Zhao, James Xu Zhao, Min - Yen Kan, Junxian He, and Michael Qizhe Xie. 2023. http://papers.nips.cc/paper\_files/paper/2023/hash/81fde95c4dc79188a69ce5b24d63010b-Abstract-Conference.html Self-evaluation guided beam search for reasoning . In Adva...
2023
- [71]
- [72]
-
[73]
Chenxu Yang, Qingyi Si, Yongjie Duan, Zheliang Zhu, Chenyu Zhu, Zheng Lin, Li Cao, and Weiping Wang. 2025 a . https://arxiv.org/abs/2504.15895 Dynamic early exit in reasoning models . arXiv preprint arXiv:2504.15895
2025
- [74]
-
[75]
Wang Yang, Xiang Yue, Vipin Chaudhary, and Xiaotian Han. 2025 c . https://arxiv.org/abs/2504.12329 Speculative thinking: Enhancing small-model reasoning with large model guidance at inference time . arXiv preprint arXiv:2504.12329
2025 arXiv
-
[76]
Wenkai Yang, Shuming Ma, Yankai Lin, and Furu Wei. 2025 d . https://doi.org/10.48550/ARXIV.2502.18080 Towards thinking-optimal scaling of test-time compute for LLM reasoning . CoRR, abs/2502.18080
2025 doi
-
[77]
Shunyu Yao, Dian Yu, Jeffrey Zhao, Izhak Shafran, Tom Griffiths, Yuan Cao, and Karthik Narasimhan. 2023. http://papers.nips.cc/paper\_files/paper/2023/hash/271db9922b8d1f4dd7aaef84ed5ac703-Abstract-Conference.html Tree of thoughts: Deliberate problem solving with large languag...
2023
- [78]
-
[79]
Fei Yu, Anningzhe Gao, and Benyou Wang. 2024. https://doi.org/10.18653/V1/2024.FINDINGS-NAACL.55 Ovm, outcome-supervised value models for planning in mathematical reasoning . In Findings of the Association for Computational Linguistics: NAACL 2024, Mexico City, Mexico, June 16...
2024 doi
-
[80]
Eric Zelikman, Yuhuai Wu, Jesse Mu, and Noah D. Goodman. 2022. http://papers.nips.cc/paper\_files/paper/2022/hash/639a9a172c044fbb64175b5fad42e9a5-Abstract-Conference.html Star: Bootstrapping reasoning with reasoning . In Advances in Neural Information Processing Systems 35: A...
2022
- [81]
-
[82]
Tenenbaum, and Chuang Gan
Shun Zhang, Zhenfang Chen, Yikang Shen, Mingyu Ding, Joshua B. Tenenbaum, and Chuang Gan. 2023. https://openreview.net/forum?id=Lr8cOOtYbfL Planning with large language models for code generation . In The Eleventh International Conference on Learning Representations, ICLR 2023...
2023
-
[83]
Nguyen, Jun Sun, and Tat - Seng Chua
Jingnan Zheng, Han Wang, An Zhang, Tai D. Nguyen, Jun Sun, and Tat - Seng Chua. 2024. http://papers.nips.cc/paper\_files/paper/2024/hash/b35c38f70065ac6c694089ca93a015bb-Abstract-Conference.html Ali-agent: Assessing llms' alignment with human values via agent-based evaluation ...
2024
- [84]
-
[85]
Chengke Zou, Xingang Guo, Rui Yang, Junyu Zhang, Bin Hu, and Huan Zhang. 2025. https://openreview.net/forum?id=VOAMTA8jKu Dynamath: A dynamic visual benchmark for evaluating mathematical reasoning robustness of vision language models . In The Thirteenth International Conferenc...
2025
-
[86]
Yuxin Zuo, Kaiyan Zhang, Shang Qu, Li Sheng, Xuekai Zhu, Biqing Qi, Youbang Sun, Ganqu Cui, Ning Ding, and Bowen Zhou. 2025. https://arxiv.org/abs/2504.16084 Ttrl: Test-time reinforcement learning . CoRR, abs/2504.16084
2025 arXiv
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.