Pith. sign in

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 →

arxiv 2505.24863 v1 pith:7OXKREG2 submitted 2025-05-30 cs.CL

classification cs.CL
keywords test-timescalinglargereasoningmodelsprogressmodulationalphamomentslow-to-fastschedulingBernoulliprocesss1ChainofDraft
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

AlphaOne ($\alpha$1) claims that a single scalar controls how much a large reasoning model deliberates before answering, and that the best way to spend that deliberation is to think slowly early and then switch to fast reasoning. The paper introduces the $\alpha$ moment, the point in generation where the thinking phase has been scaled to $\alpha$ times its natural length, and uses a stochastic Bernoulli process to insert “wait” transition tokens before that moment and a deterministic `` insertion after it. Evaluated on six math, code, and science benchmarks with three open reasoning models from 1.5B to 32B parameters, $\alpha$1 reports higher Pass@1 than the vanilla model and than two training-free baselines—s1, which monotonically adds slow thinking, and Chain of Draft, which monotonically removes it—while often using fewer tokens. If the claim holds, test-time scaling of reasoning models becomes a schedule-design problem rather than a search or fine-tuning problem, with a universal knob that unifies existing monotonic scaling strategies.

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.

Watch

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

Editorial extensions of the paper, not claims the author makes directly.

  • 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.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 4 minor

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)
  1. [§4.2, Table 1] This is the central empirical claim of the paper, so the overstatement is load-bearing and must be fixed.
  2. [§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.
  3. [§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.
  4. [§B.1] This is a presentation issue but it affects reproducibility of the ablation claim.
minor comments (4)
  1. [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.
  2. [§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.
  3. [§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.
  4. [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

0 steps flagged · score 0.0 of 10

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 4 free parameters · 3 assumptions · 2 invented entities

The central method rests on two tuned quantities (α and N_think) plus three domain assumptions about how token-level interventions affect the model's reasoning mode. N_think is estimated from test data, which couples the method's success to the evaluation set and weakens the independence of the reported gains.

free parameters (4)
  • alpha = 1.4
    Global scaling factor for the thinking phase budget, chosen by hand. Section 4.1 states 'We set α as 1.4' after the scaling study in Figure 5.
  • N_think (average thinking phase token length) = per-benchmark values in Table 3, e.g., 4130 for AIME24 with 1.5B model
    Measured from 10 random test questions per benchmark. The α moment is defined as the point where generated tokens reach α*N_think, so this estimate directly controls the schedule.
  • scheduling function S(t) = linear annealing: S(t) = -1/T_m * t + 1
    Chosen as the best among four variants in Section 4.3.1. The schedule shape is a modeling choice, not derived from theory.
  • gamma (exponential anneal) = 0.3
    Hyperparameter for the exponential anneal variant in Section 4.3.1; used only in the ablation study, not in the main results.
assumptions (3)
  • domain assumption Assumption 1: The reasoning velocity of slow thinking is smaller than that of fast thinking.
    Stated in Section 2 to justify the reasoning progress model. It is not empirically verified in this paper.
  • domain assumption Appending ' wait' after the structural delimiter '\n\n' activates slow thinking.
    Adopted from Yang et al. (2025c) and used in Section 3.2. The paper provides no independent test of the causal effect of ' wait' tokens.
  • domain assumption Replacing ' wait' with '</think>' after the α moment deterministically terminates slow thinking and switches to fast reasoning.
    Postulated in Section 3.3 to counter 'slow thinking inertia'. Only indirect ablation evidence is provided, not a direct measurement of reasoning mode.
invented entities (2)
  • α moment
    purpose: Threshold in the thinking phase where the generated token count reaches α*N_think; after this point slow thinking is suppressed.
    A definitional construct introduced in Section 3.1. It has no external measurable handle beyond the method's own definitions.
  • Slow thinking inertia
    purpose: Explains why LRMs continue generating slow-thinking tokens after the pre-α phase, motivating the deterministic termination step.
    Inferred from the ablation in Table 2, where removing post-α modulation causes performance to drop. It is not directly measured.

how reviews work

0 comments
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 reproduced from arXiv: 2505.24863 by the authors.

Figure 1
Figure 1. Conceptual illustration of reasoning modu￾lation strategies. Our α1 employs a slow-to-fast rea￾soning schedule controlled by α. α1 scales more efficiently than monotonously increasing method s1 (yellow) and generally outperforms monotonously de￾creasing (purple) approaches. to slow down reasoning progress automatically. Is such automatic slowing down of reasoning progress determined by LRMs sufficiently reliable? Ac… view at source ↗
Figure 2
Figure 2. Overview of ALPHAONE (α1). Here represents α moment (Section 3.1). α1 applies dense reasoning modulation via a user-defined slow thinking scheduling in pre-α moment. In addition, α1 utilizes a post-α moment modulation by replacing slow thinking transitioning tokens “wait” to “</think>”, which fosters fast thinking. Specifically, α determines when the slow-to-fast reasoning transition occurs. For example, reducing α … view at source ↗
Figure 3
Figure 3. Visualization of different scheduling strategies. We detail the functions in Section 4.3.1. Here represents α moment, which we elaborate in Section 3.1, and denotes the end of the thinking phase. Vanilla s1 Constant Linear Increase Exponential Anneal Linear Anneal 30 32 34 36 38 40 42 44 46 46 48 50 52 54 56 +5.3% Pass @1 (%) (c) DeepSeek-R1-Distill￾Qwen-1.5B (d) DeepSeek-R1-Distill￾Qwen-7B Pass @1 (%) +6.7% Olympia… view at source ↗
Figures from the paper (5 more)
Figure 4
Figure 4. Figure 4: Ablation study of different scheduling strategies on (a-b) AMC23 and (c-d) OlympaidBench. 4.3 Analytic Results In this section, we analyze α1 by systematically addressing the following five questions: 4.3.1 What scheduling strategy is better? As shown in [PITH_FULL_IM…
Figure 5
Figure 5. Figure 5: Scaling property of α. We scale α from 0 to the maximum value restricted by the maximum token length, and plot the corresponding reasoning Pass@1 and average thinking phase token length on AMC23 and MATH500. 𝛼1 (Ours) CoD s1 -0.58 -2.73 -2.49 -9.98 -0.86 +11.1 +4.48 +1…
Figure 6
Figure 6. Figure 6: Scaling efficiency analysis with REP us￾ing Deepseek-R1-distill-Qwen-1.5B. The REP metric is introduced in Eq. (2). racy. This indicates that monotonously increasing the thinking phase budget does not consistently bring better reasoning performance, and it is criti￾cal…
Figure 7
Figure 7. Figure 7: Scaling property of “wait” frequency under constant scheduling on AMC23 and OlympiadBench. Increasing pconstant leads to a higher frequency of yielding “wait” in the Bernoulli process Bernoulli(pwait) [PITH_FULL_IMAGE:figures/full_fig_p008_7.png]
Figure 8
Figure 8. Figure 8: Ablation study of different scheduling strategies on AIME24. B Additional Ablation Study B.1 Scheduling Strategy In addition to the results in [PITH_FULL_IMAGE:figures/full_fig_p016_8.png]

Discussion (0). Sign in to comment.

Forward citations

Cited by 5 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. Risky Business: Measuring The Faithfulness-Safety Tension

    cs.AI 2026-08 conditional novelty 7.0 of 10

    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.

  2. Adaptive Termination for Multi-round Parallel Reasoning: An Universal Semantic Entropy-Guided Framework

    cs.CL 2025-07 conditional novelty 5.0 of 10

    A semantic entropy-guided stopping rule for multi-round parallel LLM reasoning improves accuracy while reducing inference steps on five benchmarks.

  3. Xolver: Multi-Agent Reasoning with Holistic Experience Learning Just Like an Olympiad Team

    cs.CL 2025-06 conditional novelty 5.0 of 10

    A training-free multi-agent framework with episodic and shared memory reports new best results on GSM8K, AIME 2024/2025, Math-500, and LiveCodeBench.

  4. Reinforcement Learning Meets Large Language Models: A Survey of Advancements and Applications Across the LLM Lifecycle

    cs.CL 2025-09 conditional novelty 3.0 of 10

    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.

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

    cs.AI 2025-07 conditional novelty 3.0 of 10

    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

86 extracted references · 27 canonical work pages · cited by 5 Pith papers

  1. [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. [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. [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...

  4. [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

  5. [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...

  6. [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

  7. [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. [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...

Show all 86 references
  1. [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...

  2. [10]

    Xingyu Chen, Jiahao Xu, Tian Liang, Zhiwei He, Jianhui Pang, Dian Yu, Linfeng Song, Qiuzhi Liu, Mengfei Zhou, Zhuosheng Zhang, Rui Wang, Zhaopeng Tu, Haitao Mi, and Dong Yu. 2024 b . https://doi.org/10.48550/ARXIV.2412.21187 Do NOT think that much for 2+3=? on the overthinking...

  3. [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 ...

  4. [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 ...

  5. [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 ...

  6. [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 . ...

  7. [15]

    DeepSeek - AI, Daya Guo, Dejian Yang, Haowei Zhang, Junxiao Song, Ruoyu Zhang, Runxin Xu, Qihao Zhu, Shirong Ma, Peiyi Wang, Xiao Bi, Xiaokang Zhang, Xingkai Yu, Yu Wu, Z. F. Wu, Zhibin Gou, Zhihong Shao, Zhuoshu Li, Ziyi Gao, and 81 others. 2025. https://doi.org/10.48550/ARXI...

  8. [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...

  9. [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...

  10. [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

  11. [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

  12. [20]

    Zitian Gao, Boye Niu, Xuzheng He, Haotian Xu, Hongzhang Liu, Aiwei Liu, Xuming Hu, and Lijie Wen. 2024. https://doi.org/10.48550/ARXIV.2410.01707 Interpretable contrastive monte carlo tree search reasoning . CoRR, abs/2410.01707

  13. [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...

  14. [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...

  15. [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...

  16. [24]

    Shibo Hao, Sainbayar Sukhbaatar, DiJia Su, Xian Li, Zhiting Hu, Jason Weston, and Yuandong Tian. 2024. https://doi.org/10.48550/ARXIV.2412.06769 Training large language models to reason in a continuous latent space . CoRR, abs/2412.06769

  17. [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 ...

  18. [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...

  19. [27]

    Zhen Huang, Haoyang Zou, Xuefeng Li, Yixiu Liu, Yuxiang Zheng, Ethan Chern, Shijie Xia, Yiwei Qin, Weizhe Yuan, and Pengfei Liu. 2024 b . https://doi.org/10.48550/ARXIV.2411.16489 O1 replication journey - part 2: Surpassing o1-preview through simple distillation, big progress ...

  20. [28]

    Aaron Jaech, Adam Kalai, Adam Lerer, Adam Richardson, Ahmed El - Kishky, Aiden Low, Alec Helyar, Aleksander Madry, Alex Beutel, Alex Carney, Alex Iftimie, Alex Karpenko, Alex Tachard Passos, Alexander Neitz, Alexander Prokofiev, Alexander Wei, Allison Tam, Ally Bennett, Ananya...

  21. [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...

  22. [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

  23. [31]

    Daniel Kahneman. 2011. https://www.google.com/books/edition/_/SHvzzuCnuv8C?hl=en Thinking, fast and slow . macmillan

  24. [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

  25. [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

  26. [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...

  27. [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...

  28. [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...

  29. [37]

    Gonzalez, and Ion Stoica

    Dacheng Li, Shiyi Cao, Chengkun Cao, Xiuyu Li, Shangyin Tan, Kurt Keutzer, Jiarong Xing, Joseph E. Gonzalez, and Ion Stoica. 2025. https://doi.org/10.48550/ARXIV.2502.14382 S*: Test time scaling for code generation . CoRR, abs/2502.14382

  30. [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...

  31. [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...

  32. [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

  33. [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...

  34. [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

  35. [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

  36. [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

  37. [45]

    OpenAI . 2025. https://openai.com/index/thinking-with-images/ Thinking with images . Accessed: 2025-05-25

  38. [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

  39. [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...

  40. [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...

  41. [49]

    Jiahao Qiu, Yifu Lu, Yifan Zeng, Jiacheng Guo, Jiayi Geng, Huazheng Wang, Kaixuan Huang, Yue Wu, and Mengdi Wang. 2024. https://doi.org/10.48550/ARXIV.2410.16033 Treebon: Enhancing inference-time alignment with speculative tree-search and best-of-n sampling . CoRR, abs/2410.16033

  42. [50]

    Yuxiao Qu, Matthew Y. R. Yang, Amrith Setlur, Lewis Tunstall, Edward Emanuel Beeching, Ruslan Salakhutdinov, and Aviral Kumar. 2025. https://doi.org/10.48550/ARXIV.2503.07572 Optimizing test-time compute via meta reinforcement fine-tuning . CoRR, abs/2503.07572

  43. [51]

    Qwen Team . 2025. Preview of qwen qwen1.5-32b. https://qwenlm.github.io/blog/qwq-32b-preview/. Accessed: 2025-03-20

  44. [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

  45. [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...

  46. [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 ...

  47. [55]

    Zhihong Shao, Peiyi Wang, Qihao Zhu, Runxin Xu, Junxiao Song, Mingchuan Zhang, Y. K. Li, Y. Wu, and Daya Guo. 2024 b . https://doi.org/10.48550/ARXIV.2402.03300 Deepseekmath: Pushing the limits of mathematical reasoning in open language models . CoRR, abs/2402.03300

  48. [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

  49. [57]

    Yang Sui, Yu - Neng Chuang, Guanchu Wang, Jiamu Zhang, Tianyi Zhang, Jiayi Yuan, Hongyi Liu, Andrew Wen, Shaochen Zhong, Hanjie Chen, and Xia Ben Hu. 2025. https://doi.org/10.48550/ARXIV.2503.16419 Stop overthinking: A survey on efficient reasoning for large language models . ...

  50. [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...

  51. [59]

    Chameleon Team. 2024. https://doi.org/10.48550/ARXIV.2405.09818 Chameleon: Mixed-modal early-fusion foundation models . CoRR, abs/2405.09818

  52. [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

  53. [61]

    Guangya Wan, Yuqi Wu, Jie Chen, and Sheng Li. 2024 a . https://doi.org/10.48550/ARXIV.2408.17017 Dynamic self-consistency: Leveraging reasoning paths for efficient LLM sampling . CoRR, abs/2408.17017

  54. [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...

  55. [63]

    Han Wang, Gang Wang, and Huan Zhang. 2024. https://doi.org/10.48550/ARXIV.2411.16721 Steering away from harm: An adaptive approach to defending vision language model against jailbreaks . CoRR, abs/2411.16721

  56. [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...

  57. [65]

    Yue Wang, Qiuzhi Liu, Jiahao Xu, Tian Liang, Xingyu Chen, Zhiwei He, Linfeng Song, Dian Yu, Juntao Li, Zhuosheng Zhang, Rui Wang, Zhaopeng Tu, Haitao Mi, and Dong Yu. 2025. https://doi.org/10.48550/ARXIV.2501.18585 Thoughts are all over the place: On the underthinking of o1-li...

  58. [66]

    Haoran Wei, Youyang Yin, Yumeng Li, Jia Wang, Liang Zhao, Jianjian Sun, Zheng Ge, and Xiangyu Zhang. 2024. https://doi.org/10.48550/ARXIV.2412.20631 Slow perception: Let's perceive geometric figures step-by-step . CoRR, abs/2412.20631

  59. [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...

  60. [68]

    Yana Wei, Liang Zhao, Kangheng Lin, En Yu, Yuang Peng, Runpei Dong, Jianjian Sun, Haoran Wei, Zheng Ge, Xiangyu Zhang, and Vishal M. Patel. 2025. https://doi.org/10.48550/ARXIV.2504.07165 Perception in reflection . CoRR, abs/2504.07165

  61. [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

  62. [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...

  63. [71]

    Tianyi Xiong, Xiyao Wang, Dong Guo, Qinghao Ye, Haoqi Fan, Quanquan Gu, Heng Huang, and Chunyuan Li. 2024. https://doi.org/10.48550/ARXIV.2410.02712 Llava-critic: Learning to evaluate multimodal models . CoRR, abs/2410.02712

  64. [72]

    Silei Xu, Wenhao Xie, Lingxiao Zhao, and Pengcheng He. 2025. https://doi.org/10.48550/ARXIV.2502.18600 Chain of draft: Thinking faster by writing less . CoRR, abs/2502.18600

  65. [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

  66. [74]

    Rui Yang, Hanyang Chen, Junyu Zhang, Mark Zhao, Cheng Qian, Kangrui Wang, Qineng Wang, Teja Venkat Koripella, Marziyeh Movahedi, Manling Li, Heng Ji, Huan Zhang, and Tong Zhang. 2025 b . https://doi.org/10.48550/ARXIV.2502.09560 Embodiedbench: Comprehensive benchmarking multi-...

  67. [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

  68. [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

  69. [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...

  70. [78]

    En Yu, Kangheng Lin, Liang Zhao, Jisheng Yin, Yana Wei, Yuang Peng, Haoran Wei, Jianjian Sun, Chunrui Han, Zheng Ge, Xiangyu Zhang, Daxin Jiang, Jingyu Wang, and Wenbing Tao. 2025. https://doi.org/10.48550/ARXIV.2504.07954 Perception-r1: Pioneering perception policy with reinf...

  71. [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...

  72. [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...

  73. [81]

    Zhiyuan Zeng, Qinyuan Cheng, Zhangyue Yin, Yunhua Zhou, and Xipeng Qiu. 2025. https://doi.org/10.48550/ARXIV.2502.12215 Revisiting the test-time scaling of o1-like models: Do they truly possess test-time scaling capabilities? CoRR, abs/2502.12215

  74. [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...

  75. [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 ...

  76. [84]

    Zhi Zhou, Tan Yuhao, Zenan Li, Yuan Yao, Lan - Zhe Guo, Xiaoxing Ma, and Yu - Feng Li. 2025. https://doi.org/10.48550/ARXIV.2502.00511 Bridging internal probability and self-consistency for effective and efficient LLM reasoning . CoRR, abs/2502.00511

  77. [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...

  78. [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

Pith tools

Reviewed August 7, 2026 · model on record in the stance chip above.