DOPD: Conquering the Privilege Illusion in On-Policy Distillation

DOPD: Dual On-policy Distillation

2026-06-01
Xinlei Yu, Gen Li, Qingyi Si, Guibin Zhang, Yuqi Xu, Congcong Wang, Shuai Dong, Kaiwen Tuo, Xiangyu Zeng, Kaituo Feng, Qunzhong Wang, Yang Shi, Xiaobin Hu, Xiangyu Yue, Jiaqi Wang, Shuicheng Yan
Summary
Problem
Method
Results
Takeaways
Abstract

DOPD (Dual On-Policy Distillation) is an advantage-aware distillation framework for LLMs and VLMs that adaptively routes token-level supervision between a privileged teacher and a privileged student. It addresses the "privilege illusion" in on-policy settings, achieving a 12.3-point gain over the student baseline and recovering ~90% of the teacher-student gap on competitive reasoning benchmarks.

TL;DR

On-Policy Distillation (OPD) is the current gold standard for transferring capabilities from giant "Thinker" models to compact students. However, naively providing teachers with "privileged information" (like hints or labels) often leads to Privilege Illusion: where the student tries to copy the teacher's "cheating" rather than learning its actual reasoning logic. DOPD (Dual On-Policy Distillation) solves this by dynamically routing token-level supervision based on an "Advantage Gap," ensuring the student only learns what is truly transferable.

The Problem: The "Privilege Illusion"

In modern AI development, we often give teachers a "peek at the answer" (privileged information) to set a higher performance ceiling during training.

The authors identify a critical failure mode: Information Asymmetry. If a teacher performs better simply because it sees a hint that the student won't see at test time, the resulting supervisory signal is "illusionary." If the student tries to fit these tokens too hard, it suffers from Entropy Collapse—its output distribution becomes dangerously narrow, leading to brittle performance and a loss of exploratory behavior.

Entropy Collapse and Privilege Illusion

Methodology: Advantage-Aware Token Routing

DOPD doesn't treat every token the same. It uses a Dual Distillation paradigm that compares two privileged policies (Teacher vs. Student) to calculate the Privilege Advantage Gap (A).

The Four Regimes of Supervision

Based on the gap () and prediction confidence (), DOPD routes every token into one of four strategies:

  1. High A, High (The Gold Mine): The teacher is much better and very confident. Strategy: Strong Full-vocabulary JS Divergence to capture raw reasoning capacity.
  2. Low A, High & (Consensus): Both agree. The gap is just info asymmetry. Strategy: Light Top-K KL to maintain stability without over-fitting shortcuts.
  3. Low A, Low & (Unreliable Space): Neither knows what's happening. Strategy: Weak self-regularization to prevent policy drift.
  4. High A, High (Student Pride): The student is confident but contradicts the teacher. Strategy: Light privileged-student distillation to allow for autonomous exploration.

DOPD Architecture Overview

Experimental Battlefront

The effectiveness of DOPD was tested across 8 LLM benchmarks (MATH500, AIME25, LiveBench) and 8 VLM benchmarks.

  • Performance Recovery: DOPD recovered 89.8% of the teacher-student performance gap in LLMs, far exceeding Vanilla OPD (~34%).
  • Scalability: Even when distilling an 8B teacher into a tiny 0.6B student, DOPD maintained a 14.1-point gain, whereas Vanilla OPD's gains vanished as the model size gap grew.
  • Stability: Unlike self-distillation methods that frequently crash or collapse in entropy mid-training, DOPD's dual-routing provides a "consistency anchor" that keeps the training curve smooth.

Experimental Results Comparison

Critical Insight: Why This Matters

The most profound finding in this paper is the Token Analysis (Figure 9). The authors visualize exactly which tokens provide value. They found that in complex reasoning chains, the tokens with a "High Advantage Gap" are usually the logical pivots—the points where the actual "thinking" happens. By focusing computational resources on these pivots rather than "connective breadcrumbs," DOPD achieves SOTA efficiency.

Token-level Visualization

Conclusion & Future Directions

DOPD proves that in the era of "Thinking Models," the quality of supervision is more important than the quantity. It moves the field from "Mimic the Teacher" to "Learn the Teacher's Advantage."

Limitations: The method requires an extra forward pass (higher training cost) and relies on high-quality privileged hints from models like GPT-5.4. Future work will likely focus on generating these hints "on-the-fly" to reduce cost while maintaining the precision of the Advantage Gap.

Find Similar Papers

Try Our Examples

  • Search for recent papers dealing with the "privilege illusion" or "information asymmetry" in knowledge distillation for Large Language Models.
  • Which paper first proposed the concept of On-Policy Distillation (OPD) for LLMs, and how does the current privilege-aware approach modify its fundamental loss objective?
  • Are there studies applying advantage-aware token routing similar to DOPD in non-autoregressive tasks or Reinforcement Learning from Human Feedback (RLHF)?
Contents
DOPD: Conquering the Privilege Illusion in On-Policy Distillation
1. TL;DR
2. The Problem: The "Privilege Illusion"
3. Methodology: Advantage-Aware Token Routing
3.1. The Four Regimes of Supervision
4. Experimental Battlefront
5. Critical Insight: Why This Matters
6. Conclusion & Future Directions