Improving Model Reasoning With On Policy Delta Distillation
Listen to the summary
Uses a voice available on your device
Audio options
On this page 4 sections
Related concepts 4 concepts
Key Takeaways
- Standard On Policy Distillation minimizes probability distance on student rollout samples using KL divergence or token level log probability differences.
- On Policy Delta Distillation introduces a delta signal measuring the difference between the reasoning tuned teacher and its pre instruction tuning base model.
- A centering operation subtracts expected rewards to form zero centered advantage values, and a joint stop condition turns off the delta advantage when it conflicts with the original distillation signal.
- For Qwen3 1.7B non thinking mode in Math, the new method increases the average score from 34.8 to 54.6, outperforming standard OPD at 51.0 and ExOPD at 51.4.
Summary & Methodology Analysis
The paper addresses the underexplored fundamental design of on policy distillation, which is a technique for transferring knowledge from a larger teacher model to a smaller student model, aiming to improve its loss function and learning signal without exposure bias or noisy reward designs. Standard methods generate responses using the student network, score sampled tokens using the teacher, and train the student via KL divergence or token level log probability differences. The novel contribution, On Policy Delta Distillation, defines a new distillation reward called the delta signal. This signal measures the difference between the reasoning tuned teacher and its pre instruction tuning base model. To handle reward directions and form zero centered advantage values, it applies a centering operation that subtracts expected rewards under the policy model sampling probabilities from the delta signal. Furthermore, it applies a joint condition or agreement condition as a stop condition that turns off the delta advantage when it conflicts with the original distillation signal, preventing over training and convergence instability.
Interactive System Flowchart
Cross-Examination & FAQs
A deeper dive clarifying mechanics, constraints, and baseline evaluations.
Q1. What is the core problem addressed in the paper?
The paper addresses the underexplored fundamental design of on policy distillation in reinforcement learning to better transfer reasoning capabilities from teacher to student models without exposure bias or noisy reward designs.
Q2. What is On Policy Delta Distillation?
It is a new distillation method that defines a delta signal measuring the difference between a reasoning tuned teacher and its pre instruction tuning base model.
Q3. Did the new method outperform existing baselines?
Yes, it consistently outperformed standard on policy distillation and ExOPD across multiple models and benchmarks in math.
Q4. How does the centering operation work?
It subtracts expected rewards under the policy model sampling probabilities from the delta signal to handle reward directions and form zero centered advantage values.
Q5. What does the joint condition or agreement condition do?
It applies a stop condition that turns off the delta advantage when it conflicts with the original distillation signal, preventing over training and convergence instability.
Q6. What results were achieved with Qwen3 4B?
For Qwen3 4B non thinking mode in Math, it achieves an average score of 70.3, surpassing the 8B model trained with both standard OPD and ExOPD.
Q7. What models and datasets are mentioned in the paper?
Models include Qwen3, Gemma 4, Qwen3 1.7B, Qwen3 4B, Qwen3 8B, Qwen3 30B A3B, Gemma4 E4B it, and Gemma 4 31B it. Datasets include OpenMathReasoning, OpenScienceReasoning 2, OpenCodeReasoning, AIME24, AIME25, AMC23, HMMT25, MATH500, OlympiadBench, ReasoningGym Math, CodeContests, CodeForces, LiveCodeBench, ReasoningGym Algorithm, GPQA, SuperGPQA, and SciBench.
Q8. What are the computational costs or limitations of the method?
It introduces additional computational overhead, specifically a 24 to 28 percent increase in training time for Qwen3 models and an 8 percent increase for Gemma4 E4B, due to requiring an extra teacher base model forward pass.
Q9. How did Gemma4 E4B it perform in Math?
It improved the average score from 60.6 to 67.8, outperforming ExOPD at 65.3 and standard OPD at 58.9.