REVIEW 4 major objections 6 minor 6 cited by
BREAD: Branched Rollouts from Expert Anchors Bridge SFT & RL for Reasoning
T0 review · 4 major / 6 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read Inserting short expert prefixes during reinforcement learning lets small language models solve reasoning problems that supervised fine-tuning plus RL cannot.
desk verdict A practical GRPO variant that gives struggling small models adaptive expert hints; the empirical gains look real, but the theory covers a different algorithm and the key transfer claim rests on thin, unreplicated evidence. 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 mechanism is the expert anchor: a short prefix of the expert solution, appended to the question as a hint, chosen automatically by binary search (the Episode Anchor Search) so that the small model completes the rest of the trajectory with mixed success. The branched rollout is the complementary half of the machinery: instead of asking the model to generate the entire answer, the optimizer samples continuations from the anchored prefix, so the reward signal is evaluated on a short, feasible completion. Together they densify reward, guarantee at least one correct trace per update, and induce a curriculum in which the hint shortens as the model improves.
What would settle it
Take a dataset and model pair where even the full expert solution appended to the prompt does not increase the rollouts' correctness rate (the extreme case the paper concedes in its limitations). If BREAD shows no accuracy gain over GRPO there, the load-bearing premise is falsified. More cheaply, replicate the paper's correctness-ratio-versus-hint-ratio experiment and look for a flat curve across hint ratios 0 to 0.5, which would mean hints are not actually guiding the model.
Extended reading notes
Core claim
On its own terms, the paper's central claim is that the two-stage SFT+RL paradigm has a structural blind spot: distillation-style SFT compresses the expert's reasoning into the small model, and if that compression fails—because the expert jumps several reasoning steps per token—RL inherits a policy that cannot generate a correct trajectory to get reward. BREAD removes the need for the small model to express the whole expert trace at once. When a batch of rollouts contains no correct answer, Episode Anchor Search runs a binary search over prefixes of the expert solution to find the longest hint the student can use; rollouts branch from that point, and the group-relative policy update runs on these branched trajectories. The paper argues that success probability per subproblem becomes $\epsilon^\tau$ instead of $\epsilon^T$, so the model can learn the remaining steps one component at a time, and it proves this advantage in a symmetric-random-walk model: SFT+RL needs trace length $\Omega(K^2)$ to have any chance, while the BREAD variant succeeds with trace length $O(K^2/T)$ using $O(T \log T)$ rollouts. The empirical claim is that this transfers to real math reasoning, where BREAD outperforms every baseline and solves problems the SFT+RL strategy cannot.
Load-bearing premise
The argument depends on the small model being able to extract and follow enough of a partial expert trace that appending it raises the chance of a correct rollout—and that this ability transfers to questions with no hint at test time; if the premise fails, BREAD degrades to GRPO with extra computation.
Editorial extensions
If this is right
- On reasoning datasets where the base model can sometimes finish a trace, BREAD should beat GRPO with a fraction of the expert data, making distillation pipelines cheaper and removing the need for hand-filtered SFT sets.
- The hard-question experiments imply BREAD can learn from questions where pass@3 is zero—standard SFT and GRPO show flat accuracy on such sets—so its value is concentrated exactly on the samples other pipelines discard.
- Because BREAD's objective needs fewer rollouts (the paper shows parity with 5 instead of 8), its compute advantage compounds on longer reasoning traces.
- The reward-densification argument predicts that BREAD's advantage grows with the number of compositional steps in the problem, since each branched completion avoids the exponential blowup of full-trajectory success.
Reading between the lines
- The anchor-search idea is a general scaffolding principle: using a teacher at intermediate landmarks rather than imitating complete traces or full trajectories could apply to code generation, tool use, and multi-step planning, not just arithmetic reasoning.
- One tension the paper leaves open is the test-time dependence on hints; the reported improvement at hint ratio 0 shows some transfer, so a natural extension is to anneal the anchor length during training and measure hint-free accuracy at each stage.
- The random-walk model predicts that BREAD's advantage over SFT+RL should increase with problem depth; this is testable by binning benchmark questions by solution length and checking whether BREAD's relative gain rises with bin length.
- The episode-splitting and binary-search heuristics could be replaced by a learned branching-point predictor or by token-level guidance, which would remove the sentence/paragraph splitting assumption and likely improve efficiency on long traces.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes BREAD, a GRPO variant for small language model reasoning that, when self-generated rollouts fail, appends a short prefix of an expert trace to the prompt and samples rollouts from the resulting branched context. The paper motivates the method with a Markov-chain model in which SFT cannot learn from expert traces that exceed the student's jump capacity and GRPO receives no reward, while a BREAD-like procedure can succeed; Lemma 1 and Theorem 1 formalize this for a symmetric random walk. Empirically, on MATH and NuminaMath-CoT with Qwen2.5-1.5B/3B, BREAD is reported to outperform GRPO, SFT+GRPO, GRPO with the expert trace as an extra rollout, and trace-budget-matched baselines, and to improve accuracy on a hard pass@3=0 subset where baselines fail.
Significance. If the empirical results hold up, BREAD is a practical and simple technique that could make RL-based post-training of small models feasible in settings where standard SFT+RL stalls, and the paper provides a useful comparison of trace-budget baselines. The theoretical analysis, however, concerns a memorization/replay surrogate rather than the policy-gradient objective, so the current manuscript does not provide a formal explanation of the actual algorithm; the empirical transfer claim also needs stronger evidence. Strengths: the paper reports reproducible experimental configurations, compares against trace-budget-matched baselines, and conducts a clean hard-subset experiment, although that experiment lacks seed variation.
major comments (4)
- [Section 2.2, Theorem 1] Theorem 1 is stated as "Success of BREAD" but is proved for a distinct memorization variant that records and replays stitched suffixes; the actual BREAD objective in Eq. (1) does not include any replay or memory mechanism, and the toy experiments in Figure 3 use Algorithm 4, not the policy-gradient BREAD. As a result, the central theoretical claim that BREAD succeeds where SFT+RL fails is not established for the algorithm evaluated in Section 4. Please either prove the guarantee for the actual objective or explicitly state and defend the surrogate relationship.
- [Section 2.2, Lemma 1] The statement "SFT and GRPO training have no impact on the student model with probability at least 2e^{-K^2/4L}" inverts the probability bound derived in the proof: the union bound gives that no sampled trace receives a reward with probability at least 1 - 2e^{-K^2/4L}, so the lemma should say "with probability at least 1 - 2e^{-K^2/4L}". As written, the lemma asserts the opposite of what is proved.
- [Section 3.2, Figure 6b] The claim that training with partial hints improves accuracy at hint ratio 0 (generalization from partial traces to full-length inference) is confounded: the orange RL model was trained on a mix containing 40% hinted prompts and 60% unhinted prompts, so the improvement at hint ratio 0 may be caused by direct RL on the unhinted prompts rather than by transfer from hinted training. A control with standard GRPO trained on the same unhinted subset (or an intervention that varies the hint fraction while holding the unhinted data fixed) is needed to support the transfer claim.
- [Section 4.1, Figure 8a] The hard-subset experiment, which is the primary evidence for the abstract's claim that BREAD solves problems unsolvable by SFT+RL, reports a single run on a roughly 100-question test set with no error bars, no multiple seeds, and no significance test; given that baselines earn near-zero reward and BREAD's final accuracy is about 14%, the gap could be within run-to-run variation. Please provide multiple seeds with confidence intervals, and consider a larger test set or a bootstrap analysis.
minor comments (6)
- [Section 2.2, Theorem 1] The symbol t is used both for the number of rollouts per round and for the time index of the random walk; this overloaded notation makes the theorem harder to read.
- [Section 5 and Introduction] Section 5 contains "dicusses" instead of "discusses", and the Introduction's "Section 1 explains our algorithm BREAD" appears to refer to Section 2.
- [Algorithm 1] The line "Update the policy model by maxmizing the BREAD objective" contains a typo: "maxmizing" should be "maximizing".
- [Section A.1] The sentence "For estimation, we define the average length of a single question in one inference time as Dsample" is repeated verbatim in the same paragraph.
- [Section 3.1] The citation "following [35]" for the S1K traces appears to be a mis-citation; the S1K dataset is introduced in [24].
- [Section B.3] The phrase "which may slow down the training sif there ised if there is no episode aggregation" is garbled and should be corrected; also "steps" here refers to solution steps and should be made explicit.
Circularity Check
No significant circularity: central claims rest on external benchmarks and independent random-walk bounds.
full rationale
BREAD's central claims are not forced by construction. The algorithm is an RL objective (Eq. 1) plus an episode-anchor search that adaptively branches from expert traces; the main empirical comparisons (Figs. 7-8, Tables 1-2) are run against external baselines (GRPO, SFT+GRPO, GRPO w/ Expert Trace) on public MATH and NuminaMath-CoT benchmarks, so the reported gains are externally falsifiable rather than entailed by the method's definition. The theoretical section is a Markov-chain toy model: Lemma 1 proves SFT+RL cannot help because the expert's jumps exceed the student's allowed jump size by construction, and the RL phase gets no nonzero reward by a standard random-walk hitting-time bound; Theorem 1's success guarantee is derived from the same independent hitting-time bound (Lemma 2, citing Durrett/Feller), not from the conclusion being assumed. No fitted parameter is renamed as a prediction: the EAS hint selection is an algorithmic choice, and the trace-budget matched SFT(selected)/SFT(random) baselines are explicit attempts to control for the expert-trace budget. The paper's self-citations ([43], [44]) appear only in the related-work survey and do not carry the load-bearing argument. The empirical transfer claim from hinted training to no-hint inference (Fig. 6b) has a confound - the RL run used 40% hinted prompts and 60% unhinted prompts - but that is a validity or bias concern, not a derivation-by-construction circularity.
Assumptions & free parameters
free parameters (3)
- Episode count K=10 for EAS splitting =
10
- EAS success probability range =
not specified numerically
- Number of rollouts G =
8
assumptions (4)
- domain assumption Small language models can be modeled as Markov chains with local state transitions, and expert generation as a Markov chain with larger jumps (Section 2.1).
- domain assumption The student model is initialized as a symmetric random walk (d=1, epsilon=0.5) and cannot learn transitions with jump size greater than 1 during SFT.
- standard math Random walk hitting time bounds from Durrett and Feller are used as standard background.
- domain assumption Expert traces are available for every training question and can be split into meaningful episodes (sentences or paragraphs).
Cite this review
Pith. "Pith review of BREAD: Branched Rollouts from Expert Anchors Bridge SFT & RL for Reasoning." pith.science (2026). https://pith.science/paper/IYEQMZRZ
@misc{pith2026250617211,
author = {Pith},
title = {Pith review of: BREAD: Branched Rollouts from Expert Anchors Bridge SFT & RL for Reasoning},
year = {2026},
howpublished = {\url{https://pith.science/paper/IYEQMZRZ}},
note = {Machine review of arXiv:2506.17211}
}
read the original abstract
Small language models (SLMs) struggle to learn complex reasoning behaviors, especially when high-quality traces are scarce or difficult to learn from. The standard training approach combines a supervised fine-tuning (SFT) stage, often to distill capabilities of a larger model, followed by a reinforcement learning (RL)stage such as Group Relative Policy Optimization (GRPO). In this paper, we investigate the fundamental limitations of this SFT + RL paradigm and propose methods to overcome them. Under a suitable theoretical model, we demonstrate that the SFT + RL strategy can fail completely when (1) the expert's traces are too difficult for the small model to express, or (2) the small model's initialization has exponentially small likelihood of success. To address these, we introduce BREAD: a GRPO variant that unifies the SFT and RL stages via partial expert guidance and branched rollouts. When self-generated traces fail, BREAD adaptively inserts short expert prefixes/hints, allowing the small model to complete the rest of the reasoning path, and ensuring that each update includes at least one successful trace. This mechanism both densifies the reward signal and induces a natural learning curriculum. BREAD requires fewer than 40% of ground-truth traces, consistently outperforming standard GRPO while speeding up the training by about 3 times. Importantly, we demonstrate that BREAD helps the model solve problems that are otherwise unsolvable by the SFT + RL strategy, highlighting how branched rollouts and expert guidance can substantially boost SLM reasoning.
Figures
Figures from the paper (8 more)
Forward citations
Cited by 6 Pith papers
-
Off-Context GRPO: Learning to Reason on Hard Problems using Privileged Information
OC-GRPO reweights GRPO gradients with an importance ratio so that hints used during rollout generation still optimize the original unguided objective, delivering a 13.8% relative Pass@1 gain over vanilla GRPO.
-
It Takes 8 Tokens: Weak-to-Strong Off-Policy RL via Auxiliary Branches
W2SPO trains a reasoning LLM by inserting short 8-token branches proposed by a weaker model into its own rollouts and updating only those branch tokens, improving Pass@1 over vanilla GRPO (64.2% vs 62.3%) with a 3.55x...
-
Which Reasoning Trajectories Teach Students to Reason Better? A Simple Metric of Informative Alignment
Rank-Surprisal Ratio (RSR) correlates strongly (average Spearman 0.86) with post-distillation reasoning gains across five student models and trajectories from eleven teachers, outperforming existing selection metrics.
-
Don't Tell the Answer, Truly Guide the Reasoning During RL Rollouts
HINT boosts LLM reasoning RL by injecting teacher-generated heuristic hints only on all-failed rollouts, keeping hints out of the policy-optimization prompt, and monitoring guidance quality with a new Affinity metric.
-
Reasoning to Regulate: Chain-of-Thought for Traffic Rule Understanding
CoT data curated by two-round LLM prompting and VLM verification, then SFT+GRPO with fine-grained rewards, improves MapDR rule–lane association F1 from 0.642 to 0.723.
-
AAPA: Adversarially Anchored Preference Alignment for Post-Training of Large Language Models
Adding a frozen POLAR-based similarity penalty to SFT, GRPO, or CHORD improves averaged instruction-following scores by up to 5.77 percent at 0.6B scale in the paper's reported runs.
Reference graph
Works this paper leans on
-
[1]
Phi-4 technical report.arXiv preprint arXiv:2412.08905, 2024
Marah Abdin, Jyoti Aneja, Harkirat Behl, Sébastien Bubeck, Ronen Eldan, Suriya Gunasekar, Michael Harrison, Russell J Hewett, Mojan Javaheripi, Piero Kauffmann, et al. Phi-4 technical report.arXiv preprint arXiv:2412.08905, 2024
arXiv 2024
-
[2]
Pranjal Aggarwal and Sean Welleck. L1: Controlling how long a reasoning model thinks with reinforcement learning.arXiv preprint arXiv:2503.04697, 2025
arXiv 2025
-
[3]
Hindsight experience replay.Advances in neural information processing systems, 30, 2017
Marcin Andrychowicz, Filip Wolski, Alex Ray, Jonas Schneider, Rachel Fong, Peter Welinder, Bob McGrew, Josh Tobin, OpenAI Pieter Abbeel, and Wojciech Zaremba. Hindsight experience replay.Advances in neural information processing systems, 30, 2017
2017
-
[4]
Thomas Anthony, Zheng Tian, and David Barber. Thinking fast and slow with deep learning and tree search.Advances in neural information processing systems, 30, 2017
work page 2017
-
[5]
Lingjiao Chen, Matei Zaharia, and James Zou. Frugalgpt: How to use large language models while reducing cost and improving performance.arXiv preprint arXiv:2305.05176, 2023
arXiv 2023
-
[6]
Tianzhe Chu, Yuexiang Zhai, Jihan Yang, Shengbang Tong, Saining Xie, Dale Schuurmans, Quoc V Le, Sergey Levine, and Yi Ma. Sft memorizes, rl generalizes: A comparative study of foundation model post-training.arXiv preprint arXiv:2501.17161, 2025. 11
arXiv 2025
-
[7]
Cambridge university press, 2019
Rick Durrett.Probability: theory and examples, volume 49. Cambridge university press, 2019
2019
-
[8]
First return, then explore.Nature, 590(7847):580–586, 2021
Adrien Ecoffet, Joost Huizinga, Joel Lehman, Kenneth O Stanley, and Jeff Clune. First return, then explore.Nature, 590(7847):580–586, 2021
2021
Show all 47 references
-
[9]
Open r1: A fully open reproduction of deepseek-r1, January 2025
Hugging Face. Open r1: A fully open reproduction of deepseek-r1, January 2025
2025
-
[10]
John Wiley & Sons, 1991
William Feller.An introduction to probability theory and its applications, Volume 2, volume 2. John Wiley & Sons, 1991
1991
-
[11]
Gemini 2.0 flash thinking mode (gemini-2.0f lash-thinking-exp-1219), 2024
Google. Gemini 2.0 flash thinking mode (gemini-2.0f lash-thinking-exp-1219), 2024. https: //cloud.google.com/vertex-ai/generative-ai/docs/thinking
2024
-
[12]
Last updated 14 May 2025
Google. Gemini 2.0 flash thinking mode ( gemini-2.0-flash-thinking-exp-1219), De- cember 2024. Accessed 15 May 2025. “Last updated 14 May 2025” on the page
2024
-
[13]
Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning.arXiv preprint arXiv:2501.12948, 2025
Daya Guo, Dejian Yang, Haowei Zhang, Junxiao Song, Ruoyu Zhang, Runxin Xu, Qihao Zhu, Shirong Ma, Peiyi Wang, Xiao Bi, et al. Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning.arXiv preprint arXiv:2501.12948, 2025
2025 arXiv
-
[14]
Language model cascades: Token-level uncertainty and beyond
Neha Gupta, Harikrishna Narasimhan, Wittawat Jitkrittum, Ankit Singh Rawat, Aditya Krishna Menon, and Sanjiv Kumar. Language model cascades: Token-level uncertainty and beyond. In The Twelfth International Conference on Learning Representations, 2024
2024
-
[15]
Measuring mathematical problem solving with the math dataset
Dan Hendrycks, Collin Burns, Saurav Kadavath, Akul Arora, Steven Basart, Eric Tang, Dawn Song, and Jacob Steinhardt. Measuring mathematical problem solving with the math dataset. arXiv preprint arXiv:2103.03874, 2021
2021 arXiv
-
[16]
Training compute-optimal large language models.arXiv preprint arXiv:2203.15556, 2022
Jordan Hoffmann, Sebastian Borgeaud, Arthur Mensch, Elena Buchatskaya, Trevor Cai, Eliza Rutherford, Diego de Las Casas, Lisa Anne Hendricks, Johannes Welbl, Aidan Clark, et al. Training compute-optimal large language models.arXiv preprint arXiv:2203.15556, 2022
2022 arXiv
-
[17]
Openai o1 system card.arXiv preprint arXiv:2412.16720, 2024
Aaron Jaech, Adam Kalai, Adam Lerer, Adam Richardson, Ahmed El-Kishky, Aiden Low, Alec Helyar, Aleksander Madry, Alex Beutel, Alex Carney, et al. Openai o1 system card.arXiv preprint arXiv:2412.16720, 2024
2024 arXiv
-
[18]
When to trust your model: Model-based policy optimization.Advances in neural information processing systems, 32, 2019
Michael Janner, Justin Fu, Marvin Zhang, and Sergey Levine. When to trust your model: Model-based policy optimization.Advances in neural information processing systems, 32, 2019
2019
-
[19]
Gemini 2.5: Our most intelligent ai model
Koray Kavukcuoglu. Gemini 2.5: Our most intelligent ai model. https://blog.google/ technology/google-deepmind/gemini-model-thinking-updates-march-2025/ , March 2025. Accessed 15 May 2025
2025
-
[20]
Adam: A method for stochastic optimization.arXiv preprint arXiv:1412.6980, 2014
Diederik P Kingma. Adam: A method for stochastic optimization.arXiv preprint arXiv:1412.6980, 2014
2014 arXiv
-
[21]
Numinamath
Jia LI, Edward Beeching, Lewis Tunstall, Ben Lipkin, Roman Soletskyi, Shengyi Costa Huang, Kashif Rasul, Longhui Yu, Albert Jiang, Ziju Shen, Zihan Qin, Bin Dong, Li Zhou, Yann Fleureau, Guillaume Lample, and Stanislas Polu. Numinamath. [https://huggingface.co/AI-MO/NuminaMath...
2024
-
[22]
Small models struggle to learn from strong reasoners
Yuetai Li, Xiang Yue, Zhangchen Xu, Fengqing Jiang, Luyao Niu, Bill Yuchen Lin, Bhaskar Ra- masubramanian, and Radha Poovendran. Small models struggle to learn from strong reasoners. arXiv preprint arXiv:2502.12143, 2025
2025
-
[23]
Cppo: Accelerating the training of group relative policy optimization-based reasoning models.arXiv preprint arXiv:2503.22342, 2025
Zhihang Lin, Mingbao Lin, Yuan Xie, and Rongrong Ji. Cppo: Accelerating the training of group relative policy optimization-based reasoning models.arXiv preprint arXiv:2503.22342, 2025
2025
-
[24]
s1: Simple test-time scaling.arXiv preprint arXiv:2501.19393, 2025
Niklas Muennighoff, Zitong Yang, Weijia Shi, Xiang Lisa Li, Li Fei-Fei, Hannaneh Hajishirzi, Luke Zettlemoyer, Percy Liang, Emmanuel Candès, and Tatsunori Hashimoto. s1: Simple test-time scaling.arXiv preprint arXiv:2501.19393, 2025. 12
2025 arXiv
-
[25]
Policy invariance under reward transforma- tions: Theory and application to reward shaping
Andrew Y Ng, Daishi Harada, and Stuart Russell. Policy invariance under reward transforma- tions: Theory and application to reward shaping. InIcml, volume 99, pages 278–287. Citeseer, 1999
1999
-
[26]
Optimizing test-time compute via meta reinforcement fine-tuning.arXiv preprint arXiv:2503.07572, 2025
Yuxiao Qu, Matthew YR Yang, Amrith Setlur, Lewis Tunstall, Edward Emanuel Beeching, Ruslan Salakhutdinov, and Aviral Kumar. Optimizing test-time compute via meta reinforcement fine-tuning.arXiv preprint arXiv:2503.07572, 2025
2025 arXiv
-
[27]
Direct preference optimization: Your language model is secretly a reward model
Rafael Rafailov, Archit Sharma, Eric Mitchell, Christopher D Manning, Stefano Ermon, and Chelsea Finn. Direct preference optimization: Your language model is secretly a reward model. Advances in Neural Information Processing Systems, 36:53728–53741, 2023
2023
-
[28]
Gpqa: A graduate-level google-proof q&a benchmark
David Rein, Betty Li Hou, Asa Cooper Stickland, Jackson Petty, Richard Yuanzhe Pang, Julien Dirani, Julian Michael, and Samuel R Bowman. Gpqa: A graduate-level google-proof q&a benchmark. InFirst Conference on Language Modeling, 2024
2024
-
[29]
A reduction of imitation learning and structured prediction to no-regret online learning
Stéphane Ross, Geoffrey Gordon, and Drew Bagnell. A reduction of imitation learning and structured prediction to no-regret online learning. InProceedings of the fourteenth interna- tional conference on artificial intelligence and statistics, pages 627–635. JMLR Workshop and Co...
2011
-
[30]
Beyond chinchilla-optimal: Accounting for inference in language model scaling laws.arXiv preprint arXiv:2401.00448, 2023
Nikhil Sardana, Jacob Portes, Sasha Doubov, and Jonathan Frankle. Beyond chinchilla-optimal: Accounting for inference in language model scaling laws.arXiv preprint arXiv:2401.00448, 2023
2023 arXiv
-
[31]
Reasoning with latent thoughts: On the power of looped transformers.arXiv preprint arXiv:2502.17416, 2025
Nikunj Saunshi, Nishanth Dikkala, Zhiyuan Li, Sanjiv Kumar, and Sashank J Reddi. Reasoning with latent thoughts: On the power of looped transformers.arXiv preprint arXiv:2502.17416, 2025
2025 arXiv
-
[32]
Kickstarting deep reinforcement learning.arXiv preprint arXiv:1803.03835, 2018
Simon Schmitt, Jonathan J Hudson, Augustin Zidek, Simon Osindero, Carl Doersch, Woj- ciech M Czarnecki, Joel Z Leibo, Heinrich Kuttler, Andrew Zisserman, Karen Simonyan, et al. Kickstarting deep reinforcement learning.arXiv preprint arXiv:1803.03835, 2018
2018 arXiv
-
[33]
Deepseekmath: Pushing the limits of mathematical reasoning in open language models.arXiv preprint arXiv:2402.03300, 2024
Zhihong Shao, Peiyi Wang, Qihao Zhu, Runxin Xu, Junxiao Song, Xiao Bi, Haowei Zhang, Mingchuan Zhang, YK Li, Y Wu, et al. Deepseekmath: Pushing the limits of mathematical reasoning in open language models.arXiv preprint arXiv:2402.03300, 2024
2024 arXiv
-
[34]
Hybridflow: A flexible and efficient rlhf framework.arXiv preprint arXiv: 2409.19256, 2024
Guangming Sheng, Chi Zhang, Zilingfeng Ye, Xibin Wu, Wang Zhang, Ru Zhang, Yanghua Peng, Haibin Lin, and Chuan Wu. Hybridflow: A flexible and efficient rlhf framework.arXiv preprint arXiv: 2409.19256, 2024
2024 arXiv
-
[35]
Scaling llm test-time compute opti- mally can be more effective than scaling model parameters.arXiv preprint arXiv:2408.03314, 2024
Charlie Snell, Jaehoon Lee, Kelvin Xu, and Aviral Kumar. Scaling llm test-time compute opti- mally can be more effective than scaling model parameters.arXiv preprint arXiv:2408.03314, 2024
2024 arXiv
-
[36]
Kimi Team, Angang Du, Bofei Gao, Bowei Xing, Changjiu Jiang, Cheng Chen, Cheng Li, Chenjun Xiao, Chenzhuang Du, Chonghua Liao, et al. Kimi k1. 5: Scaling reinforcement learning with llms.arXiv preprint arXiv:2501.12599, 2025
2025 arXiv
-
[37]
Leveraging demonstrations for deep reinforcement learning on robotics problems with sparse rewards.arXiv preprint arXiv:1707.08817, 2017
Mel Vecerik, Todd Hester, Jonathan Scholz, Fumin Wang, Olivier Pietquin, Bilal Piot, Nicolas Heess, Thomas Rothörl, Thomas Lampe, and Martin Riedmiller. Leveraging demonstrations for deep reinforcement learning on robotics problems with sparse rewards.arXiv preprint arXiv:1707...
2017 arXiv
-
[38]
Dump: Automated distribution- level curriculum learning for rl-based llm post-training.arXiv preprint arXiv:2504.09710, 2025
Zhenting Wang, Guofeng Cui, Kun Wan, and Wentian Zhao. Dump: Automated distribution- level curriculum learning for rl-based llm post-training.arXiv preprint arXiv:2504.09710, 2025
2025
-
[39]
Chain-of-thought prompting elicits reasoning in large language models
Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Fei Xia, Ed Chi, Quoc V Le, Denny Zhou, et al. Chain-of-thought prompting elicits reasoning in large language models. Advances in neural information processing systems, 35:24824–24837, 2022
2022
-
[40]
Not all rollouts are useful: Down- sampling rollouts in llm reinforcement learning.arXiv preprint arXiv:2504.13818, 2025
Yixuan Even Xu, Yash Savani, Fei Fang, and Zico Kolter. Not all rollouts are useful: Down- sampling rollouts in llm reinforcement learning.arXiv preprint arXiv:2504.13818, 2025. 13
2025 arXiv
-
[41]
Dapo: An open-source llm reinforcement learning system at scale.arXiv preprint arXiv:2503.14476, 2025
Qiying Yu, Zheng Zhang, Ruofei Zhu, Yufeng Yuan, Xiaochen Zuo, Yu Yue, Tiantian Fan, Gaohong Liu, Lingjun Liu, Xin Liu, et al. Dapo: An open-source llm reinforcement learning system at scale.arXiv preprint arXiv:2503.14476, 2025
2025 arXiv
-
[42]
Does reinforcement learning really incentivize reasoning capacity in llms beyond the base model? arXiv preprint arXiv:2504.13837, 2025
Yang Yue, Zhiqi Chen, Rui Lu, Andrew Zhao, Zhaokai Wang, Shiji Song, and Gao Huang. Does reinforcement learning really incentivize reasoning capacity in llms beyond the base model? arXiv preprint arXiv:2504.13837, 2025
2025 arXiv
-
[43]
Making small language models efficient reasoners: Intervention, supervision, reinforcement
Xuechen Zhang, Zijian Huang, Chenchun Ni, Ziyang Xiong, Jiasi Chen, and Samet Oymak. Making small language models efficient reasoners: Intervention, supervision, reinforcement. arXiv preprint arXiv:2505.07961, 2025
2025 arXiv
-
[44]
” or“\n
Xuechen Zhang, Zijian Huang, Ege Onur Taga, Carlee Joe-Wong, Samet Oymak, and Jiasi Chen. Efficient contextual llm cascades through budget-constrained policy learning.Conference on Neural Information Processing Systems, 2024. 14 The Supplementary Material is organized as follo...
2024
-
[45]
A coefficient for the expert trace loss 1 G|oS|
-
[46]
A KL divergence term´βD KLpπθ||πrefq
-
[47]
An Advantage termmin ´ ri,tpθq ˆAS,t,clippr i,tpθq,1´ε,1`εq ˆAS,t ¯ Suppose thatri,tď1`ε , because ˆAS,tě0 , min ´ ri,tpθq ˆAS,t,clippr i,tpθq,1´ε,1`εq ˆAS,t ¯ “ ri,tpθq ˆAS,t, which is exactly the entropy loss with a coefficient ˆAS,t if we replaceπoldpoi,t|q,oiătq in 18 ri,t...
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.