REVIEW 4 major objections 5 minor 43 references
Discriminative Policy Optimization for Token-Level Reward Models
T0 review · 4 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read A discriminative policy turns LLM logits into token-level Q-functions for RL alignment.
desk verdict A useful token-level reward model with solid empirical results, but the 'learns Q-functions' claim is overreached and rests on a fragile zero-entropy assumption. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is the discriminative policy $\phi$, a function that takes a state and a specific action and outputs a logit $Z(s,a)$, distinct from a generative policy that predicts the next token. Under maximum-entropy RL the optimal $\phi$ satisfies $\beta\log\phi^*(s,a)=Q^*(s,a)-V^*(s)$, and the paper's reformulation shows the pairwise preference objective depends on the mean logits; the entropy assumption lets the $\bar{V}(\tau^w)-\bar{V}(\tau^l)$ term drop, yielding a tractable training loss. Proposition 3.4 then identifies the deviation of $Z$ from its mean with the advantage function, so the learned logits can stand in for Q-values in both PPO and REINFORCE.
What would settle it
Take the trained Q-RM and, on held-out GSM8K preference pairs, compute the mean adjusted log-partition difference $\bar{V}(\tau^w)-\bar{V}(\tau^l)$ against the mean logit difference $\bar{Q}(\tau^w)-\bar{Q}(\tau^l)$. If that ratio is not small, Assumption 3.3 is violated and the training loss is not the BT model of true rewards; one can also add the dropped term back into the loss and watch whether policy Pass@1 changes.
Extended reading notes
Core claim
Within a token-level MDP under maximum-entropy RL, the optimal discriminative policy $\phi^*$ satisfies $\beta\log\phi^*(s_t,a_t)=Q^*(s_t,a_t)-V^*(s_t)$, so its logits $Z^*(s_t,a_t)$ carry the same token-level advantage information as the true optimal Q-function. The paper shows that trajectory reward under this policy can be rewritten as an average of logits plus value-function terms, and that under Assumption 3.3, near-zero entropy of the optimal trajectory, the value terms cancel between chosen and rejected trajectories. What remains is a Bradley-Terry objective over the difference of mean logits, $\sigma[\beta(\bar{Q}(\tau^w)-\bar{Q}(\tau^l))-\gamma]$, so the discriminative model can be trained from pairwise preferences alone. The central claim is that the model trained this way explicitly learns token-level Q-functions, making $Z^*(s_t,a_t)$ a valid dense reward for policy optimization.
Load-bearing premise
The argument collapses if the optimal policy is not nearly deterministic: Assumption 3.3 drops the trajectory-entropy difference between chosen and rejected trajectories, and without it the training objective is not the Bradley-Terry model of the true rewards, so the learned logits lose their justification as Q-functions.
Editorial extensions
If this is right
- PPO/REINFORCE with Q-RM improves average Pass@1 on GSM8K and MATH by 5.85/4.70 points over ORM and 4.56/5.73 points over DPO-RM.
- RL with Q-RM reaches comparable test accuracy with far fewer training samples: 12 times faster than ORM on GSM8K and 11 times faster than step-level PRM on MATH.
- Because $Z^*(s,a)$ carries advantage information, PPO can estimate advantage directly without generalized advantage estimation.
- Token-level dense credits raise the Pass@8/Pass@16 upper bounds, meaning the policy finds correct trajectories with fewer samples in best-of-N.
- RM pairwise accuracy is not the bottleneck: Q-RM scores lower than ORM on RewardBench yet produces better policies, since fine-grained credit matters more than ranking accuracy.
Reading between the lines
- If the learned logits really are Q-functions, the same model should work as an inference-time value guide, such as a best-of-N reranker or step-level search, a use the paper lists as future work.
- Because the entropy term is dropped, one can test the load-bearing assumption directly: reinsert $\bar{V}(\tau^w)-\bar{V}(\tau^l)$ in the loss and see whether policy quality or reward accuracy changes; on tasks with stochastic optimal policies it should matter.
- The label-free recipe suggests process-style rewards for new domains: any paired outcome data, such as long-form answers or tool trajectories, could yield token-level credit without step annotations.
- Q-RM's low RewardBench accuracy despite strong RL results points to token-level gradient direction, not ranking margin, as the active ingredient; ablating reward standardization or using only correct-token gradients would isolate the mechanism.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Q-RM, a token-level reward model trained with a Bradley-Terry-style logistic loss on the average logits of chosen and rejected responses. The authors derive the objective from maximum-entropy RL, argue that the trained logits are linearly related to the optimal Q-function, and integrate the model as dense token rewards in both PPO and REINFORCE. Experiments span GSM8K, MATH, QA-Feedback, and AlpacaEval 2.0, reporting consistent gains over ORM and token-level PRM baselines, as well as large sample-efficiency improvements (up to 12x faster convergence). The paper includes ablations on policy size, reward-model accuracy, best-of-N sampling, and comparisons with step-level PRMs, and it releases code and data.
Significance. If the stated interpretation holds, the contribution is practically significant: token-level Q-functions learned from pairwise preferences alone would provide dense, well-grounded reward signals without fine-grained annotations, and the reported gains (e.g., +5.85/+4.70 Pass@1 over ORM, 12x/11x faster convergence) are substantial. The empirical study is unusually broad, covering four task families, multiple backbones, and many baselines, and the authors are explicit about several limitations. However, the theoretical claim that the trained model explicitly learns Q-functions is currently supported only up to a series of approximations; the empirical evidence is strong enough that a revision addressing the theory or reframing the claim can make the paper publishable.
major comments (4)
- [Section 3.3, Eq. (16), Assumption 3.3] The transition from Eq. (14) to Eq. (18) drops |Vbar(tau_w) - Vbar(tau_l)| using Assumption 3.3. This step is load-bearing: if the difference is not negligible, the training loss in Eq. (18) is not the BT model of the true rewards, and the minimizer of Eq. (18) need not be the Z* appearing in Eq. (6). Assumption 3.3 is in tension with the MaxEnt derivation itself, since for beta>0 the optimal policy in Eq. (27) is stochastic. Moreover, Figure 6 reports trajectory entropy of Llama-2-70B-Chat on GSM8K, not the entropy of the discriminative policy phi* that Q-RM trains. The bound in Eq. (16) concerns a difference accumulated over entire trajectories, so even small per-token entropies can yield non-negligible differences over long responses. Please provide direct evidence about the entropy of the actual Q-RM policy, or explicitly treat Eq. (18) as an approximation and remove the claim that Q-RM 'explicitly learns' Q-functions.
- [Section 3.4, Eq. (18), Section F] The parameter gamma is defined as delta + beta((1/N) sum z^w_t - (1/M) sum z^l_t), which is per-pair, but the paper fixes gamma to a global constant (gamma=2.0) during training. The appendix (Section F, Figure 7) acknowledges that gamma varies per instance. A fixed gamma biases the relative weighting of chosen and rejected trajectories and introduces a modeling assumption beyond the entropy approximation. No analysis is given of the bias this creates in the minimizer of Eq. (18). Since the central theoretical claim is that the trained logits coincide with Z* up to linearity, this approximation must be analyzed or the claim must be qualified.
- [Section 3.5, Proposition 3.4] Proposition 3.4 shows that, for the optimal policy phi*, deviations of Q* and Z* from their expectation coincide. This does not by itself show that the logits produced by the model trained with Eq. (18) satisfy Eq. (19), because the trained model is not proven to equal phi* under the approximate objective. The statement 'computing the advantage function with Z*(s_t,a_t) is equivalent to using Q*(s_t,a_t)' therefore overstates what is established. Please state precisely what additional conditions are needed for the trained model to inherit the property, or downgrade Section 3.5 to a heuristic motivation.
- [Limitations, items (3) and (4)] The Limitations section concedes two further deviations from the ideal derivation: in Algorithm 1 the critic is trained by MSE against Z*(s_t,a_t) rather than the expectation under phi*, and in Algorithm 2 relative scores from the BT model are used as absolute returns. These are not cosmetic details; both affect the interpretation of the empirical gains as evidence that Q-RM provides Q-function-shaped rewards. The abstract and conclusion should be revised to present the method as an empirically effective approximation, rather than as a model that 'theoretically' learns Q-functions, unless the theory is strengthened accordingly.
minor comments (5)
- [Appendix H and Appendix D] Typographical errors: 'standlized' should be 'standardized' in Appendix H, and 'recomended' should be 'recommended' in Appendix D.
- [Sections 3.3, B, and C] Numbering is inconsistent: Section 3.3 refers to 'Theorem 3.3' where Assumption 3.3 is meant; Appendix B cites 'Theorem 3.2' for Proposition 3.2; Appendix C cites 'Theorem 3.4' for Proposition 3.4. Please unify the numbering.
- [Algorithm 1 and Section 3.5] The text says the value function is trained to capture the expectation sum_a phi*(s_t,a) Z*(s_t,a), but the loss in Algorithm 1 is LVF = -(V_psi(s_t) - Z*_std(s_t,a_t))^2, which regresses the critic to the token reward. Please clarify the intended target and the relation between the two.
- [Abstract and Figure 3(a)] The abstract states convergence is '12 times faster than ORM on GSM8K' without noting that Figure 3(a) uses a 1B policy; please state the setting in the abstract or temper the claim, and report multiple seeds because PPO training is noisy.
- [Section 5.1, Table 3] The statement that Q-RM 'consistently outperforms' all baselines is too strong for AlpacaEval 2.0: PPO+Q-RM (27.24 win rate) is below PPO+PGG-RM (28.93), and only REINFORCE+Q-RM is clearly best. Please qualify the claim for this task.
Circularity Check
No significant circularity: the training objective is fitted to preference data, but the Q-function interpretation and downstream policy gains are not imposed by construction.
full rationale
The paper's derivation chain does not reduce any claimed prediction to its own inputs. Q-RM defines a discriminative policy phi with logits Z, obtains the MaxEnt-RL identity beta log phi* = Q* - V* (Eq. 6), telescopes the trajectory reward into an average log-probability term (Eqs. 8-10), and then approximates the partition-function term away using Assumption 3.3 to reach the tractable logistic objective in Eq. 18. The resulting model is indeed trained on preference data, so its token-level scores are fitted to those preferences, but the paper does not present pairwise preference accuracy as a prediction derived from theory; the empirical claims are downstream policy improvements, convergence speed, and reward-quality comparisons, all of which are measured against held-out tasks or external baselines rather than being re-statements of the training labels. The theoretical claim that the trained logits are Q-functions is conditional on the MaxEnt optimality identification and on Assumption 3.3; whether that assumption holds is a correctness or robustness concern, not a circular one. The paper contains no load-bearing self-citations, no imported uniqueness theorem, and no ansatz smuggled in via citation; the MaxEnt framework is cited to standard sources and re-derived in Appendix A. The Limitations section explicitly acknowledges two additional approximations (the PPO critic is trained toward Z* rather than the full expectation, and relative BT scores are used as absolute rewards), and these are honest caveats rather than hidden circular steps. Overall, the central derivation is self-contained given its stated assumptions, and the main risks are unsupported or fragile assumptions, not circularity.
Assumptions & free parameters
free parameters (2)
- β (temperature/scale in BT loss) =
0.2
- γ (global offset in Eq (18)) =
2.0
assumptions (5)
- standard math MaxEnt RL optimal policy satisfies β log π*(a|s) = Q*(s,a) − V*(s)
- domain assumption Preference data follow a Bradley-Terry model over length-normalized trajectory rewards (Eq 1)
- ad hoc to paper The optimal discriminative policy φ* has near-zero trajectory entropy (Assumption 3.3)
- domain assumption The trained Q-RM model converges to the optimal logits Z*
- ad hoc to paper γ can be treated as a constant global offset
Cite this review
Pith. "Pith review of Discriminative Policy Optimization for Token-Level Reward Models." pith.science (2026). https://pith.science/paper/PRWL2ONA
@misc{pith2026250523363,
author = {Pith},
title = {Pith review of: Discriminative Policy Optimization for Token-Level Reward Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/PRWL2ONA}},
note = {Machine review of arXiv:2505.23363}
}
read the original abstract
Process reward models (PRMs) provide more nuanced supervision compared to outcome reward models (ORMs) for optimizing policy models, positioning them as a promising approach to enhancing the capabilities of LLMs in complex reasoning tasks. Recent efforts have advanced PRMs from step-level to token-level granularity by integrating reward modeling into the training of generative models, with reward scores derived from token generation probabilities. However, the conflict between generative language modeling and reward modeling may introduce instability and lead to inaccurate credit assignments. To address this challenge, we revisit token-level reward assignment by decoupling reward modeling from language generation and derive a token-level reward model through the optimization of a discriminative policy, termed the Q-function Reward Model (Q-RM). We theoretically demonstrate that Q-RM explicitly learns token-level Q-functions from preference data without relying on fine-grained annotations. In our experiments, Q-RM consistently outperforms all baseline methods across various benchmarks. For example, when integrated into PPO/REINFORCE algorithms, Q-RM enhances the average Pass@1 score by 5.85/4.70 points on mathematical reasoning tasks compared to the ORM baseline, and by 4.56/5.73 points compared to the token-level PRM counterpart. Moreover, reinforcement learning with Q-RM significantly enhances training efficiency, achieving convergence 12 times faster than ORM on GSM8K and 11 times faster than step-level PRM on MATH. Code and data are available at https://github.com/homzer/Q-RM.
Figures
Figures from the paper (13 more)
Reference graph
Works this paper leans on
-
[1]
Back to basics: Revisiting REINFORCE -style optimization for learning from human feedback in LLM s
Ahmadian, A., Cremer, C., Gall \'e , M., Fadaee, M., Kreutzer, J., Pietquin, O., \"U st \"u n, A., and Hooker, S. Back to basics: Revisiting REINFORCE -style optimization for learning from human feedback in LLM s. In Ku, L.-W., Martins, A., and Srikumar, V. (eds.), Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Vo...
-
[2]
Bradley, R. A. and Terry, M. E. Rank analysis of incomplete block designs: I. the method of paired comparisons. Biometrika, 39 0 (3/4): 0 324--345, 1952. ISSN 00063444, 14643510. URL http://www.jstor.org/stable/2334029
arXiv 1952
-
[3]
Cai, Z., Cao, M., Chen, H., Chen, K., Chen, K., Chen, X., Chen, X., Chen, Z., Chen, Z., Chu, P., wen Dong, X., Duan, H., Fan, Q., et al. Internlm2 technical report. ArXiv, abs/2403.17297, 2024
arXiv 2024
-
[4]
J., Sun, H., Holt, S., and Van Der Schaar, M
Chan, A. J., Sun, H., Holt, S., and Van Der Schaar, M. Dense reward for free in reinforcement learning from human feedback. In Salakhutdinov, R., Kolter, Z., Heller, K., Weller, A., Oliver, N., Scarlett, J., and Berkenkamp, F. (eds.), Proceedings of the 41st International Conference on Machine Learning, volume 235 of Proceedings of Machine Learning Resear...
work page 2024
-
[5]
Training verifiers to solve math word problems
Cobbe, K., Kosaraju, V., Bavarian, M., Chen, M., Jun, H., Kaiser, L., Plappert, M., Tworek, J., Hilton, J., Nakano, R., et al. Training verifiers to solve math word problems. arXiv preprint arXiv:2110.14168, 2021
arXiv 2021
-
[6]
ULTRAFEEDBACK : Boosting language models with scaled AI feedback
Cui, G., Yuan, L., Ding, N., Yao, G., He, B., Zhu, W., Ni, Y., Xie, G., Xie, R., Lin, Y., Liu, Z., and Sun, M. ULTRAFEEDBACK : Boosting language models with scaled AI feedback. In Salakhutdinov, R., Kolter, Z., Heller, K., Weller, A., Oliver, N., Scarlett, J., and Berkenkamp, F. (eds.), Proceedings of the 41st International Conference on Machine Learning,...
work page 2024
-
[7]
Dubey, A., Jauhri, A., Pandey, A., Kadian, A., Al-Dahle, A., Letman, A., Mathur, A., Schelten, A., Yang, A., Fan, A., et al. The llama 3 herd of models. arXiv preprint arXiv:2407.21783, 2024
arXiv 2024
-
[8]
X., Taori, R., Zhang, T., Gulrajani, I., Ba, J., Guestrin, C., Liang, P
Dubois, Y., Li, C. X., Taori, R., Zhang, T., Gulrajani, I., Ba, J., Guestrin, C., Liang, P. S., and Hashimoto, T. B. Alpacafarm: A simulation framework for methods that learn from human feedback. Advances in Neural Information Processing Systems, 36, 2024
work page 2024
Show all 43 references
-
[9]
Soft actor-critic: Off-policy maximum entropy deep reinforcement learning with a stochastic actor
Haarnoja, T., Zhou, A., Abbeel, P., and Levine, S. Soft actor-critic: Off-policy maximum entropy deep reinforcement learning with a stochastic actor. In International conference on machine learning, pp.\ 1861--1870. PMLR, 2018
2018
-
[10]
Measuring mathematical problem solving with the math dataset
Hendrycks, D., Burns, C., Kadavath, S., Arora, A., Basart, S., Tang, E., Song, D., and Steinhardt, J. Measuring mathematical problem solving with the math dataset. arXiv preprint arXiv:2103.03874, 2021
2021 arXiv
-
[11]
The curious case of neural text degeneration
Holtzman, A., Buys, J., Du, L., Forbes, M., and Choi, Y. The curious case of neural text degeneration. In International Conference on Learning Representations, 2020. URL https://openreview.net/forum?id=rygGQyrFvH
2020
-
[12]
ORPO : Monolithic preference optimization without reference model
Hong, J., Lee, N., and Thorne, J. ORPO : Monolithic preference optimization without reference model. In Al-Onaizan, Y., Bansal, M., and Chen, Y.-N. (eds.), Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing, pp.\ 11170--11189, Miami, Florida...
2024 doi
-
[13]
J., yelong shen, Wallis, P., Allen-Zhu, Z., Li, Y., Wang, S., Wang, L., and Chen, W
Hu, E. J., yelong shen, Wallis, P., Allen-Zhu, Z., Li, Y., Wang, S., Wang, L., and Chen, W. Lo RA : Low-rank adaptation of large language models. In International Conference on Learning Representations, 2022. URL https://openreview.net/forum?id=nZeVKeeFYf9
2022
-
[14]
O1 replication journey--part 2: Surpassing o1-preview through simple distillation, big progress or bitter lesson? arXiv preprint arXiv:2411.16489, 2024
Huang, Z., Zou, H., Li, X., Liu, Y., Zheng, Y., Chern, E., Xia, S., Qin, Y., Yuan, W., and Liu, P. O1 replication journey--part 2: Surpassing o1-preview through simple distillation, big progress or bitter lesson? arXiv preprint arXiv:2411.16489, 2024
2024 arXiv
-
[15]
Kingma, D. P. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014
2014 arXiv
-
[16]
Y., Chandu, K., Dziri, N., Kumar, S., Zick, T., Choi, Y., et al
Lambert, N., Pyatkin, V., Morrison, J., Miranda, L., Lin, B. Y., Chandu, K., Dziri, N., Kumar, S., Zick, T., Choi, Y., et al. Rewardbench: Evaluating reward models for language modeling. arXiv preprint arXiv:2403.13787, 2024
2024 arXiv
-
[17]
Let's verify step by step
Lightman, H., Kosaraju, V., Burda, Y., Edwards, H., Baker, B., Lee, T., Leike, J., Schulman, J., Sutskever, I., and Cobbe, K. Let's verify step by step. In The Twelfth International Conference on Learning Representations, 2024. URL https://openreview.net/forum?id=v8L0pN6EOi
2024
-
[18]
Focal loss for dense object detection
Lin, T.-Y., Goyal, P., Girshick, R., He, K., and Doll \'a r, P. Focal loss for dense object detection. In Proceedings of the IEEE international conference on computer vision, pp.\ 2980--2988, 2017
2017
-
[19]
Focal loss for dense object detection
Lin, T.-Y., Goyal, P., Girshick, R., He, K., and Dollár, P. Focal loss for dense object detection. IEEE Transactions on Pattern Analysis and Machine Intelligence, 42 0 (2): 0 318--327, 2020. doi:10.1109/TPAMI.2018.2858826
2020
-
[20]
Simpo: Simple preference optimization with a reference-free reward
Meng, Y., Xia, M., and Chen, D. Simpo: Simple preference optimization with a reference-free reward. In Advances in Neural Information Processing Systems (NeurIPS), 2024
2024
-
[21]
Imitate, explore, and self-improve: A reproduction report on slow-thinking reasoning systems
Min, Y., Chen, Z., Jiang, J., Chen, J., Deng, J., Hu, Y., Tang, Y., Wang, J., Cheng, X., Song, H., et al. Imitate, explore, and self-improve: A reproduction report on slow-thinking reasoning systems. arXiv preprint arXiv:2412.09413, 2024
2024 arXiv
-
[22]
Introducing OpenAI o1 , 2024
OpenAI . Introducing OpenAI o1 , 2024. URL https://openai.com/o1/
2024
-
[23]
O1 replication journey: A strategic progress report--part 1
Qin, Y., Li, X., Zou, H., Liu, Y., Xia, S., Huang, Z., Ye, Y., Yuan, W., Liu, H., Li, Y., et al. O1 replication journey: A strategic progress report--part 1. arXiv preprint arXiv:2410.18982, 2024
2024 arXiv
-
[24]
From \ r\ to \ q *\ : Your language model is secretly a q-function
Rafailov, R., Hejna, J., Park, R., and Finn, C. From \ r\ to \ q *\ : Your language model is secretly a q-function. In First Conference on Language Modeling, 2024 a . URL https://openreview.net/forum?id=kEVcNxtqXk
2024
-
[25]
D., Ermon, S., and Finn, C
Rafailov, R., Sharma, A., Mitchell, E., Manning, C. D., Ermon, S., and Finn, C. Direct preference optimization: Your language model is secretly a reward model. Advances in Neural Information Processing Systems, 36, 2024 b
2024
-
[26]
D., and Arora, S
Razin, N., Wang, Z., Strauss, H., Wei, S., Lee, J. D., and Arora, S. What makes a reward model a good teacher? an optimization perspective. arXiv preprint arXiv:2503.15477, 2025
2025
-
[27]
High-dimensional continuous control using generalized advantage estimation
Schulman, J., Moritz, P., Levine, S., Jordan, M., and Abbeel, P. High-dimensional continuous control using generalized advantage estimation. arXiv preprint arXiv:1506.02438, 2015
2015 arXiv
-
[28]
Proximal policy optimization algorithms
Schulman, J., Wolski, F., Dhariwal, P., Radford, A., and Klimov, O. Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347, 2017
2017 arXiv
-
[29]
Rewarding progress: Scaling automated process verifiers for llm reasoning
Setlur, A., Nagpal, C., Fisch, A., Geng, X., Eisenstein, J., Agarwal, R., Agarwal, A., Berant, J., and Kumar, A. Rewarding progress: Scaling automated process verifiers for llm reasoning. arXiv preprint arXiv:2410.08146, 2024
-
[30]
Deepseekmath: Pushing the limits of mathematical reasoning in open language models
Shao, Z., Wang, P., Zhu, Q., Xu, R., Song, J., Bi, X., Zhang, H., Zhang, M., Li, Y., Wu, Y., et al. Deepseekmath: Pushing the limits of mathematical reasoning in open language models. arXiv preprint arXiv:2402.03300, 2024
2024 arXiv
-
[31]
Sutton, R. S. and Barto, A. G. Reinforcement Learning: An Introduction. A Bradford Book, Cambridge, MA, USA, 2018. ISBN 0262039249
2018
-
[32]
Llama 2: Open foundation and fine-tuned chat models
Touvron, H., Martin, L., Stone, K., Albert, P., Almahairi, A., Babaei, Y., Bashlykov, N., Batra, S., Bhargava, P., Bhosale, S., et al. Llama 2: Open foundation and fine-tuned chat models. arXiv preprint arXiv:2307.09288, 2023
2023 arXiv
-
[33]
Math-shepherd: Verify and reinforce llms step-by-step without human annotations
Wang, P., Li, L., Shao, Z., Xu, R., Dai, D., Li, Y., Chen, D., Wu, Y., and Sui, Z. Math-shepherd: Verify and reinforce llms step-by-step without human annotations. In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers...
2024
-
[34]
J., Sreedhar, M
Wang, Z., Dong, Y., Delalleau, O., Zeng, J., Shen, G., Egert, D., Zhang, J. J., Sreedhar, M. N., and Kuchaiev, O. Helpsteer2: Open-source dataset for training top-performing reward models. arXiv preprint arXiv:2406.08673, 2024 b
2024 arXiv
-
[35]
Williams, R. J. Simple statistical gradient-following algorithms for connectionist reinforcement learning. Machine learning, 8: 0 229--256, 1992
1992
-
[36]
A., Ostendorf, M., and Hajishirzi, H
Wu, Z., Hu, Y., Shi, W., Dziri, N., Suhr, A., Ammanabrolu, P., Smith, N. A., Ostendorf, M., and Hajishirzi, H. Fine-grained human feedback gives better rewards for language model training. Advances in Neural Information Processing Systems, 36: 0 59008--59033, 2023
2023
-
[37]
Yang, A., Yang, B., Zhang, B., Hui, B., Zheng, B., Yu, B., Li, C., Liu, D., Huang, F., Wei, H., et al. Qwen2. 5 technical report. arXiv preprint arXiv:2412.15115, 2024
2024 arXiv
-
[38]
Preference-grounded token-level guidance for language model fine-tuning
Yang, S., Zhang, S., Xia, C., Feng, Y., Xiong, C., and Zhou, M. Preference-grounded token-level guidance for language model fine-tuning. In Thirty-seventh Conference on Neural Information Processing Systems, 2023. URL https://openreview.net/forum?id=6SRE9GZ9s6
2023
-
[39]
Free process rewards without process labels
Yuan, L., Li, W., Chen, H., Cui, G., Ding, N., Zhang, K., Zhou, B., Liu, Z., and Peng, H. Free process rewards without process labels. arXiv preprint arXiv:2412.01981, 2024
2024 arXiv
-
[40]
Scaling relationship on learning mathematical reasoning with large language models
Yuan, Z., Yuan, H., Li, C., Dong, G., Lu, K., Tan, C., Zhou, C., and Zhou, J. Scaling relationship on learning mathematical reasoning with large language models. arXiv preprint arXiv:2308.01825, 2023
2023 arXiv
-
[41]
DPO meets PPO : Reinforced token optimization for RLHF
Zhong, H., Feng, G., Xiong, W., Cheng, X., Zhao, L., He, D., Bian, J., and Wang, L. DPO meets PPO : Reinforced token optimization for RLHF . In ICML 2024 Workshop on Models of Human Feedback for AI Alignment, 2024. URL https://openreview.net/forum?id=gtFG2tBREa
2024
-
[42]
Ziebart, B. D. Modeling purposeful adaptive behavior with the principle of maximum causal entropy. Carnegie Mellon University, 2010
2010
-
[43]
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 gl...
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.