REVIEW 2 major objections 6 minor 2 cited by
Reward-Gated On-Policy Distillation
T0 review · 2 major / 6 minor · reviewed 2026-07-11 · grok-4.5
Pith's one-line read Teacher logits help a student reasoner only when they agree with verifier rewards on the same trajectories.
desk verdict Clean, usable gate for on-policy distillation: keep reverse-KL only when verifier reward and teacher–student likelihood gap agree; real gains over reverse-KL and TSD-KD on the reported suite. 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 reward–teacher likelihood gate gi: a binary filter that admits a sampled trajectory only if the verifier advantage Ai is directionally aligned with the teacher–student log-likelihood gap (teacher more likely than student on reward-positive rollouts, less likely on reward-negative ones). Reverse-KL is then computed only over the kept trajectories.
What would settle it
Hold the keep-rate fixed and replace the reward–likelihood gate with random trajectory dropout; if the random filter matches or beats RG-OPD on the same student–teacher pair and benchmarks, directional agreement is not doing the claimed work.
Extended reading notes
Core claim
Unconditional on-policy distillation can reinforce bad modes the teacher endorses or erase correct student behaviors the teacher would not produce. RG-OPD addresses this with a trajectory-level reward–teacher gate: distill reverse KL only when a positive advantage co-occurs with higher teacher likelihood than the student’s, or a non-positive advantage co-occurs with lower teacher likelihood. The method preserves token-level supervision while dropping misleading teacher signals, and the resulting students outperform reverse-KL and TSD-KD on reasoning and coding benchmarks.
Load-bearing premise
The method assumes that when a teacher’s total likelihood of a trajectory lines up with whether that answer was correct, the teacher’s token distribution is worth imitating on that trajectory.
Editorial extensions
If this is right
- On-policy distillation for reasoning should condition teacher updates on verifier agreement rather than apply them to every rollout.
- Sparse outcome rewards can act as a reliability filter for dense teacher logits without discarding token-level supervision.
- Students can keep correct behaviors the teacher would not produce while still absorbing guidance where the teacher is informative.
- Gains can grow with longer generation budgets as students imitate more verbose teacher reasoning on the trajectories that pass the gate.
- Joint reward-and-distillation training can use a selective gate instead of always mixing the two signals.
Reading between the lines
- The same directional gate could be applied when the “teacher” is a privileged or older copy of the student rather than an external model.
- Noisy verifiers may require a soft or multi-sample gate; a hard binary rule can drop useful updates or keep harmful ones.
- Trajectory-level gating leaves finer token-level disagreements unused; a token-level reliability score could extend the idea.
- The design points to a general pattern for RL with dense auxiliaries: keep the dense signal only when it agrees with the sparse primary reward.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes RG-OPD, a reward-gated form of on-policy distillation for reasoning post-training. A student samples trajectories, a verifier supplies trajectory-level rewards/advantages (GRPO-style), and a fixed teacher supplies token-level logits on those states. Distillation (top-k reverse KL) is applied only when the sign of the teacher–student trajectory log-likelihood gap agrees with the reward: keep reward-positive trajectories only if the teacher is more likely than the student, and reward-negative ones only if the teacher is less likely (Eqs. 1–3, optional margin δ). Experiments distill Qwen2.5-1.5B from Qwen2.5-14B on UltraInteract and evaluate generation-based math/coding/instruction benchmarks at 1K and 8K max length (Table 1), with training dynamics (Figure 2), top-k ablation (Table 2), and likelihood-ranking results (Table 3). Reported averages favor RG-OPD over reverse-KL and TSD-KD on generation tasks, with code released.
Significance. If the empirical gains hold under broader settings, the work offers a simple, practical bridge between sparse verifier rewards and dense teacher logits without rewriting the RL objective. The gate is easy to implement, the failure modes of unconditional OPD are clearly stated, multi-seed tables and dynamics support the mechanism, and public code aids reproducibility. The contribution is incremental rather than foundational—an empirical filter on top of reverse-KL OPD—but it is well-scoped for reasoning distillation and useful to practitioners combining RLVR with teacher supervision.
major comments (2)
- The central design choice (Eq. 2) treats directional agreement of the trajectory-level teacher–student log-likelihood gap with the GRPO advantage as a proxy that teacher logits are informative rather than misleading. Table 1 shows consistent generation gains, but the manuscript does not independently validate this proxy (e.g., fraction of kept vs. dropped trajectories that are actually correct under the verifier, or ablations that reverse/randomize the gate). Without that, it remains unclear whether the gate is selecting useful teacher signal or merely a correlated subset of trajectories; a short diagnostic would make the mechanism claim load-bearing rather than post-hoc.
- Comparisons to joint RL–KD / reward-aware distillation methods cited in §2 (KDRL, RL-aware KD, Self-Distilled RLVR) are only conceptual. Table 1 baselines are reverse-KL and TSD-KD; there is no head-to-head or controlled ablation against a simple RLVR + reverse-KL regularizer under the same student, teacher, data, and generation budgets. That leaves open whether gating is necessary relative to applying distillation as a broad auxiliary signal on the same setup.
minor comments (6)
- Table 1 caption and body: TSD-KD∗ numbers are borrowed and excluded from Avg. Rank; state more clearly in the main text whether the primary TSD-KD row is a full re-run under identical seeds/generation settings, to avoid apples-to-oranges reading of the 4.9-point claim.
- IFEval is weaker for RG-OPD than TSD-KD at both lengths; the student-centric explanation is plausible but brief—add a short note on whether instruction-following is systematically traded off by reverse-KL gating.
- Figure 2: kept-token fraction falls from ~0.9 to ~0.7; report absolute numbers of kept trajectories or tokens per step so selectivity is interpretable, not only the fraction.
- Eq. (4) and Table 2: top-k with tail correction is well described; state the default K used for the main Table 1 runs explicitly in §4 (Appendix says K=50).
- Notation: Ai is called both reward and GRPO advantage; fix one term in §3 and the figure caption for consistency.
- Table 3: likelihood-ranking underperforms generation extraction; the caveat is good—consider moving the generation-extraction numbers into the main table or appendix for the same four tasks so readers do not over-weight the ranking protocol.
Circularity Check
No significant circularity: empirical filter evaluated on held-out benchmarks, not a derivation that forces its own results.
full rationale
RG-OPD defines a trajectory-level gate (Eq. 2) from observed verifier advantages Ai and teacher/student log-likelihoods LT, LS, then applies reverse-KL only on kept trajectories (Eq. 3). The central claims are empirical averages on generation benchmarks (Table 1: +2.9 over reverse-KL at 1K, +8.2 over the untuned student at 8K). Nothing in the equations forces those accuracy deltas by construction; the gate is a design choice whose value is measured on held-out tasks with multi-seed evaluation and public code. There is no fitted constant re-labeled as a prediction, no uniqueness theorem imported from the authors, and no self-citation that closes the evaluation loop. Related-work citations (GKD, TSD-KD, concurrent RL–KD papers) are ordinary background and do not underwrite the reported gains. The paper is therefore self-contained against external benchmarks with no circular reduction.
Assumptions & free parameters
free parameters (3)
- confidence margin δ =
0 (default)
- top-k truncation K =
50
- learning rate and schedule =
5e-6
assumptions (3)
- domain assumption Verifier (GRPO advantage) provides a reliable trajectory-level correctness signal for the tasks considered.
- domain assumption Top-k reverse KL with tail correction is a faithful enough surrogate for full-vocabulary reverse KL.
- ad hoc to paper Directional agreement of teacher–student log-likelihood gap with reward indicates that teacher logits are informative on that trajectory.
invented entities (1)
-
reward–teacher gate gi
Cite this review
Pith. "Pith review of Reward-Gated On-Policy Distillation." pith.science (2026). https://pith.science/paper/HWYYSWL2
@misc{pith2026260704037,
author = {Pith},
title = {Pith review of: Reward-Gated On-Policy Distillation},
year = {2026},
howpublished = {\url{https://pith.science/paper/HWYYSWL2}},
note = {Machine review of arXiv:2607.04037}
}
read the original abstract
On-policy distillation is a powerful way to transfer reasoning ability from a strong teacher to a smaller student: the student samples trajectories from its own policy, and the teacher provides dense token-level supervision on the states the student actually visits. However, this supervision is not always reliable: a teacher can assign high likelihood to plausible but incorrect solutions, or low likelihood to correct student solutions that follow different reasoning paths. Unconditionally distilling the teacher can therefore reinforce bad modes or erase useful student behavior. To address these limitations, we introduce RG-OPD: Reward-Gated On-Policy Distillation that uses verifier feedback to decide when teacher logits should be trusted. RG-OPD bridges sparse verifier rewards and dense teacher logits, preserving token-level supervision while filtering misleading teacher signals. Across reasoning and coding benchmarks, RG-OPD produces stronger distilled students, outperforming both vanilla reverse-KL distillation and the recent TSD-KD baseline. At 1K generation length, RG-OPD improves over reverse-KL by 2.9 points and over TSD-KD by 4.9 points; in the long-generation setting, it improves over the untuned student by 8.2 points. Our code is available at https://github.com/UoC-tail/RG-OPD.
Figures
Forward citations
Cited by 2 Pith papers
-
REOPD: Reliability-Adaptive Reward Extrapolation for On-Policy Distillation
REOPD replaces the single global extrapolation coefficient in on-policy distillation with per-token compatibility weights and an adaptive batch budget, matching or modestly beating fixed-coefficient baselines on math ...
-
ReOrder-OPD:Reliability-Aware Prompt Ordering for On-Policy Distillation
ReOrder-OPD sorts OPD prompts by a proxy for teacher continuation reliability and consistently beats vanilla ordering on matched math and code experiments.
Reference graph
Works this paper leans on
-
[1]
Agarwal, N
R. Agarwal, N. Vieillard, Y. Zhou, P. Stanczyk, S. R. Garea, M. Geist, and O. Bachem. On- policy distillation of language models: Learning from self-generated mistakes. InThe Twelfth International Conference on Learning Representations, 2024
2024
-
[2]
Austin, A
J. Austin, A. Odena, M. Nye, M. Bosma, H. Michalewski, D. Dohan, E. Jiang, C. Cai, M. Terry, Q. Le, and C. Sutton. Program synthesis with large language models, 2021
2021
-
[3]
Cobbe, V
K. Cobbe, V. Kosaraju, M. Bavarian, M. Chen, H. Jun, L. Kaiser, M. Plappert, J. Tworek, J.Hilton,R.Nakano,C.Hesse,andJ.Schulman. Trainingverifierstosolvemathwordproblems, 2021
2021
-
[4]
Murphy: Reflectivemulti-turnreinforcementlearningforself-correctingcodegenerationinlargelanguage
C.Ekbote,V.Lingam,B.O.Tehrani,J.Huan,sujaysanghavi,A.Deoras,andS.Soatto. Murphy: Reflectivemulti-turnreinforcementlearningforself-correctingcodegenerationinlargelanguage. InFirst Workshop on Foundations of Reasoning in Language Models, 2025
2025
-
[5]
Y. Gu, L. Dong, F. Wei, and M. Huang. MiniLLM: Knowledge distillation of large language models. InThe Twelfth International Conference on Learning Representations, 2024
2024
-
[6]
D. Guo, D. Yang, and H. e. a. Zhang. Deepseek-r1 incentivizes reasoning in llms through reinforcement learning.Nature, 645(8081):633–638, 2025
2025
-
[7]
Hendrycks, C
D. Hendrycks, C. Burns, S. Kadavath, A. Arora, S. Basart, E. Tang, D. Song, and J. Steinhardt. Measuring mathematical problem solving with the math dataset, 2021
2021
-
[8]
G. E. Hinton, O. Vinyals, and J. Dean. Distilling the knowledge in a neural network.ArXiv, abs/1503.02531, 2015
arXiv 2015
Show all 26 references
-
[9]
Hübotter, F
J. Hübotter, F. Lübeck, L. Behric, A. Baumann, M. Bagatella, D. Marta, I. Hakimi, I. Shenfeld, T. Kleine Buening, C. Guestrin, and A. Krause. Reinforcement learning via self-distillation. arXiv preprint arXiv:2601.20802, 2026
2026 arXiv
-
[10]
Explaininyourownwords: Improvingreasoningviatoken-selectivedual knowledgedistillation
M.KimandS.J.Baek. Explaininyourownwords: Improvingreasoningviatoken-selectivedual knowledgedistillation. InTheFourteenthInternationalConferenceonLearningRepresentations, 2026
2026
-
[11]
Q. Li, L. Cui, X. Zhao, L. Kong, and W. Bi. Gsm-plus: A comprehensive benchmark for evaluating the robustness of llms as mathematical problem solvers, 2024
2024
-
[12]
Understandingr1-zero-like training: A critical perspective
Z.Liu, C.Chen, W.Li, P.Qi, T.Pang, C.Du, W.S.Lee, andM.Lin. Understandingr1-zero-like training: A critical perspective. InSecond Conference on Language Modeling, 2025
2025
-
[13]
Schulman, F
J. Schulman, F. Wolski, P. Dhariwal, A. Radford, and O. Klimov. Proximal policy optimization algorithms, 2017
2017
-
[14]
Z. Shao, P. Wang, Q. Zhu, R. Xu, J. Song, X. Bi, H. Zhang, M. Zhang, Y. K. Li, Y. Wu, and D. Guo. Deepseekmath: Pushing the limits of mathematical reasoning in open language models, 2024
2024
-
[15]
Shenfeld, M
I. Shenfeld, M. Damani, J. Hübotter, and P. Agrawal. Self-distillation enables continual learning. arXiv preprint arXiv:2601.19897, 2026
2026 arXiv
-
[16]
Sprague, X
Z. Sprague, X. Ye, K. Bostrom, S. Chaudhuri, and G. Durrett. Musr: Testing the limits of chain-of-thought with multistep soft reasoning, 2024
2024
-
[17]
Suzgun, N
M. Suzgun, N. Scales, N. Schärli, S. Gehrmann, Y. Tay, H. W. Chung, A. Chowdhery, Q. V. Le, E. H. Chi, D. Zhou, and J. Wei. Challenging big-bench tasks and whether chain-of-thought can solve them, 2022. 5
2022
-
[18]
Y. Wang, X. Ma, G. Zhang, Y. Ni, A. Chandra, S. Guo, W. Ren, A. Arulraj, X. He, Z. Jiang, T. Li, M. Ku, K. Wang, A. Zhuang, R. Fan, X. Yue, and W. Chen. Mmlu-pro: A more robust and challenging multi-task language understanding benchmark, 2024
2024
-
[19]
Welbl, N
J. Welbl, N. F. Liu, and M. Gardner. Crowdsourcing multiple choice science questions, 2017
2017
-
[20]
Kdrl: Post-training reasoning llms via unified knowledge distillation and reinforcement learning, 2025
H.Xu,Q.Zhu,H.Deng,J.Li,L.Hou,Y.Wang,L.Shang,R.Xu,andF.Mi. Kdrl: Post-training reasoning llms via unified knowledge distillation and reinforcement learning, 2025
2025
-
[21]
C. Yang, C. Qin, Q. Si, M. Chen, N. Gu, D. Yao, Z. Lin, W. Wang, J. Wang, and N. Duan. Self-distilled rlvr, 2026
2026
-
[22]
L. Yuan, G. Cui, H. Wang, N. Ding, X. Wang, J. Deng, B. Shan, H. Chen, R. Xie, Y. Lin, Z. Liu, B. Zhou, H. Peng, Z. Liu, and M. Sun. Advancing llm reasoning generalists with preference trees, 2024
2024
-
[23]
Zhang, S
Z. Zhang, S. Jiang, Y. Shen, Y. Zhang, D. Ram, S. Yang, Z. Tu, W. Xia, and S. Soatto. Reinforcement-aware knowledge distillation for llm reasoning, 2026
2026
-
[24]
S. Zhao, Z. Xie, M. Liu, J. Huang, G. Pang, F. Chen, and A. Grover. Self-distilled reasoner: On-policy self-distillation for large language models.arXiv preprint arXiv:2601.18734, 2026
2026 arXiv
-
[25]
Zheng, S
C. Zheng, S. Liu, M. Li, X.-H. Chen, B. Yu, C. Gao, K. Dang, Y. Liu, R. Men, A. Yang, J. Zhou, and J. Lin. Group sequence policy optimization, 2025
2025
-
[26]
J. Zhou, T. Lu, S. Mishra, S. Brahma, S. Basu, Y. Luan, D. Zhou, and L. Hou. Instruction- following evaluation for large language models, 2023. 6 A Implementation Details A.1 Setup We adopt the setup from [10]; we distill aQwen2.5-1.5B-Instructstudent from a frozenQwen2.5- 14B...
2023
Reviewed July 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.