Imagine you're teaching someone to drive, but all the practice happens in a parking lot with cones. They ace the cones. Then you put them on a highway and they freeze — because every small mistake compounds into unfamiliar territory they've never trained for. That's exactly what happens when you quantize a large language model down to 2 or 3 bits and then train it with standard distillation: the training data shows perfect teacher trajectories, but at inference time the quantized student drifts off those trajectories, each tiny rounding error feeding into the next token, until the model is lost in a wasteland of repetitive loops it never learned to escape. The core claim is precise: quantization-aware distillation (QAD) fails on long-form reasoning not because quantization destroys the model's knowledge, but because it creates a train-test distribution mismatch that compounds autoregressively. The authors call this "quantization-amplified exposure bias" — a term that earns its coinage. Classical exposure bias in sequence models is well-known; the contribution here is showing it's dramatically worse under aggressive quantization because the per-token deviations introduced by low-bit weights are larger and accumulate faster. The fix — on-policy distillation (OPD) — is elegant in its simplicity. After an initial QAD warmup, you let the quantized student generate its own completions through the actual quantized forward pass it will use at deployment. A frozen full-precision teacher then scores those student-generated prefixes with dense token-level KL guidance plus a task-level verifier reward. The student learns to recover from its own mistakes rather than memorizing a pristine teacher trajectory it can never perfectly reproduce. This is the DAgger principle from imitation learning, adapted for quantized LLM distillation. The numbers are strong. At 2.79 effective bits, MATH-500 BF16-performance retention jumps from 35% to 70%; HumanEval goes from 66% to 91%. Critically, these gains come without sacrificing short-form QA performance, which QAD already handles well. The paper tests across four models, giving the results breadth beyond a single architecture. The matched-budget comparison against continued teacher-forced QAD is the right control and shows OPD's gains aren't just from more training steps. Architecturally, this sits in the knowledge-distillation-for-quantization family, specifically the offline-to-online distillation transition that mirrors trends in RLHF (offline preference data → online PPO/DPO). The method combines two supervision signals: dense KL divergence at the token level (the standard distillation objective) and sparse task-verifier rewards (the RL-style signal). This dual-signal design is what lets the method preserve short-form accuracy while recovering long-form reasoning — the KL term prevents catastrophic drift from the teacher distribution, while the verifier reward pulls the student toward actually completing tasks. The integrity picture is reasonable but not bulletproof. MATH-500 and HumanEval are established community benchmarks, and testing at both 2.79 and 1.88 effective bits shows the method isn't tuned for a single operating point. The comparison against matched-budget continued QAD is honest. What's missing is any independent replication and any testing at scales above what the authors had compute for. The four models tested are not named in the abstract, which makes it hard to assess whether these are frontier-scale or mid-range. The milestone question is concrete: at 2.79 bits, we're at 70% MATH-500 retention. The practically meaningful threshold is probably 85-90% — the point where a quantized model is deployable for reasoning tasks without meaningful quality loss. That's plausibly one to two iterations away. The experiment the authors didn't run — and almost certainly want to — is OPD on models above 70B parameters, where quantization's memory savings become most valuable and where the exposure-bias compounding may behave differently. My read: compute budget was the bottleneck, not a negative result.