When Distillation Fails — Capacity Gaps and Contagious Overconfidence
A stronger teacher does not guarantee a stronger student. A student too small to hold the teacher's structure returns a blurred average; a confident teacher hands down its errors along with its confidence; and the student walks paths the teacher never traveled. The three ways distillation breaks, from first principles.
DAPD: Dual-Anchored Policy Distillation
Primary source — what this article is built on
undefined2026-08-03→undefined2026-08-291 mo later
Distilling the Knowledge in a Neural NetworkarXiv:1503.02531Paper page·PDFImproved Knowledge Distillation via Teacher Assistant: Bridging the Gap Between Student and TeacherarXiv:1902.03393Paper page·PDF
The False Promise of Imitating Proprietary LLMsarXiv:2305.15717Paper page·PDF
On-Policy Distillation of Language Models: Learning from Self-Generated MistakesarXiv:2306.13649Paper page·PDF
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.
Why the master's apprentice does not become a master
Say you apprentice yourself to a chess grandmaster. You watch the best move played, every day, from across the board. You still may not become a grandmaster, and there are three reasons.
The first is your capacity. Behind each of the master's moves lies a calculation dozens of plies deep. An apprentice who cannot see that far memorizes the shape of the hand and settles into an averaged style.
The second is when the master is wrong. Masters misread positions confidently. The apprentice copies the wrong move with the same diligence as the right one, and copies the confidence with it.
The third is the positions. The master's games skew toward the shapes the master is good at, and the swamp the apprentice blunders into never appears there. In the place with no example to follow, the apprentice is alone.
These three map exactly onto the three ways knowledge distillation fails: the capacity gap, contagious overconfidence, and distribution shift. The mechanics of distillation are covered in Knowledge Distillation from Scratch, so here we look only at what is going wrong when it goes wrong.
The objective, stated once more
Let us be precise about what is being minimized. Distillation pulls the student's output distribution toward the teacher's , and the canonical loss looks like this.
Symbol by symbol. is ordinary cross-entropy against the ground-truth label — the "check your answer" term. measures how far apart two distributions are; it is the KL divergence. is the temperature: dividing the logits by before the softmax flattens the distribution. is that flattened distribution, balances the two terms, and restores the gradient magnitude the temperature shrank.
In words, the loss says: match the correct answer, and also imitate how much the teacher hesitated between the alternatives. All three failure modes are side effects of that instruction.
Failure 1: the capacity gap — a small vessel returns an average
Notice first that nothing in the loss asks whether the student is able to represent what it is told to match. The loss only says "get closer," and it keeps saying it to students that cannot.
This is what bites when the student has too few parameters or too few layers. A small model cannot reproduce the teacher's fine structure, so it settles for a flattened average of it. In multiple-choice terms: where the teacher answers crisply with "A 80%, B 15%," the student returns a smeared "A 45%, B 30%, C 25%." The loss falls while accuracy stalls.
The reason for the flattening is the direction of the KL in equation (1). is anchored on the teacher, so the student is punished heavily wherever the teacher puts mass and the student does not, while student mass where the teacher has none is punished only lightly. Because of that asymmetry, a student without the expressive power to pick one of the teacher's peaks is pushed to smear itself across all of them. Statisticians call it mode averaging.
Comments
Sign in to comment