REVIEW 4 major objections 4 minor 23 cited by
Outcome-based RL for LLM reasoning degrades answer diversity even on training questions the model has never solved, via a transfer from solved to unsolved questions; UCB-style bonuses over final answers improve accuracy while mitigating the
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
2026-08-04 22:52 UTC pith:TRBKOHBT
load-bearing objection Useful empirical study of diversity collapse with modest but real gains; theory is conditional on an unmeasured learner-capability assumption. the 4 major comments →
Outcome-based Exploration for LLM Reasoning
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The paper's central finding is that diversity collapse under outcome-based RL is a training-set phenomenon with a cross-question mechanism: as training proceeds, the policy concentrates probability on correct answers of questions it has already solved, and because the policy is shared, this concentration transfers to unsolved questions, where the model now explores fewer distinct answers than the base model would at equal sampling cost. The paper's second finding is that the damage is addressable at the outcome level, because the final-answer space of a reasoning task is small — on average under 50 distinct answers per question. Adding the bonus b_ucb(x,a) = min(1, 1/sqrt(N(x,a))) to the GRP
What carries the argument
Four objects carry the argument. (1) RL-as-sampling: each epoch of n trajectories per question is treated as a sample draw, so the RL run's cumulative pass@k and diff@k curves can be overlaid on base-model sampling with k = nT epochs; this is what exposes the transfer of diversity degradation. (2) The outcome space: for verifiable tasks the final answer acts as a coarse-grained label of the reasoning trace, and the paper measures that per-question answer supports stay under roughly 50, making outcome-space exploration tractable. (3) The outcome-based bonus: b_ucb(x,a) = min(1, 1/sqrt(N(x,a))) over final answers, inserted into the GRPO advantage, with variants UCB-Mean (batch-mean baseline) a
Load-bearing premise
The load-bearing premise is Assumption A.3 (soft generalization): after seeing one reasoning trace that ends in a particular final answer, the model can route back to that answer and can remove a substantial fraction of all other traces ending in the same answer from future exploration — an assumed property of how the model generalizes that the paper does not measure; if that fraction is zero, the theoretical regret benefit disappears.
What would settle it
Hold out a set of training questions and freeze the policy's updates on them (zero gradient) while training normally on the rest; if the frozen copy's diff@k on those questions does not fall below the base model's at equal sampling budget, the claimed transfer of diversity degradation is not caused by cross-question propagation and the paper's mechanism is wrong. Separately, measure the soft-generalization fraction rho_o directly: train on a single trace ending in answer o and compare the probability lift on other traces ending in o against traces ending in other answers; if the lift is near z
If this is right
- UCB-Con and Batch both beat GRPO in pass@1 and pass@32 on MATH-500, AIME, and AMC23 with Llama-3.1-8B and Qwen-2.5-7B, and they mitigate the late-training overoptimization that makes vanilla RL's final checkpoint worse than its early one.
- The exploration bonus attaches to final answers, so it is agnostic to the underlying RL algorithm and can be layered onto any verifiable-reward training pipeline.
- Under soft generalization, outcome-level UCB converts a problem as hard as a K-armed bandit into one with O(sqrt(mT log T)) regret: the effective difficulty of RL reasoning post-training is set by the number of distinct answers, not the number of reasoning traces.
- Batch exploration produces higher per-generation entropy on incorrect traces and more distinct answers per batch, making it the better choice when test-time pass@k at large k is the deployment goal.
Where Pith is reading between the lines
- If the transfer mechanism is real, exploration effort should be concentrated on questions the policy has not solved — a direct test would apply outcome bonuses only below a per-question solve threshold and compare with the paper's global bonuses.
- The soft-generalization fraction rho_o that Theorem A.4 depends on is measurable: train on a single trace with answer o and measure the probability lift on other traces with answer o versus traces with other answers; models with a larger measured lift should show proportionally larger gains from outcome-based exploration.
- The bandit view suggests a data-curation lever the paper does not explore: because regret scales with the answer count m, rebalancing training data to keep per-question answer diversity high should improve RL sample efficiency independently of the bonus.
- Batch exploration is defined purely at the batch level, so its penalty could be applied at inference time when sampling many answers for test-time scaling, without any retraining.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper studies diversity collapse in outcome-based RL for LLM reasoning. It frames RL post-training as a sampling process and reports that RL reduces effective diversity on the training set relative to sampling from the base model, including on unsolved questions (the 'transfer of diversity degradation'), and that final-answer spaces are sufficiently small to be tractable. It then proposes outcome-based exploration bonuses: historical UCB-style variants (UCB, UCB-Mean, UCB-Con) and a batch-level repetition penalty (Batch). Experiments with GRPO on Llama-3.1-8B-Instruct and Qwen-2.5-7B-Base on MATH/DAPO splits report improved pass@1 and pass@k over vanilla RL while mitigating diversity collapse. The paper also introduces an outcome-based bandit abstraction and proves a lower bound (Theorem A.1) and conditional upper bounds (Theorems A.3 and A.4).
Significance. The empirical core is plausible and useful: the proposed bonuses are simple, algorithm-agnostic, and the evaluation covers two models, several datasets, three seeds, and Appendix D error bars. The paper honestly acknowledges limitations (verifiable domains, single-turn tasks). The lower bound in Theorem A.1 is a clean negative result, and the empirical finding that RL can reduce training-set diversity on a per-sample basis is noteworthy. However, the formal upper-bound contribution is currently not established as written: the proof of Theorem A.4 has a gap, and the key generalization assumption is unmeasured and not implemented by the proposed algorithms. The 'transfer' explanation in Section 2.2 is also presented with causal language despite only correlational evidence. The paper's central empirical claims are defensible, but the theoretical and explanatory claims need substantial reworking.
major comments (4)
- [Appendix A.5, Theorem A.4 and Algorithm 3] The proof decomposes regret at the first hit of the optimal outcome tau_star and then applies Lemma A.4 to the tail. But Algorithm 3 does not enter outcome-level UCB until all m outcomes have been discovered; the tail from tau_star to tau_disc still consists of fresh draws from U, not pulls of representatives. Lemma A.4 does not apply to those rounds, and no bound on tau_disc is given under Assumption A.3. Concretely, if m=2, s_o* = K/2, and rho_o=0 for all o, then after hitting the optimal outcome the algorithm must still discover the rare outcome, which requires about K fresh draws and incurs about K*Delta regret, while the claimed bound is O(2 + sqrt(T log T)), independent of K. The reduction to an m-armed bandit therefore does not follow from the stated algorithm and proof. Additionally, the pseudocode does not remove the drawn arm A_t from U in the discovery phase, unlike Algorithms
- [Assumption A.3 and Section 3] Theorem A.4's improvement over the K-arm lower bound is entirely driven by Assumption A.3: the learner can route perfectly to a previously observed outcome and exclude a fraction rho_o of its outcome class from fresh probes. The paper itself calls this assumption 'rather unconventional' and notes it is an assumption on the learner. Yet no experiment measures rho_o, and the proposed UCB-Con and Batch algorithms (Section 3) do not implement routing or exclusion; they only add count-based bonuses. If rho_o=0, the first term becomes K/s_o*, recovering the K-arm regime. The main text's informal Theorem 4.2 is even stronger, relying on Assumption A.2 (strong generalization). The conclusion that outcome-based exploration is 'principled' is therefore conditional on an unverified capability that is not used by the proposed methods. The authors should either measure/justify rho_o from LLM data, or
- [Section 2.2, transfer of diversity degradation] The paper claims that reduced diversity on solved questions 'propagates' to unsolved questions, and calls this a central finding. The evidence is that RL training yields lower diff@k on unsolved questions than sampling from the base model. Since RL updates one shared network, unsolved-question behavior can change through many mechanisms unrelated to collapse on solved questions (e.g., general reasoning drift, reward hacking, format shift). No intervention isolates the proposed causal chain. The sentence 'The observed diversity degradation can therefore be explained as follows' overstates the evidence. Please reframe this as a hypothesis consistent with the observations, or add a controlled experiment (e.g., training only on solved questions and measuring unsolved-question diversity).
- [Table 3 and Table 4] Table 3 reports pass@1 and pass@32 'at the best checkpoint over three random seeds' without specifying how the best checkpoint is selected. If the selection is based on the test metrics being reported, the comparison is optimistic and can favor the method with more variance. The final-checkpoint results in Table 4 show materially smaller or different effects (e.g., UCB-Con on Qwen DAPO pass@32: 0.642 in Table 3 vs. 0.589 final; Batch final pass@32 is often the best). Please report a fixed protocol (e.g., validation-based checkpoint selection, or average over a fixed training schedule) and apply the same criterion to all methods.
minor comments (4)
- [Table 5] The caption of Table 5 appears to be copied from Table 2: it says 'Comparison of different exploration strategies based on the number of different answers sampled in a batch,' but the table lists hyperparameters. Please correct the caption.
- [Section 4.2 / Theorem 4.2] The main text states Theorem 4.2 under 'Assumption Assumption A.2' (strong generalization), while the more realistic soft model appears only in the appendix. Please make explicit in the main text which assumption the informal claim uses, since the paper's algorithms do not implement either assumption.
- [Figure 1 caption] The parenthetical 'except Qwen-2.5-7B-Base with UCB-Con on pass@1 on the early checkpoint due to exploration, but it has much higher pass@32 rate' is grammatically awkward and should be split into clearer sentences.
- [Section 2.2 notation] The notation A^{pi_RL}(x) and A^{pi_base}(x) is not formally defined before use; please define the answer-support notation in the preliminaries.
Circularity Check
No circularity: the paper's central empirical findings are self-contained, and its theoretical claim is an explicitly conditional result rather than a reduction to its own inputs.
full rationale
The paper's main contributions are empirical: it documents diversity collapse during RL training (Section 2.2, Figure 2) and proposes UCB-Con and Batch exploration, evaluating them against the GRPO baseline on external benchmarks (MATH-500, AIME, AMC) with Llama and Qwen models. These results stand on their own and are not constructed from the paper's own assumptions. The theoretical analysis in Appendix A is explicitly conditional: Theorem A.4 derives a regret bound under Assumption A.3 (soft generalization), which the paper itself labels 'rather unconventional' and 'an assumption on the learner instead of the environment' (Appendix A.5). This is a stated modeling assumption, not a hidden circular input, and the paper is transparent that if rho_o = 0 the bound degrades toward the lower bound of Theorem A.1. The absence of direct validation of Assumption A.3 is a limitation of the theory's applicability, not a circular derivation. Self-citations (Song et al. 2024b, Tang and Munos 2025, Arnal et al. 2025) are contextual and do not carry the load of the paper's main claims. No equation is reused as a prediction, no fitted parameter is renamed as a discovery, and no uniqueness theorem from prior work is imported to force the proposed methods. The only notable gap is that the theoretical justification is not directly connected to the exact implemented algorithms, but that is a scope limitation, not circularity.
Axiom & Free-Parameter Ledger
free parameters (2)
- UCB bonus coefficient c =
0.1 (Llama-3.1-8B), 0.2 (Qwen-2.5-7B)
- UCB-Con constant baseline b0 =
1.0 (easy dataset), 0.5 (medium dataset)
axioms (5)
- domain assumption Rewards depend only on the final answer and are checked by math_verify equivalence (r(x,a) in {0,1}).
- domain assumption GRPO objective (Eq. 1) is a reasonable proxy for the KL-regularized expected reward, despite known gradient bias.
- ad hoc to paper Assumption A.3 (soft generalization): after observing one arm with outcome o, the learner can route perfectly to o and exclude a fraction rho_o of the arms in the same outcome class.
- ad hoc to paper The 'transfer of diversity degradation' explanation: reduced diversity on solved questions propagates to unsolved questions.
- standard math Standard UCB regret bound for m-armed bandits with sub-Gaussian rewards (Lemma A.4).
Cite this review
Pith. "Pith review of Outcome-based Exploration for LLM Reasoning." pith.science (2026). https://pith.science/paper/TRBKOHBT
@misc{pith2026250906941,
author = {Pith},
title = {Pith review of: Outcome-based Exploration for LLM Reasoning},
year = {2026},
howpublished = {\url{https://pith.science/paper/TRBKOHBT}},
note = {Machine review of arXiv:2509.06941}
}
read the original abstract
Reinforcement learning (RL) has emerged as a powerful method for improving the reasoning abilities of large language models (LLMs). Outcome-based RL, which rewards policies solely for the correctness of the final answer, yields substantial accuracy gains but also induces a systematic loss in generation diversity. This collapse undermines real-world performance, where diversity is critical for test-time scaling. We analyze this phenomenon by viewing RL post-training as a sampling process and show that, strikingly, RL can reduce effective diversity even on the training set relative to the base model. Our study highlights two central findings: (i) a transfer of diversity degradation, where reduced diversity on solved problems propagates to unsolved ones, and (ii) the tractability of the outcome space, since reasoning tasks admit only a limited set of distinct answers. Motivated by these insights, we propose outcome-based exploration, which assigns exploration bonuses according to final outcomes. We introduce two complementary algorithms: historical exploration, which encourages rarely observed answers via UCB-style bonuses, and batch exploration, which penalizes within-batch repetition to promote test-time diversity. Experiments on standard competition math with Llama and Qwen models demonstrate that both methods improve accuracy while mitigating diversity collapse. On the theoretical side, we formalize the benefit of outcome-based exploration through a new model of outcome-based bandits. Together, these contributions chart a practical path toward RL methods that enhance reasoning without sacrificing the diversity essential for scalable deployment.
Forward citations
Cited by 23 Pith papers
-
Bridging Compute- and Data-Optimal Pretraining
Pretraining loss obeys a single law in which repeated or paraphrased tokens count as η(N, data-per-parameter, expansion-ratio) fresh tokens, with total effective data saturating as derived tokens grow.
-
Depth-Entropy Guided Sampling for Training-Free LLM Reasoning
Layer-wise entropy collapse depth is a weak per-candidate signal that, compounded inside MCMC power sampling, yields state-of-the-art training-free LLM reasoning accuracy.
-
Sample Where You Struggle: Sharpening Base Model Reasoning via Entropy-Guided Power Sampling
EGPS localizes MCMC moves to high-entropy decision points using forward-pass entropy, yielding up to 12.6× wall-clock speedup and best-or-tied accuracy on MATH500, HumanEval, and GPQA for Qwen2.5-Math-7B.
-
OrderGrad: Optimizing Beyond the Mean with Order-Statistic Policy Gradient Estimation
OrderGrad supplies unbiased likelihood-ratio and reparameterization gradient estimators for finite-sample L-statistics by applying a rank-based reward transformation usable in standard policy-gradient updates.
-
Exploiting Verification-Generation Gap: Test-Time Reinforcement Learning with Confidence-Conditioned Verification
TTRL-CoCoV is a confidence-conditioned test-time RL framework that selectively applies verification to address pseudo-label errors and diversity collapse, yielding +9.8% Pass@1 and +18.7% Pass@16 gains over prior TTRL...
-
Rebellious Student: Reversing Teacher Signals for Reasoning Exploration with Self-Distilled RLVR
RLRT augments GRPO by reinforcing tokens on correct student rollouts that the teacher would not have predicted, outperforming standard self-distillation and exploration baselines on Qwen3 models.
-
Uniform-Correct Policy Optimization: Breaking RLVR's Indifference to Diversity
UCPO modifies GRPO with a uniformity penalty over correct solutions to prevent diversity collapse in RLVR, yielding up to 10% higher Pass@64 on AIME24 and 45% more equation-level diversity.
-
Selective Expert Guidance for Effective and Diverse Exploration in Reinforcement Learning of LLMs
MENTOR selectively mixes expert and policy token distributions at high-entropy decision points, improving RLVR accuracy and diversity on math and out-of-domain benchmarks compared with full-trajectory imitation.
-
Instruction-Conditioned Exploration with Asymmetric Reinforcement Learning and Self-Distillation
Adding behavioral strategy hints to RL training prompts, then distilling only correct hint-conditioned answers into the unconditioned model, lifts Qwen3-1.7B math pass@1 by 5.0% over DAPO.
-
On Advantage Estimates for Max@K Policy Gradients
Proposes MaxPO using a Leave-Two-Out baseline for centered unbiased advantages in max@K policy gradients, with a unified derivation of finite-batch estimators.
-
Using Reward Uncertainty to Induce Diverse Behaviour in Reinforcement Learning
Replaces scalar reward with a distribution over reward functions and applies a non-linear objective over action sets to induce controllable diversity in contextual bandit RL, generalizing policy gradient methods.
-
Where Rollouts Begin: Low-Load, High-Leverage First-Token Diversification for RLVR
REFT improves Pass@1/8/64 in RLVR by uniform first-token sampling from top-N candidates across 0.5B-7B models and multiple difficulty levels.
-
Beyond Mode Collapse: Distribution Matching for Diverse Reasoning
DMPO approximates forward KL minimization in on-policy RL by aligning the policy to a group-level reward-proportional target distribution, yielding 9-12% relative gains over GRPO on NP-Bench and smaller gains on math ...
-
Automated Reformulation of Robust Optimization via Memory-Augmented Large Language Models
AutoREM augments LLMs with a structured memory of failed reformulation trajectories to improve accuracy and efficiency on robust optimization tasks without parameter updates or expert knowledge.
-
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...
-
The Past Is Not Past: Memory-Enhanced Dynamic Reward Shaping
MEDS improves LLM RL performance by up to 4.13 pass@1 and 4.37 pass@128 points by dynamically penalizing rollouts matching prevalent historical error clusters identified via memory-stored representations and density c...
-
Beyond the Sampled Token: Preserving Candidate Support in RLVR
SimKO, an asymmetric top-K token-level regularizer for RLVR, improves pass@K on math/logic benchmarks across K=1..256 without lowering pass@1 relative to GRPO.
-
On the optimization dynamics of RLVR: Gradient gap and step size thresholds
The paper defines a Gradient Gap for RLVR policy gradients and proves a sharp step-size threshold below which training converges and above which it collapses, with predictions for length and success-rate scaling valid...
-
Compute as Teacher: Turning Inference Compute Into Reference-Free Supervision
Parallel inference rollouts aggregated into pseudo-references enable reference-free RL supervision that matches expert-annotated performance on health tasks while using 9x less test-time compute.
-
When are likely answers right? On Sequence Probability and Correctness in LLMs
Higher sequence probability predicts correctness across different answers in a dataset but does not reliably improve accuracy when decoding methods or hyperparameters are changed, nor does it indicate correctness for ...
-
Reasoning or Memorization? Direction-Aware Diversity Exploration in LLM Reinforcement Learning
DiRL extracts a reasoning-memorization direction from model representations inside GRPO to weight gradients and shape rewards so that exploration favors reasoning trajectories over memorization ones.
-
Rethinking Entropy Interventions in RLVR: An Entropy Change Perspective
Derives a token-level entropy change approximation revealing four factors, identifies limitations in prior entropy interventions, and proposes STEER which adaptively reweights tokens to mitigate collapse and improve p...
-
Polychromic Objectives for Reinforcement Learning
Introduces polychromic objectives adapted into PPO via vine sampling and modified advantages, showing higher success rates and better coverage under perturbations on BabyAI, Minigrid, and algorithmic tasks.
Reference graph
Works this paper leans on
-
[1]
We will bound the regret in theseT ′ rounds by a standard UCB bound (Lemma A.4): E h TX t=τdisc (µ⋆ −µ(O t)) τdisc i ≤O p m T′ logT 18 Algorithm 2Partition-Aware UCB under Strong Generalization 1: Initialize: R (set of discovered outcomes, initially∅); rep[o](representative arm for o, undefined until discovery); no ∈N,ˆµ o ∈R for o∈ R(both0initially); U (...
work page 1996
-
[6]
Dataset reset policy optimization for rlhf.arXiv preprint arXiv:2404.08495,
Jonathan D Chang, Wenhao Zhan, Owen Oertell, Kianté Brantley, Dipendra Misra, Jason D Lee, and Wen Sun. Dataset reset policy optimization for rlhf.arXiv preprint arXiv:2404.08495,
-
[7]
Zhipeng Chen, Xiaobo Qin, Youbin Wu, Yue Ling, Qinghao Ye, Wayne Xin Zhao, and Guang Shi. Pass@ k training for adaptively balancing exploration and exploitation of large reasoning models.arXiv preprint arXiv:2508.10751,
-
[8]
Reasoning with exploration: An entropy perspective.arXiv preprint arXiv:2506.14758,
Daixuan Cheng, Shaohan Huang, Xuekai Zhu, Bo Dai, Wayne Xin Zhao, Zhenliang Zhang, and Furu Wei. Reasoning with exploration: An entropy perspective.arXiv preprint arXiv:2506.14758,
-
[9]
Weight ensembling improves reasoning in language models.arXiv preprint arXiv:2504.10478,
Xingyu Dang, Christina Baek, Kaiyue Wen, Zico Kolter, and Aditi Raghunathan. Weight ensembling improves reasoning in language models.arXiv preprint arXiv:2504.10478,
-
[10]
The statistical complexity of interactive decision making.arXiv:2112.13487,
Dylan J Foster, Sham M Kakade, Jian Qian, and Alexander Rakhlin. The statistical complexity of interactive decision making.arXiv:2112.13487,
-
[12]
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,
-
[13]
Measuring mathematical problem solving with the math dataset.arXiv preprint arXiv:2103.03874,
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,
-
[14]
Openai o1 system card.arXiv preprint arXiv:2412.16720,
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,
-
[15]
Robert Kirk, Ishita Mediratta, Christoforos Nalmpantis, Jelena Luketina, Eric Hambro, Edward Grefenstette, and Roberta Raileanu. Understanding the effects of rlhf on llm generalisation and diversity.arXiv preprint arXiv:2310.06452,
-
[17]
Tianjian Li, Yiming Zhang, Ping Yu, Swarnadeep Saha, Daniel Khashabi, Jason Weston, Jack Lanchantin, and Tianlu Wang. Jointly reinforcing diversity and quality in language model generations.arXiv preprint arXiv:2509.02534,
-
[20]
Approximating kl divergence, 2020.URL http://joschu
John Schulman. Approximating kl divergence, 2020.URL http://joschu. net/blog/kl-approx. html,
work page 2020
-
[22]
Can large reasoning models self-train?arXiv preprint arXiv:2505.21444,
Sheikh Shafayat, Fahim Tajwar, Ruslan Salakhutdinov, Jeff Schneider, and Andrea Zanette. Can large reasoning models self-train?arXiv preprint arXiv:2505.21444,
-
[23]
Zhihong Shao, Peiyi Wang, Qihao Zhu, Runxin Xu, Junxiao Song, Xiao Bi, Haowei Zhang, Mingchuan Zhang, YK Li, Yang Wu, et al. Deepseekmath: Pushing the limits of mathematical reasoning in open language models.arXiv preprint arXiv:2402.03300,
-
[24]
Hybridflow: A flexible and efficient rlhf framework.arXiv preprint arXiv: 2409.19256,
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,
-
[25]
Charlie Snell, Jaehoon Lee, Kelvin Xu, and Aviral Kumar. Scaling llm test-time compute optimally can be more effective than scaling model parameters.arXiv preprint arXiv:2408.03314,
-
[26]
Yuda Song, Gokul Swamy, Aarti Singh, J Bagnell, and Wen Sun. The importance of online data: Understanding preference fine-tuning via coverage.Advances in Neural Information Processing Systems, 37:12243–12270, 2024a. Yuda Song, Hanlin Zhang, Carson Eisenach, Sham Kakade, Dean Foster, and Udaya Ghai. Mind the gap: Examining the self-improvement capabilities...
-
[27]
On a few pitfalls in kl divergence gradient estimation for rl.arXiv preprint arXiv:2506.09477,
Yunhao Tang and Rémi Munos. On a few pitfalls in kl divergence gradient estimation for rl.arXiv preprint arXiv:2506.09477,
-
[28]
Yunhao Tang, Kunhao Zheng, Gabriel Synnaeve, and Rémi Munos. Optimizing language models for inference time objectives using reinforcement learning.arXiv preprint arXiv:2503.19595,
-
[29]
The invisible leash: Why rlvr may not escape its origin.arXiv preprint arXiv:2507.14843,
Fang Wu, Weihao Xuan, Ximing Lu, Zaid Harchaoui, and Yejin Choi. The invisible leash: Why rlvr may not escape its origin.arXiv preprint arXiv:2507.14843,
-
[30]
Tengyang Xie, Dylan J Foster, Akshay Krishnamurthy, Corby Rosset, Ahmed Awadallah, and Alexander Rakhlin. Exploratory preference optimization: Harnessing implicit q*-approximation for sample-efficient rlhf.arXiv preprint arXiv:2405.21046,
-
[31]
Wei Xiong, Hanze Dong, Chenlu Ye, Ziqi Wang, Han Zhong, Heng Ji, Nan Jiang, and Tong Zhang. Iterative preference learning from human feedback: Bridging theory and practice for rlhf under kl-constraint.arXiv preprint arXiv:2312.11456,
-
[33]
Dapo: An open-source llm reinforcement learning system at scale.arXiv preprint arXiv:2503.14476,
Qiying Yu, Zheng Zhang, Ruofei Zhu, Yufeng Yuan, Xiaochen Zuo, Yu Yue, Weinan Dai, Tiantian Fan, Gaohong Liu, Lingjun Liu, et al. Dapo: An open-source llm reinforcement learning system at scale.arXiv preprint arXiv:2503.14476,
-
[34]
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,
-
[35]
The price of format: Diversity collapse in llms.arXiv preprint arXiv:2505.18949,
Longfei Yun, Chenyang An, Zilong Wang, Letian Peng, and Jingbo Shang. The price of format: Diversity collapse in llms.arXiv preprint arXiv:2505.18949,
-
[36]
Shenao Zhang, Donghan Yu, Hiteshi Sharma, Han Zhong, Zhihan Liu, Ziyi Yang, Shuohang Wang, Hany Hassan, and Zhaoran Wang. Self-exploring language models: Active preference elicitation for online alignment.arXiv preprint arXiv:2405.19332, 2024a. Zihan Zhang, Yuxin Chen, Jason D Lee, and Simon S Du. Settling the sample complexity of online reinforcement lea...
-
[37]
First return, entropy-eliciting explore.arXiv preprint arXiv:2507.07017,
Tianyu Zheng, Tianshun Xing, Qingshui Gu, Taoran Liang, Xingwei Qu, Xin Zhou, Yizhi Li, Zhoufutu Wen, Chenghua Lin, Wenhao Huang, et al. First return, entropy-eliciting explore.arXiv preprint arXiv:2507.07017,
-
[1996]
Antoine Moulin, Gergely Neu, and Luca Viano. Optimistically optimistic exploration for provably efficient infinite- horizon reinforcement and imitation learning.arXiv preprint arXiv:2502.13900,
-
[2002]
Exploration by random network distillation.arXiv preprint arXiv:1810.12894,
Yuri Burda, Harrison Edwards, Amos Storkey, and Oleg Klimov. Exploration by random network distillation.arXiv preprint arXiv:1810.12894,
-
[2016]
Diverse preference optimization.arXiv preprint arXiv:2501.18101,
Jack Lanchantin, Angelica Chen, Shehzaad Dhuliawala, Ping Yu, Jason Weston, Sainbayar Sukhbaatar, and Ilia Kulikov. Diverse preference optimization.arXiv preprint arXiv:2501.18101,
-
[2018]
Shicong Cen, Jincheng Mei, Katayoon Goshvadi, Hanjun Dai, Tong Yang, Sherry Yang, Dale Schuurmans, Yuejie Chi, and Bo Dai. Value-incentivized preference optimization: A unified approach to online and offline rlhf.arXiv preprint arXiv:2405.19320,
-
[2019]
Qwen2.5 technical report.ArXiv, abs/2412.15115,
14 Qwen An Yang, Baosong Yang, Beichen Zhang, Binyuan Hui, Bo Zheng, Bowen Yu, Chengyuan Li, Dayiheng Liu, Fei Huang, Guanting Dong, Haoran Wei, Huan Lin, Jian Yang, Jianhong Tu, Jianwei Zhang, Jianxin Yang, Jiaxin Yang, Jingren Zhou, Junyang Lin, Kai Dang, Keming Lu, Keqin Bao, Kexin Yang, Le Yu, Mei Li, Mingfeng Xue, Pei Zhang, Qin Zhu, Rui Men, Runji L...
-
[2020]
Amrith Setlur, Matthew YR Yang, Charlie Snell, Jeremy Greer, Ian Wu, Virginia Smith, Max Simchowitz, and Aviral Kumar. e3: Learning to explore enables extrapolation of test-time compute for llms.arXiv preprint arXiv:2506.09026,
-
[2021]
Jingtong Gao, Ling Pan, Yejing Wang, Rui Zhong, Chi Lu, Qingpeng Cai, Peng Jiang, and Xiangyu Zhao. Navigate the unknown: Enhancing llm reasoning with intrinsic motivation guided exploration.arXiv preprint arXiv:2505.17621,
-
[2022]
Attributing mode collapse in the fine-tuning of large language models
13 Laura O’Mahony, Leo Grinsztajn, Hailey Schoelkopf, and Stella Biderman. Attributing mode collapse in the fine-tuning of large language models. InICLR 2024 Workshop on Mathematical and Empirical Understanding of Foundation Models, volume 2,
work page 2024
-
[2023]
Charles Arnal, GaĂŤtan Narozniak, Vivien Cabannes, Yunhao Tang, Julia Kempe, and Remi Munos. Asymmetric rein- force for off-policy reinforcement learning: Balancing positive and negative rewards.arXiv preprint arXiv:2506.20520,
-
[2024]
Chenjia Bai, Yang Zhang, Shuang Qiu, Qiaosheng Zhang, Kang Xu, and Xuelong Li. Online preference alignment for language models via count-based exploration.arXiv preprint arXiv:2501.12735,
-
[2025]
Yuntao Bai, Andy Jones, Kamal Ndousse, Amanda Askell, Anna Chen, Nova DasSarma, Dawn Drain, Stanislav Fort, Deep Ganguli, Tom Henighan, et al. Training a helpful and harmless assistant with reinforcement learning from human feedback.arXiv preprint arXiv:2204.05862,
This paper was first reviewed by deepseek-v4-flash on August 4, 2026.
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.