JA EN
LearnInference & Serving
·★ MEMBER·PAPER·8 min read

Paper Walkthrough: DAPD — Breaking the Teacher's "Cheat-Sheet Illusion" in Distillation with Dual Anchors

When you distill from a teacher that can see the reference solution, the student learns to act as if invisible answers were still there — the privilege illusion. DAPD (arXiv:2608.01735) traces this failure to information asymmetry and fixes it with two levels of anchoring. A walkthrough grounded strictly in the paper itself.

ModalitytextTaskinference

DAPD: Dual-Anchored Policy Distillation

Primary source — what this article is built on

undefined2026-08-03undefined2026-08-12same month

DAPD: Dual-Anchored Policy DistillationJianyu Wu, Yizhou Wang, Encheng Su et al. · 2026-08-03 · v1arXiv:2608.01735Paper page·PDF
undefined

On-policy (self) distillation (OPSD) is increasingly adopted for language-model post-training. It strengthens the teacher with privileged information but can induce a privilege illusion: the student learns privilege-dependent behavior it cannot reproduce from its inference-time context, yet behaves as if the training-time privileged information remained available, ultimately degrading performance. In this paper, we identify information asymmetry between the privileged teacher and the student at inference as the root cause of this failure in OPSD. To resolve this asymmetry, we propose Dual-Anchored Policy Distillation (DAPD), a unified framework with two levels of anchoring. Dual-Path Anchoring (DPA) introduces a self-conditioned bridge and aligns reference and rollout behavior along two matched-information paths, preventing privilege-dependent behavior from being transferred to the inference-time student. Dual-Source Anchoring (DSA) applies these paths in both reference-to-rollout and rollout-to-reference directions, reducing reliance on privileged reference guidance while preserving correctness supervision. Extensive experiments show that DAPD significantly alleviates privilege illusion, outperforming OPSD on Qwen3-4B by +2.00 points on average across tasks. Notably, its gains persist across scales, reaching +2.69 at 4B and +2.78 at 32B.


What happens when the tutor teaches with a cheat sheet

Picture a math tutor teaching a student while keeping the answer key on the desk. The teaching itself is sound. But the student ends up imitating more than the reasoning — they also copy the behavior of someone who has the answers at hand. Then, stuck in the real exam, they write "I recall the answer is probably 36/7" with nothing to back it up.

The first half is a metaphor; the "36/7" is not. Figure 4 of the paper shows an actual model output on an AIME24 geometry problem: after its derivation collapses, the model says "I recall that the answer is likely 36/7" and returns a wrong answer (§4.2).

The paper we're reading, DAPD (Dual-Anchored Policy Distillation) (arXiv:2608.01735, published 2026-08-03), studies on-policy self-distillation (OPSD) — an increasingly popular recipe for LLM post-training — and identifies the root cause of this symptom, which the literature calls the privilege illusion: an information asymmetry between the teacher and the student. It then removes that asymmetry with two levels of anchoring. The paper reports gains that survive scale: +2.00 points on average across six benchmarks on Qwen3-4B, and +2.78 points even at 32B (§1).

Background: what OPSD actually trains

Distillation teaches a student model to imitate the teacher's probability distribution over the next token, not just the single correct token. That distribution carries dense information — including how the teacher hesitates — at every position.

On-policy distillation goes further: the teacher supervises at positions sampled from the student's own rollouts. Instead of correcting someone else's perfect essay, the teacher coaches the student exactly where the student actually wanders, shrinking the gap between training states and inference states.

The twist in OPSD is that the teacher is not a separate model — it is the same model shown the reference solution (§2.1). From one policy pθp_\theta, you build two distributions that differ only in what they are conditioned on. Here xx is the prompt, yy the student's rollout, yy^* the reference solution, and tt the token position:

OPSD uses Cross as a frozen teacher and None as the trainable student (§2.1):

LOPSD=E ⁣[1yt=1yD ⁣(sg ⁣[pCross]pNone)]\mathcal{L}_{\mathrm{OPSD}}=\mathbb{E}\!\left[\frac{1}{|y|}\sum_{t=1}^{|y|}\mathrm{D}\!\left(\operatorname{sg}\!\left[p_{\mathrm{Cross}}\right]\,\|\,p_{\mathrm{None}}\right)\right]
(1)

Put in words: at each position of the student's own draft, pull the distribution of the model without the reference toward the distribution of the model with it. D\mathrm{D} is a divergence between token distributions — what to actually put there is the subject of KL divergence from scratchsg[]\operatorname{sg}[\cdot] stops gradients on the teacher side, and y|y| is the rollout length. So the line as a whole is a running average: score the mismatch between the two versions of the model at every step of the draft, then divide by how long the draft was.

FIG 1Distillation teaches the shape of a probability distribution. Playing with temperature — watching a distribution sharpen or flatten — builds intuition for what "matching the teacher's distribution" means. This paper also divides logits by a temperature of 1.1 before matching (§A.6)

The student has no cheat sheet at test time

Here is the structural hole: the teacher (Cross) sees privileged information — the reference — throughout training, while the student sees none of it at inference. The paper measures the resulting symptom at the level of behavior. It defines wrong claims as outputs that first admit the derivation has failed, then assert a concrete answer as if pulled from memory or a reference, and end up wrong (§2.1, §C.2).

The trend is stark. Averaged over five Qwen3 scales, as OPSD training proceeds, wrong claims rise from 13.0 to 37.0 per 10,000 generations, while the reasoning score (Avg@12 over AIME24/AIME25/HMMT25) falls from 59.56 to 53.24 (§2.1). The more thoroughly the student internalizes cheat-sheet behavior, the worse it performs when the sheet is gone — the illusion and the degradation move together.

Prior work tried to filter or reweight the privileged signal. The paper diagnoses this as structurally insufficient: however you massage the signal, a teacher that holds privileged information still directly supervises a student that doesn't (§1, §2.2).

What's behind this

§

Members-only from here

371 walkthroughs, 26 textbook chapters, 48 student units and 6 close readings — all included for $4.99/mo, with three new explainers every day. Cancel any time; access runs to the end of the period.

Already a member? Sign in to keep reading

References

  1. Jianyu Wu, Yizhou Wang, Encheng Su, Chen Tang et al.. (2026-08-03) DAPD: Dual-Anchored Policy Distillation. arXiv:2608.01735Paper page·PDF

This article is written from the source paper above. Where they differ, the original is authoritative.

Comments

Sign in to comment