JA EN
LearnDistillation & Compression
·★ MEMBER·PAPER·8 min read

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.

ModalitytextTasktraining

DAPD: Dual-Anchored Policy Distillation

Primary source — what this article is built on

undefined2026-08-03undefined2026-08-291 mo later

Distilling the Knowledge in a Neural NetworkarXiv:1503.02531Paper page·PDF
Improved 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 pSp_S toward the teacher's pTp_T, and the canonical loss looks like this.

L=(1α)CE(y,pS)+αT2KL ⁣(pT(T)pS(T))\mathcal{L} = (1-\alpha)\,\mathrm{CE}(y,\, p_S) + \alpha\, T^2\, \mathrm{KL}\!\left(p_T^{(T)} \,\|\, p_S^{(T)}\right)
(1)

Symbol by symbol. CE(y,pS)\mathrm{CE}(y, p_S) is ordinary cross-entropy against the ground-truth label yy — the "check your answer" term. KL()\mathrm{KL}(\cdot\|\cdot) measures how far apart two distributions are; it is the KL divergence. TT is the temperature: dividing the logits by TT before the softmax flattens the distribution. p(T)p^{(T)} is that flattened distribution, α\alpha balances the two terms, and T2T^2 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.

FIG 1Drag the degree slider to the far left and no amount of training brings the curve to the targets. That is the under-capacity side of failure — the mirror image of the overfitting at the far right

The reason for the flattening is the direction of the KL in equation (1). KL(pTpS)\mathrm{KL}(p_T \| p_S) 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.

The awkward part is that this failure can get worse as the teacher gets better. The wider the gap, the more structure exists that the student cannot represent, and the more averaging follows. The Teacher Assistant work (arXiv:1902.03393) reported student accuracy degrading past a certain teacher size, and proposed dist

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. Distilling the Knowledge in a Neural Network. arXiv:1503.02531Paper page·PDF
  2. Improved Knowledge Distillation via Teacher Assistant: Bridging the Gap Between Student and Teacher. arXiv:1902.03393Paper page·PDF
  3. The False Promise of Imitating Proprietary LLMs. arXiv:2305.15717Paper page·PDF
  4. On-Policy Distillation of Language Models: Learning from Self-Generated Mistakes. arXiv:2306.13649Paper page·PDF
  5. 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