Recognition: 2 theorem links
· Lean TheoremSelf-Distilled Reasoner: On-Policy Self-Distillation for Large Language Models
Pith reviewed 2026-05-12 03:47 UTC · model grok-4.3
The pith
A single LLM can improve its reasoning by distilling from a privileged-context version of itself on its own rollouts.
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
On-Policy Self-Distillation (OPSD) lets a single LLM act simultaneously as teacher and student with different contexts: the teacher policy conditions on privileged information such as verified reasoning traces, the student policy receives only the question, and training minimizes the per-token divergence between the two distributions evaluated on the student's own rollouts, yielding better results on mathematical reasoning benchmarks than reinforcement learning or off-policy distillation.
What carries the argument
On-Policy Self-Distillation (OPSD), the single-model teacher-student setup that supplies privileged reasoning traces to one context and none to the other, then aligns their output distributions via divergence minimization on the student's self-generated trajectories.
If this is right
- The method achieves superior token efficiency compared to reinforcement learning approaches on math reasoning tasks.
- It delivers better performance than off-policy distillation methods that rely on separate teacher models.
- Ground-truth solutions available in reasoning datasets can be leveraged directly without external models.
- The single-model setup reduces the need for maintaining a larger teacher LLM during training.
Where Pith is reading between the lines
- Iterating the self-distillation process could enable repeated self-improvement cycles if each round produces stronger verified traces.
- The approach might transfer to non-math domains whenever verified step-by-step solutions can be supplied as privileged context.
- Because training stays on-policy, the learned policy may generalize more reliably at inference time than off-policy alternatives.
Load-bearing premise
A sufficiently capable LLM can rationalize external privileged reasoning traces and use them to teach its weaker self.
What would settle it
If applying OPSD training produces no accuracy gain or lower accuracy than standard supervised fine-tuning or RL baselines on held-out mathematical reasoning problems, the central claim would be falsified.
read the original abstract
Knowledge distillation improves large language model (LLM) reasoning by compressing the knowledge of a teacher LLM to train smaller LLMs. On-policy distillation advances this approach by having the student sample its own trajectories while a teacher LLM provides dense token-level supervision, addressing the distribution mismatch between training and inference in off-policy distillation methods. However, on-policy distillation typically requires a separate, often larger, teacher LLM and does not explicitly leverage ground-truth solutions available in reasoning datasets. Inspired by the intuition that a sufficiently capable LLM can rationalize external privileged reasoning traces and teach its weaker self, we introduce On-Policy Self-Distillation (OPSD), a learning algorithm where a single LLM acts as both teacher and student with different contexts. The teacher policy conditions on privileged information (e.g., verified reasoning traces) while the student policy sees only the question; training minimizes the per-token divergence between these distributions over the student's own rollouts. We demonstrate the efficacy of our method on multiple mathematical reasoning benchmarks, achieving superior token efficiency compared to reinforcement learning methods and better performance over off-policy distillation methods. Code repo: https://github.com/siyan-zhao/OPSD.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces On-Policy Self-Distillation (OPSD), an algorithm in which a single LLM serves as both teacher and student. The teacher policy conditions on privileged information such as verified reasoning traces while the student policy receives only the question; training minimizes per-token divergence between the two distributions evaluated on the student's own rollouts. The authors report that OPSD yields better performance on mathematical reasoning benchmarks than off-policy distillation baselines and superior token efficiency relative to reinforcement-learning methods.
Significance. If the empirical claims hold under rigorous controls, the work offers a practical route to self-improvement of LLM reasoning that avoids the need for a separate larger teacher model and exploits ground-truth solutions already present in reasoning datasets. The public code repository is a positive factor for reproducibility.
major comments (3)
- [§3] §3 (Method): The central modeling assumption—that conditioning the shared-parameter model on privileged reasoning traces produces a teacher distribution that systematically assigns higher probability to correct reasoning steps than the student distribution on the student's own rollouts—is stated but not accompanied by any diagnostic analysis (e.g., per-step probability differences or KL divergence conditioned on correctness). Without such evidence the objective risks reducing to on-policy regularization, undermining the claimed advantage over off-policy distillation.
- [§4] §4 (Experiments): Performance gains on GSM8K, MATH, and other benchmarks are presented without error bars, multiple random seeds, or statistical significance tests. In addition, the section does not report ablations that isolate the contribution of the privileged-context teacher (e.g., teacher with ground-truth vs. model-generated traces, or teacher context ablated entirely). These omissions are load-bearing for the superiority claims.
- [§4.3] §4.3 (Baselines): The comparison with RL methods reports better token efficiency, yet the paper does not specify the exact metric (training tokens, inference tokens, or total environment interactions) or control for equivalent compute budgets. This detail is required to substantiate the efficiency claim.
minor comments (2)
- [Abstract] The abstract states that the method achieves “superior token efficiency compared to reinforcement learning methods,” but the main text should explicitly define the token-efficiency metric and report the corresponding numbers in a table.
- [§3.1] Notation for the teacher and student policies (π_teacher and π_student) is introduced without a clear statement of whether parameters are tied or how gradients flow through the shared model during the divergence minimization.
Simulated Author's Rebuttal
We thank the referee for the constructive and detailed feedback. We address each major comment point by point below and indicate the revisions planned for the manuscript to strengthen the presentation and empirical support.
read point-by-point responses
-
Referee: [§3] §3 (Method): The central modeling assumption—that conditioning the shared-parameter model on privileged reasoning traces produces a teacher distribution that systematically assigns higher probability to correct reasoning steps than the student distribution on the student's own rollouts—is stated but not accompanied by any diagnostic analysis (e.g., per-step probability differences or KL divergence conditioned on correctness). Without such evidence the objective risks reducing to on-policy regularization, undermining the claimed advantage over off-policy distillation.
Authors: We agree that explicit diagnostic evidence would better substantiate the modeling assumption and distinguish OPSD from generic on-policy regularization. In the revised manuscript we will add a diagnostic analysis (new figure or subsection in §3 or the appendix) that reports per-step log-probability differences between the teacher and student distributions, conditioned on whether each reasoning step is correct according to the ground-truth trace. We will also report the average KL divergence separately for correct and incorrect steps on held-out rollouts. These diagnostics will be computed on the same student-generated trajectories used for training. revision: yes
-
Referee: [§4] §4 (Experiments): Performance gains on GSM8K, MATH, and other benchmarks are presented without error bars, multiple random seeds, or statistical significance tests. In addition, the section does not report ablations that isolate the contribution of the privileged-context teacher (e.g., teacher with ground-truth vs. model-generated traces, or teacher context ablated entirely). These omissions are load-bearing for the superiority claims.
Authors: We acknowledge that reporting variability and isolating the privileged-context component are necessary for rigorous claims. In the revision we will rerun the main experiments with at least three independent random seeds, report means and standard deviations, and include statistical significance tests (paired t-tests) against the strongest baselines. We will also add the requested ablations: (i) teacher conditioned on ground-truth traces versus model-generated traces, and (ii) an ablation in which the teacher receives no privileged context at all. These results will be presented in §4 and the appendix. revision: yes
-
Referee: [§4.3] §4.3 (Baselines): The comparison with RL methods reports better token efficiency, yet the paper does not specify the exact metric (training tokens, inference tokens, or total environment interactions) or control for equivalent compute budgets. This detail is required to substantiate the efficiency claim.
Authors: We will clarify the definition in the revised §4.3: token efficiency is measured as the total number of tokens processed during training (student rollout tokens plus teacher supervision tokens). We will also add a compute-matched comparison by reporting approximate total FLOPs for OPSD and the RL baselines and, where feasible, re-running the RL methods under a matched token or FLOP budget. A new table will summarize these controlled comparisons. revision: yes
Circularity Check
No significant circularity; empirical algorithm validated externally
full rationale
The paper proposes On-Policy Self-Distillation (OPSD) as an empirical training algorithm for LLMs, with the teacher policy conditioning on privileged reasoning traces and the student on the question alone, minimizing per-token KL divergence over student-sampled trajectories. No derivation chain exists that reduces a claimed result to its inputs by construction: performance claims are measured on external mathematical reasoning benchmarks (e.g., GSM8K, MATH) against RL and off-policy baselines, with code released for reproduction. The motivating intuition about rationalizing privileged traces is stated explicitly as inspiration rather than a self-referential axiom, and no self-citations, fitted parameters renamed as predictions, or uniqueness theorems are invoked to force the central result. The method is self-contained against external evaluation.
Axiom & Free-Parameter Ledger
axioms (1)
- domain assumption A sufficiently capable LLM can rationalize external privileged reasoning traces and provide useful supervision to its weaker self.
Lean theorems connected to this paper
-
Foundation.HierarchyEmergencehierarchy_emergence_forces_phi unclear?
unclearRelation between the paper passage and the cited Recognition theorem.
We demonstrate the efficacy of our method on multiple mathematical reasoning benchmarks, achieving superior token efficiency compared to reinforcement learning methods and better performance over off-policy distillation methods.
What do these tags mean?
- matches
- The paper's claim is directly supported by a theorem in the formal canon.
- supports
- The theorem supports part of the paper's argument, but the paper may add assumptions or extra steps.
- extends
- The paper goes beyond the formal theorem; the theorem is a base layer rather than the whole result.
- uses
- The paper appears to rely on the theorem as machinery.
- contradicts
- The paper's claim conflicts with a theorem or certificate in the canon.
- unclear
- Pith found a possible connection, but the passage is too broad, indirect, or ambiguous to say the theorem truly supports the claim.
Forward citations
Cited by 60 Pith papers
-
AnyFlow: Any-Step Video Diffusion Model with On-Policy Flow Map Distillation
AnyFlow enables any-step video diffusion by distilling flow-map transitions over arbitrary time intervals with on-policy backward simulation.
-
Lightning OPD: Efficient Post-Training for Large Reasoning Models with Offline On-Policy Distillation
Lightning OPD enforces teacher consistency by precomputing log-probabilities over SFT rollouts, matching standard OPD performance with bounded gradient discrepancy and achieving 4x speedup on math and code reasoning tasks.
-
From Plans to Pixels: Learning to Plan and Orchestrate for Open-Ended Image Editing
A planner-orchestrator system learns long-horizon image editing by maximizing outcome-based rewards from a vision-language judge and refining plans from successful trajectories.
-
Respecting Self-Uncertainty in On-Policy Self-Distillation for Efficient LLM Reasoning
EGRSD and CL-EGRSD advance the accuracy-length frontier in LLM reasoning by entropy-guided weighting of token-level distillation signals from the teacher.
-
Multi-Rollout On-Policy Distillation via Peer Successes and Failures
MOPD improves on-policy distillation for LLMs by using peer successes for positive patterns and failures for negative examples to create more informative teacher signals.
-
Combining On-Policy Optimization and Distillation for Long-Context Reasoning in Large Language Models
dGRPO merges outcome-based policy optimization with dense teacher guidance from on-policy distillation, yielding more stable long-context reasoning on the new LongBlocks synthetic dataset.
-
Learning Agentic Policy from Action Guidance
ActGuide-RL uses human action data as plan-style guidance in mixed-policy RL to overcome exploration barriers in LLM agents, matching SFT+RL performance on search benchmarks without cold-start training.
-
GEAR: Granularity-Adaptive Advantage Reweighting for LLM Agents via Self-Distillation
GEAR reshapes GRPO trajectory advantages using divergence signals from a ground-truth-conditioned teacher to create adaptive token- and segment-level credit regions.
-
From Generic Correlation to Input-Specific Credit in On-Policy Self Distillation
Self-distillation token rewards measure input-response-feedback pointwise mutual information, and CREDIT extracts the input-specific component with contrastive baselines to improve LLM reasoning performance.
-
Unmasking On-Policy Distillation: Where It Helps, Where It Hurts, and Why
Distillation signals align better with ideal updates on incorrect student rollouts than correct ones, with optimal teacher context depending on student capacity and task.
-
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.
-
TRACE: Distilling Where It Matters via Token-Routed Self On-Policy Alignment
TRACE improves math reasoning by distilling only on annotator-marked critical spans with forward KL on correct key spans, optional reverse KL on errors, and GRPO elsewhere, gaining 2.76 points over GRPO while preservi...
-
TAD: Temporal-Aware Trajectory Self-Distillation for Fast and Accurate Diffusion LLM
TAD improves the accuracy-parallelism trade-off in diffusion LLMs via temporal-aware self-distillation that applies hard labels to soon-to-be-decoded tokens and soft supervision to future tokens.
-
Cornerstones or Stumbling Blocks? Deciphering the Rock Tokens in On-Policy Distillation
Persistent 'Rock Tokens' in on-policy distillation resist teacher corrections, consume large gradient norms, yet add negligible value to reasoning, allowing targeted bypassing to streamline alignment.
-
LaTER: Efficient Test-Time Reasoning via Latent Exploration and Explicit Verification
LaTER reduces LLM token usage 16-33% on reasoning benchmarks by exploring in latent space then switching to explicit CoT verification, with gains like 70% to 73.3% on AIME 2025 in the training-free version.
-
VISD: Enhancing Video Reasoning via Structured Self-Distillation
VISD improves VideoLLM reasoning performance and training efficiency by combining structured multi-dimensional self-distillation feedback with RL via direction-magnitude decoupling, curriculum scheduling, and EMA stab...
-
Preference-Based Self-Distillation: Beyond KL Matching via Reward Regularization
PBSD derives a reward-reweighted teacher distribution as the analytic optimum of a reward-regularized objective, yielding better stability and performance than KL-based self-distillation on math reasoning and tool-use tasks.
-
MAD-OPD: Breaking the Ceiling in On-Policy Distillation via Multi-Agent Debate
MAD-OPD recasts on-policy distillation teachers as a debating collective to supply better supervision, lifting agentic and code performance over single-teacher OPD across multiple model sizes.
-
TCOD: Exploring Temporal Curriculum in On-Policy Distillation for Multi-turn Autonomous Agents
TCOD stabilizes on-policy distillation for multi-turn agents via temporal curriculum on trajectory depth, improving performance up to 18 points over vanilla OPD and sometimes surpassing the teacher.
-
Near-Future Policy Optimization
NPO uses a policy's own near-future checkpoint as auxiliary trajectories to maximize effective learning signal S = Q/V, improving performance from 57.88 to 63.15 on Qwen3-VL-8B-Instruct with GRPO while accelerating co...
-
Demystifying OPD: Length Inflation and Stabilization Strategies for Large Language Models
OPD for LLMs suffers length inflation and repetition collapse; StableOPD uses reference divergence and rollout mixing to prevent it and improve math reasoning performance by 7.2% on average.
-
Self-Distilled RLVR
RLSD mixes self-distillation for token-level policy difference magnitudes with RLVR for reliable update directions from response correctness to reach higher convergence and better training stability.
-
PACED: Distillation and On-Policy Self-Distillation at the Frontier of Student Competence
PACED applies student pass-rate weighting w(p)=p(1-p) to distillation, concentrating on the zone of proximal development and delivering up to +8.2 gains on AIME tasks with reduced forgetting.
-
Prefix Teach, Suffix Fade: Local Teachability Collapse in Strong-to-Weak On-Policy Distillation
Local teachability collapse in trajectory suffixes makes uniform dense supervision suboptimal in strong-to-weak OPD; truncating at BIC-style change points on teacher margin improves performance.
-
Revisiting DAgger in the Era of LLM-Agents
DAgger-style training with turn-level policy interpolation raises 4B and 8B LLM agents to 27.3% and 29.8% on SWE-bench Verified, beating several larger published systems.
-
Emergent and Subliminal Misalignment Through the Lens of Data-Mediated Transfer
Emergent and subliminal misalignment in LLMs arise from data structure interactions and transfer via benign distillation data, with stronger effects under shared functional structure and on-policy settings.
-
Learning with Rare Success but Rich Feedback via Reflection-Enhanced Self-Distillation
RESD turns failure trajectories into token-level supervision via retrospective reflections and a persistent global playbook, enabling faster improvement than standard self-distillation or GRPO with only one rollout pe...
-
GEAR: Granularity-Adaptive Advantage Reweighting for LLM Agents via Self-Distillation
GEAR adaptively reweights GRPO advantages in LLM RL by using divergence spikes from self-distillation to define semantic segments and modulate local credit.
-
GRAFT: Graph-Tokenized LLMs for Tool Planning
GRAFT internalizes tool dependency graphs via dedicated special tokens in LLMs and applies on-policy context distillation to achieve higher exact sequence matching and dependency legality than prior external-graph methods.
-
Hide to See: Reasoning-prefix Masking for Visual-anchored Thinking in VLM Distillation
A reasoning-prefix masking strategy during VLM distillation encourages students to anchor their thinking on visual evidence, yielding better multimodal reasoning than prior distillation baselines.
-
Hide to See: Reasoning-prefix Masking for Visual-anchored Thinking in VLM Distillation
A new distillation method uses token-wise salient reasoning-prefix masking and self-paced scheduling to anchor student VLM thinking on visual inputs, outperforming prior distillation approaches on multimodal reasoning...
-
Anti-Self-Distillation for Reasoning RL via Pointwise Mutual Information
Anti-Self-Distillation reverses self-distillation signals via PMI to fix overconfidence on structural tokens, matching GRPO baseline accuracy 2-10x faster with up to 11.5 point gains across 4B-30B models.
-
Selective Off-Policy Reference Tuning with Plan Guidance
SORT turns all-wrong prompts into selective learning signals by weighting tokens more predictable under plan guidance from reference solutions, improving over GRPO on reasoning benchmarks especially for weaker models.
-
Adaptive Teacher Exposure for Self-Distillation in LLM Reasoning
ATESD makes teacher exposure to reference reasoning a learnable control variable via a Beta-policy optimized on future student improvement, yielding gains of up to +2.33 points over fixed-exposure self-distillation on...
-
ProteinOPD: Towards Effective and Efficient Preference Alignment for Protein Design
ProteinOPD uses token-level on-policy distillation from multiple preference-specific teacher models into a shared student to balance competing objectives in protein design, delivering gains on targets without losing d...
-
AIPO: : Learning to Reason from Active Interaction
AIPO trains LLMs to expand their reasoning capability boundary via active multi-agent interaction with Verify, Knowledge, and Reasoning agents during RLVR, using importance sampling and clipping to handle feedback, th...
-
SOD: Step-wise On-policy Distillation for Small Language Model Agents
SOD reweights on-policy distillation strength step-by-step using divergence to stabilize tool use in small language model agents, yielding up to 20.86% gains and 26.13% on AIME 2025 for a 0.6B model.
-
D-OPSD: On-Policy Self-Distillation for Continuously Tuning Step-Distilled Diffusion Models
D-OPSD enables continuous supervised fine-tuning of few-step diffusion models via on-policy self-distillation where the model acts as both teacher (multimodal context) and student (text-only context) on its own roll-outs.
-
Multilingual Safety Alignment via Self-Distillation
MSD enables cross-lingual safety transfer in LLMs via self-distillation with Dual-Perspective Safety Weighting, improving safety in low-resource languages without target response data.
-
Co-Evolving Policy Distillation
CoPD integrates multiple expert capabilities by running parallel RLVR training with bidirectional online policy distillation among experts, outperforming mixed RLVR and sequential OPD while surpassing domain-specific ...
-
Process Supervision of Confidence Margin for Calibrated LLM Reasoning
RLCM trains LLMs with a margin-enhanced process reward that widens the gap between correct and incorrect reasoning steps, improving calibration on math, code, logic, and science tasks without hurting accuracy.
-
Hidden States Know Where Reasoning Diverges: Credit Assignment via Span-Level Wasserstein Distance
Span-level Wasserstein distances between hidden-state distributions of correct and incorrect rollouts provide a self-supervised signal to reweight advantages in GRPO, improving fine-grained credit assignment on math a...
-
Reward Weighted Classifier-Free Guidance as Policy Improvement in Autoregressive Models
Reward-weighted classifier-free guidance approximates Q-function policy improvement in autoregressive models, enabling test-time reward optimization and faster RL convergence via distillation.
-
$\pi$-Play: Multi-Agent Self-Play via Privileged Self-Distillation without External Data
π-Play uses self-generated question construction paths as privileged information in multi-agent self-distillation to convert sparse-reward self-play into a dense-feedback loop, surpassing supervised search agents and ...
-
Lightning OPD: Efficient Post-Training for Large Reasoning Models with Offline On-Policy Distillation
Lightning OPD is an offline on-policy distillation method that matches standard OPD performance at 4x efficiency by enforcing teacher consistency between SFT and distillation phases.
-
Skill-SD: Skill-Conditioned Self-Distillation for Multi-turn LLM Agents
Skill-SD turns an agent's completed trajectories into dynamic natural-language skills that condition only the teacher in self-distillation, yielding 14-42% gains over RL and OPSD baselines on multi-turn agent benchmarks.
-
Visual Enhanced Depth Scaling for Multimodal Latent Reasoning
Visual replay module and adaptive depth scaling improve multimodal latent reasoning, reaching SOTA benchmarks with faster inference than explicit chain-of-thought methods.
-
Self-Distilled Reinforcement Learning for Co-Evolving Agentic Recommender Systems
CoARS enables co-evolving recommender and user agents by using interaction-derived rewards and self-distilled credit assignment to internalize multi-turn feedback into model parameters, outperforming prior agentic baselines.
-
PolicyLong: Towards On-Policy Context Extension
PolicyLong shifts long-context data synthesis to an on-policy loop that re-screens contexts using the evolving model's entropy landscape, producing a self-curriculum that outperforms static offline baselines with larg...
-
CRISP: Compressed Reasoning via Iterative Self-Policy Distillation
CRISP achieves 57-59% token reduction on MATH-500 with 9-16 point accuracy gains on Qwen3 models via iterative self-distillation of concise reasoning behavior.
-
Selective Off-Policy Reference Tuning with Plan Guidance
SORT converts all-failed reasoning prompts into selective, structure-aware training signals by weighting tokens according to how much a reference-derived plan increases their probability.
-
On-Policy Distillation with Best-of-N Teacher Rollout Selection
BRTS improves on-policy distillation by sampling multiple teacher rollouts and selecting the best one via a correctness-first then alignment priority rule, yielding gains on AIME and AMC math benchmarks.
-
On-Policy Distillation with Best-of-N Teacher Rollout Selection
BRTS improves on-policy distillation by selecting the highest-quality teacher trajectory from a small pool of samples based on correctness and alignment with the student, yielding gains on AIME and AMC math benchmarks.
-
Reasoning Compression with Mixed-Policy Distillation
Mixed-Policy Distillation transfers concise reasoning behavior from larger to smaller LLMs by having the teacher compress student-generated trajectories, cutting token usage up to 27% while raising benchmark scores.
-
Self-Play Enhancement via Advantage-Weighted Refinement in Online Federated LLM Fine-Tuning with Real-Time Feedback
SPEAR enables online federated LLM fine-tuning by using feedback-guided self-play to create contrastive pairs trained with maximum likelihood on correct completions and confidence-weighted unlikelihood on incorrect on...
-
UniSD: Towards a Unified Self-Distillation Framework for Large Language Models
UniSD unifies complementary self-distillation mechanisms for autoregressive LLMs and achieves up to +5.4 point gains over base models and +2.8 over baselines across six benchmarks and six models.
-
VISD: Enhancing Video Reasoning via Structured Self-Distillation
VISD improves VideoLLM reasoning by adding multi-dimensional diagnostic self-distillation and RL decoupling, yielding higher accuracy, better grounding, and nearly 2x faster training convergence.
-
VISD: Enhancing Video Reasoning via Structured Self-Distillation
VISD adds structured privileged feedback from a judge model and a direction-magnitude decoupling trick to let VideoLLMs learn token-level credit assignment while keeping RL stable, yielding higher accuracy and roughly...
-
Multilingual Safety Alignment via Self-Distillation
MSD transfers LLM safety from high-resource to low-resource languages via self-distillation and dual-perspective weighting without needing response data.
-
Visual Enhanced Depth Scaling for Multimodal Latent Reasoning
Visual replay and depth scaling in latent reasoning produce state-of-the-art multimodal results with faster inference than explicit CoT.
Reference graph
Works this paper leans on
-
[1]
Chen, Z., Deng, Y ., Yuan, H., Ji, K., and Gu, Q
URL https: //hkunlp.github.io/blog/2025/Polaris. Chen, Z., Deng, Y ., Yuan, H., Ji, K., and Gu, Q. Self-play fine-tuning converts weak language models to strong lan- guage models. InInternational Conference on Machine Learning, pp. 6621–6642. PMLR,
work page 2025
-
[2]
SFT Memorizes, RL Generalizes: A Comparative Study of Foundation Model Post-training
Chu, T., Zhai, Y ., Yang, J., Tong, S., Xie, S., Schuurmans, D., Le, Q. V ., Levine, S., and Ma, Y . Sft memorizes, rl generalizes: A comparative study of foundation model post-training.arXiv preprint arXiv:2501.17161,
work page internal anchor Pith review arXiv
-
[3]
OpenThoughts: Data Recipes for Reasoning Models
URLhttps://arxiv.org/abs/2506.04178. Gulcehre, C., Paine, T. L., Srinivasan, S., Konyushkova, K., Weerts, L., Sharma, A., Siddhant, A., Ahern, A., Wang, M., Gu, C., et al. Reinforced self-training (rest) for language modeling.arXiv preprint arXiv:2308.08998,
work page internal anchor Pith review arXiv
-
[4]
DeepSeek-R1: Incentivizing Reasoning Capability in LLMs via Reinforcement Learning
Guo, D., Yang, D., Zhang, H., Song, J., Zhang, R., Xu, R., Zhu, Q., Ma, S., Wang, P., Bi, X., et al. Deepseek-r1: In- centivizing reasoning capability in llms via reinforcement learning.arXiv preprint arXiv:2501.12948,
work page internal anchor Pith review Pith/arXiv arXiv
-
[5]
URL https: //arxiv.org/abs/1503.02531. Hu, E. J., Shen, Y ., Wallis, P., Allen-Zhu, Z., Li, Y ., Wang, S., Wang, L., and Chen, W. LoRA: Low-rank adaptation of large language models. InInternational Conference on Learning Representations,
work page internal anchor Pith review Pith/arXiv arXiv
-
[6]
URL https:// openreview.net/forum?id=nZeVKeeFYf9. Huan, M., Li, Y ., Zheng, T., Xu, X., Kim, S., Du, M., Poovendran, R., Neubig, G., and Yue, X. Does math reasoning improve general llm capabilities? understand- ing transferability of llm reasoning.arXiv preprint arXiv:2507.00432,
-
[7]
Reinforcement Learning via Self-Distillation
H¨ubotter, J., L¨ubeck, F., Behric, L., Baumann, A., Bagatella, M., Marta, D., Hakimi, I., Shenfeld, I., Kleine Buening, T., Guestrin, C., and Krause, A. Reinforcement learning via self-distillation.arXiv preprint arXiv:2601.20802,
work page internal anchor Pith review arXiv
-
[8]
Kim, Y . and Rush, A. M. Sequence-level knowledge distilla- tion. InProceedings of the 2016 conference on empirical methods in natural language processing, pp. 1317–1327,
work page 2016
-
[9]
Understanding R1-Zero-Like Training: A Critical Perspective
Liu, Z., Chen, C., Li, W., Qi, P., Pang, T., Du, C., Lee, W. S., and Lin, M. Understanding r1-zero-like training: A critical perspective.arXiv preprint arXiv:2503.20783,
work page internal anchor Pith review Pith/arXiv arXiv
-
[10]
Decoupled Weight Decay Regularization
Loshchilov, I. and Hutter, F. Decoupled weight decay regu- larization.arXiv preprint arXiv:1711.05101,
work page internal anchor Pith review Pith/arXiv arXiv
-
[11]
doi: 10.64434/tml. 20251026. https://thinkingmachines.ai/blog/on-policy- distillation. Mitra, P. and Ulukus, S. Semantic soft bootstrapping: Long context reasoning in llms without reinforcement learning. arXiv preprint arXiv:2512.05105,
-
[12]
10 On-Policy Self-Distillation for Large Language Models Muennighoff, N., Yang, Z., Shi, W., Li, X. L., Fei-Fei, L., Hajishirzi, H., Zettlemoyer, L., Liang, P., Cand `es, E., and Hashimoto, T. s1: Simple test-time scaling.arXiv preprint arXiv:2501.19393,
work page internal anchor Pith review Pith/arXiv arXiv
-
[13]
Jiang, Andy Lo, Gabrielle Berrada, Guillaume Lample, et al
Rastogi, A., Jiang, A. Q., Lo, A., Berrada, G., Lample, G., Rute, J., Barmentlo, J., Yadav, K., Khandelwal, K., Chandu, K. R., et al. Magistral.arXiv preprint arXiv:2506.10910,
-
[14]
DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter
Sanh, V ., Debut, L., Chaumond, J., and Wolf, T. Distilbert, a distilled version of bert: smaller, faster, cheaper and lighter.arXiv preprint arXiv:1910.01108,
work page internal anchor Pith review Pith/arXiv arXiv 1910
-
[15]
Proximal Policy Optimization Algorithms
Schulman, J., Wolski, F., Dhariwal, P., Radford, A., and Klimov, O. Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347,
work page internal anchor Pith review Pith/arXiv arXiv
-
[16]
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: Push- ing the limits of mathematical reasoning in open language models.arXiv preprint arXiv:2402.03300,
work page internal anchor Pith review Pith/arXiv arXiv
-
[17]
Self-Distillation Enables Continual Learning
URL https://arxiv.org/abs/2601.19897. Snell, C., Klein, D., and Zhong, R. Learning by distilling context.arXiv preprint arXiv:2209.15189,
work page internal anchor Pith review arXiv
-
[18]
Kimi K2: Open Agentic Intelligence
Team, K., Bai, Y ., Bao, Y ., Chen, G., Chen, J., Chen, N., Chen, R., Chen, Y ., Chen, Y ., Chen, Y ., et al. Kimi k2: Open agentic intelligence.arXiv preprint arXiv:2507.20534,
work page internal anchor Pith review Pith/arXiv arXiv
-
[19]
Team, O. Open Thoughts. https://open-thoughts.ai, January 2025a. Team, Q. Qwen3 technical report, 2025b. URL https: //arxiv.org/abs/2505.09388. Wang, Y ., Kordi, Y ., Mishra, S., Liu, A., Smith, N. A., Khashabi, D., and Hajishirzi, H. Self-instruct: Aligning language models with self-generated instructions. In Proceedings of the 61st annual meeting of the...
work page internal anchor Pith review Pith/arXiv arXiv
-
[20]
MiMo-V2-Flash Technical Report
URL https://arxiv.org/abs/2601.02780. Xu, W., Han, R., Wang, Z., Le, L., Madeka, D., Li, L., Wang, W. Y ., Agarwal, R., Lee, C.-Y ., and Pfister, T. Speculative knowledge distillation: Bridging the teacher-student gap through interleaved sampling. InThe Thirteenth Interna- tional Conference on Learning Representations, 2024a. Xu, X., Li, M., Tao, C., Shen...
work page internal anchor Pith review arXiv
-
[21]
Limo: Less is more for reasoning
URL https: //arxiv.org/abs/2502.03387. 11 On-Policy Self-Distillation for Large Language Models Yu, L., Jiang, W., Shi, H., Yu, J., Liu, Z., Zhang, Y ., Kwok, J. T., Li, Z., Weller, A., and Liu, W. Metamath: Boot- strap your own mathematical questions for large language models.arXiv preprint arXiv:2309.12284,
-
[22]
DAPO: An Open-Source LLM Reinforcement Learning System at Scale
Yu, Q., Zhang, Z., Zhu, R., Yuan, Y ., Zuo, X., Yue, Y ., Fan, T., Liu, G., Liu, L., Liu, X., et al. Dapo: An open-source llm reinforcement learning system at scale, 2025.URL https://arxiv. org/abs/2503.14476,
work page internal anchor Pith review Pith/arXiv arXiv 2025
-
[23]
VAPO: Efficient and Reliable Reinforcement Learning for Advanced Reasoning Tasks
Yue, Y ., Yuan, Y ., Yu, Q., Zuo, X., Zhu, R., Xu, W., Chen, J., Wang, C., Fan, T., Du, Z., et al. Vapo: Efficient and reliable reinforcement learning for advanced reasoning tasks.arXiv preprint arXiv:2504.05118,
work page internal anchor Pith review arXiv
-
[24]
arXiv preprint arXiv:2501.07301 , year=
Zhang, Z., Zheng, C., Wu, Y ., Zhang, B., Lin, R., Yu, B., Liu, D., Zhou, J., and Lin, J. The lessons of developing process reward models in mathematical reasoning.arXiv preprint arXiv:2501.07301,
-
[25]
Zhao, S., Liu, M., Huang, J., Liu, M., Wang, C., Liu, B., Tian, Y ., Pang, G., Bell, S., Grover, A., et al. Inpainting- guided policy optimization for diffusion large language models.arXiv preprint arXiv:2509.10396,
-
[26]
Group Sequence Policy Optimization
Zheng, C., Liu, S., Li, M., Chen, X.-H., Yu, B., Gao, C., Dang, K., Liu, Y ., Men, R., Yang, A., et al. Group sequence policy optimization.arXiv preprint arXiv:2507.18071,
work page internal anchor Pith review Pith/arXiv arXiv
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.