Beyond Imitation: Filtering On-Policy Distillation by Reasoning Progress
A fix for AI models that get penalized by their teacher even when they're reasoning correctly
On-Policy Distillation (OPD) trains a student model by scoring its self-generated answers against a teacher model, but this scoring can unfairly punish reasoning steps that diverge from the teacher even when they're making real progress toward the correct answer. The researchers built R2-OPD, which separately measures whether a reasoning step is actually getting closer to the solution, and filters out teacher-based penalties whenever they conflict with genuine progress. On DeepSeek-R1-Distill-Qwen-1.5B, this improved average accuracy by 2.51 points and the chance of getting at least one correct answer out of four tries by 4.46 points, compared to standard OPD.
What they did
- The team found that OPD's token-by-token comparison to a teacher model doesn't always reflect whether the student is actually making reasoning progress toward a correct answer
- To measure real progress independently, they ran Neval=8 simulated rollouts from each intermediate reasoning point to estimate how likely the student was to reach the correct answer from there
- Adjacent reasoning segments showing progress in the same direction were merged (sign-consistent merging) to reduce noise, then compared against the teacher-similarity ranking to find segments where the two disagreed, and masked the teacher-based penalty in those conflicting segments
- On DeepSeek-R1-Distill-Qwen-1.5B with JustRL as teacher, R2-OPD beat standard OPD by 2.51 points on avg@4 and 4.46 points on pass@4, with the biggest gains on AIME math competition benchmarks
- The method also transferred to a different model pairing, Qwen3-1.7B student with e3-1.7B teacher, showing it generalizes across model families

| Method | AIME 24 | AIME 25 | Olympiad | Avg. | ||||
|---|---|---|---|---|---|---|---|---|
| avg@4 | pass@4 | avg@4 | pass@4 | avg@4 | pass@4 | avg@4 | pass@4 | |
| Student | 22.50 | 43.33 | 23.33 | 36.67 | 43.19 | 58.31 | 29.67 | 46.10 |
| Teacher | 41.67 | 56.67 | 30.83 | 43.44 | 53.28 | 68.43 | 41.92 | 56.18 |
| OPD (1) | 28.33 | 50.00 | 22.50 | 30.00 | 46.86 | 62.10 | 32.55 | 47.37 |
| E-OPD (17) | 18.33 | 36.67 | 12.50 | 23.33 | 49.91 | 64.56 | 26.91 | 41.52 |
| TIP-OPD (36) | 17.50 | 33.33 | 11.67 | 20.00 | 48.24 | 62.83 | 25.80 | 38.72 |
| IW-OPD (34) | 20.83 | 36.67 | 17.50 | 26.67 | 43.59 | 59.09 | 27.31 | 40.81 |
| Uni-OPD (13) | 20.00 | 43.33 | 19.17 | 26.67 | 53.16 | 69.97 | 30.78 | 46.66 |
| R2-OPD (Ours) | 32.50 | 56.67 | 25.83 | 36.67 | 46.86 | 62.19 | 35.06 | 51.83 |

| Dataset | Base | OPD | R2-OPD | |||
|---|---|---|---|---|---|---|
| avg@4 | pass@4 | avg@4 | pass@4 | avg@4 | pass@4 | |
| AIME 24 | 24.17 | 30.00 | 22.50 | 36.67 | 25.00 | 40.00 |
| AIME 25 | 18.75 | 20.00 | 27.50 | 33.33 | 25.83 | 36.67 |
| Olympiad | 50.10 | 63.87 | 53.82 | 67.09 | 54.31 | 67.91 |
| Avg. | 31.01 | 37.96 | 34.61 | 45.70 | 35.04 | 48.19 |

| Dataset | No Merge | R2-OPD | Δ |
|---|---|---|---|
| AIME 24 | 17.5 | 32.50 | 15.0 |
| AIME 25 | 11.67 | 25.83 | 14.16 |
| Olympiad | 47.8 | 46.86 | -0.96 |

| Setting | Value |
|---|---|
| Optimization and sequence settings | |
| Training epochs | 1 |
| Optimizer | AdamW |
| Learning rate | 5×10−6 |
| Global batch size | 64 |
| Maximum prompt length | 1,024 tokens |
| Maximum response length | 7,168 tokens |
| KL support size | Student top-16 (H=16) |
| Process-reward estimation | |
| Rollouts per evaluated boundary | Neval=8 |
| Sampling temperature | 0.7 |
| Top-k | 50 |
| Top-p | 1.0 |
| Maximum rollout length | 300 tokens |
| Segment filtering | |
| Minimum sentences between boundaries | Smin=3 |
| Minimum merged segments | nmin=3 |
| Segment masking ratio | q=30% |

| Condition | Action |
|---|---|
| The string-level pre-check does not find gi in yi, or segmentation yields fewer than two segments. | Skip process-reward rollouts and retain all token-level OPD supervision. |
| The response has fewer than max(3,nmin) merged segments. | Do not apply segment masking. |
| No strict adjacent pair is available after process-reward ranking. | Do not apply segment masking. |
| All candidate segments have zero inconsistency score. | Do not apply segment masking. |
| At least one candidate has a positive inconsistency score. | Mask up to the response-specific budget; retain every other token. |
| Category | Matched markers |
|---|---|
| Reconsideration | wait, hold on, let me reconsider, hmm |
| Correction | actually |
| Verification | let me check |
| Alternative reasoning | alternatively |
Why it matters
This work exposes a structural flaw in standard teacher-student distillation: it can suppress creative but correct reasoning paths simply for not matching the teacher's style. That matters directly for anyone training reasoning-focused AI models more cheaply and effectively, such as math or coding assistants.
Terms in this paper
- On-Policy Distillation (OPD) · a training method where a student model's own generated answers are graded against a teacher model's outputs
- reverse KL divergence · a measure of how different the student's probability distribution is from the teacher's, used as a training signal
- process reward · a score measuring how much a reasoning step increases the estimated chance of reaching the correct final answer
- sign-consistent merging · combining adjacent reasoning segments that show progress in the same direction to reduce measurement noise
- avg@4 / pass@4 · avg@4 is the average accuracy over 4 attempts; pass@4 checks whether at least one of 4 attempts was correct
Original abstract (English)
On-policy distillation (OPD) has emerged as an effective framework for post-training language models by pairing student-generated trajectories with dense token-level supervision from a teacher. However, OPD implicitly assumes that teacher-derived rewards are an appropriate proxy for reasoning progress, and therefore treats all teacher feedback equally during policy optimization. While in practice, this assumption does not always hold. We observe that teacher-derived rewards often conflict with genuine reasoning progress, as reasoning steps with clear reasoning advancement may still receive lower distillation rewards, simply due to deviation from teacher's outputs. To address this mismatch, we propose Reasoning-Progress-Aware Reward Filtering for On-Policy Distillation (R2-OPD), which constructs two within-trajectory rankings of reasoning spans, one from teacher-derived rewards and the other from independently estimated progress reward. Distillation rewards are selectively suppressed whenever the two rankings disagree, reducing supervision that conflicts with reasoning progress while preserving effective teacher guidance. Our approach shows consistent improvement over standard OPD especially regarding reasoning performances.
Read on arXivLatest papers
- LoRA-GA$^2$: Low Rank Adaptation with Multi-step Gradient Adaptive AlignmentPeeking at a few early training gradients before fine-tuning starts to set up LoRA smarter
- Remember, Verify, or Ask? Cross-Family Evaluation of Memory Commitment in LLM AgentsAI assistants would rather double-check facts than ask you a question, even when asking is the right call
- Robust Incomplete Multimodal Sentiment Analysis via Iterative Proxy CorrectionWhen text input is missing or broken, this AI doesn't guess once and move on—it revises its guess step by step to read emotions more reliably
- Generating Diverse Personas for User Simulators to Test Interview Dialogue SystemsTo test interview-style chatbots you need many different fake users, so this work has an LLM automatically generate those fake user personalities
- Rethinking Patch Based Multivariate Time Series Forecasting with Semantic Structured PartitioningA new way to slice time series into meaningful chunks instead of arbitrary equal-length pieces
- Reliable Financial Named Entity Recognition under Domain ShiftAn AI's confidence trained on formal filings turns unreliable once it reads tweets
- Bringing analytic rigor to agentic AI for science: The Brain Researcher platform for neuroimaging data analysisA system that makes AI show its work when analyzing brain-imaging data, not just deliver an answer
- GenMatch: An End-to-End Generative Matching Framework for Micro-View Order-Dispatching in Ride-HailingDiDi replaced its multi-step ride-hailing dispatch pipeline with one generative model and saw real-world gains
Latest from METAL LAB
- Google Discover adds chatbot that adjusts your feed based on spoken preferences
- OpenAI Closes In on Anthropic Again in Enterprise Spending Share
- Meta Unveils First 10 Tasks in WildArtifactBench, a Benchmark for AI Agents
- Musk: "Optimus + Grok will one day handle healthcare for all humanity"
- 35% of Web Pages Published Since ChatGPT Show Signs of AI Authorship
Figures: Chen Yang et al., arXiv:2608.19408, arxiv-nonexclusive