Research
Training-Trajectory-Aware Token Selection
Overview Research area: Natural Language Processing / LLM reasoning distillation (training-time token selection for efficient knowledge distillation), with extensions to diffusion language models (dLL
- arXiv
- 2601.10348
- Published
- 2026-01-15
- Authors
- Zhanming Shen, Jiaqi Hu, Zeyu Qin, Hao Chen, Wentao Ye, Zenan Huang, Yihong Zhuang, Guoshan Lu, Junlin Zhou, Junbo Zhao
AI summary
Overview
Research area: Natural Language Processing / LLM reasoning distillation (training-time token selection for efficient knowledge distillation), with extensions to diffusion language models (dLLMs).
Technical level: Advanced. The paper assumes familiarity with supervised fine-tuning (SFT), chain-of-thought (CoT) distillation, autoregressive (AR) language modeling, gradient dynamics, and diffusion-style masked language models.
Scope (one sentence): The paper identifies a recurring failure mode in continual reasoning distillation ("Imitation Shock"), traces it to a token-level conflict between "Imitation-Anchor Tokens" and yet-to-learn tokens, and proposes a training-trajectory-aware token selection method (T3S) that masks anchor tokens to improve distillation outcomes for both AR and diffusion language models.
Note: the provided paper content is truncated mid-sentence in Section 5 (Conclusion), so the final concluding remarks are not fully reported here.
What This Paper Is About
When a model that can already reason is continually distilled from a stronger teacher, performance often improves little or even degrades—even though training loss falls steadily. This paper asks why that happens, discovers that all evaluation metrics plunge to a shared low point before recovering, and shows that the cause is a small group of tokens that the student learns very early and that suppress the learning of other, reasoning-relevant tokens. The goal is to fix this at the token level so that a few hundred examples of distillation data yield real reasoning gains.
Key Contributions
- Identification of Imitation Shock. The authors show that continual reasoning distillation follows a characteristic "crash then recover" trajectory: training loss decreases monotonically while training-set answer accuracy and benchmarks such as AIME24, AIME25, and MMLU-Pro all drop sharply at nearly the same point (the "Imitation Bottleneck") and then gradually recover. They report this pattern across different teachers, datasets, dataset scales, student backbones, and training domains.
- Evidence that pre-bottleneck updates are unnecessary or harmful. Using a Recovering-Residual Transfer (RRT) construction that keeps only post-bottleneck parameter updates, they show that standard SFT degrades performance while RRT converts the drop into consistent gains on BOBA-200 and S1K-200.
- A token-level mechanism and a remedy (T3S for AR models). They attribute the shock to "Imitation-Anchor Tokens" whose confidence rises steadily and which suppress other tokens, and propose masking those anchor tokens out of the AR loss.
- An extension to diffusion language models. They adapt T3S to dLLMs by preferentially masking yet-to-learn tokens (identified via an AR selector and a union-masking strategy) so the model repeatedly practices generating them, reporting improved reasoning accuracy and inference efficiency.
Main Findings
- Imitation Shock is pervasive. Under DeepSeek-R1 distillation on BOBA-200 (batch size 64, learning rate 1×10⁻⁵, 200 samples, 50 optimization steps), training loss falls monotonically while AIME24, AIME25, MMLU-Pro, and training-set answer accuracy all drop sharply to an almost fixed minimum stage before recovering. The same pattern is reported for a different teacher (QWQ), a different dataset (S1K-200), a larger-scale dataset (R1-Distilled-OpenThought3-65K), a different student (R1-Distilled Llama3), and a different training domain (Code).
- Discarding pre-bottleneck updates helps. With RRT (keeping only updates acquired after the Imitation Bottleneck), DeepSeek-R1 distillation on BOBA-200 moves from a ΔAvg of ↓8.33 under SFT (R1) (AIME24 71.25, AIME25 55.00) to ↑1.15 under RRT (R1) (AIME24 76.67, AIME25 68.54), against a BASE of 75.83 / 67.08. On S1K-200, SFT (R1) is ↓7.29 and RRT (R1) is ↑2.20. The same comparison holds for QWQ: BOBA-200 SFT (QWQ) ↓3.13 vs. RRT (QWQ) ↑1.15; S1K-200 SFT (QWQ) ↓2.70 vs. RRT (QWQ) ↑1.88.
- Token confidence bifurcates. At the bottleneck, top-100 tokens with the largest confidence increase and top-100 tokens with the largest confidence drop separate cleanly. The steadily increasing group is named Imitation-Anchor Tokens; the other group drops early and recovers only after the anchors have largely stabilized.
- Suppression is causal, not just correlational. A single gradient step optimizing only anchor tokens at a checkpoint increases the loss on all other tokens, and this effect is largest when anchor loss is still high. When the loss is restricted to the non-anchor tokens (excluding anchors), those tokens rise monotonically instead of crashing first.
- Gradient-level conflict. Early in training the gradient norm on Anchor tokens is up to 17× larger than on Other tokens, contracting to about 2× around the Imitation Bottleneck. Cosine similarity between the two groups' gradients drops to roughly −0.4 to −0.5 during the crash phase, briefly rises to around −0.1 right after the bottleneck, then settles back into a consistently negative regime.
- Long training does not fix it. After training on roughly 200 examples for more than 15 epochs with batch size 64, 68.51% of tokens on BOBA-200 and 53.03% on S1K-200 still have lower confidence than the base model.
- Asymmetric loss transfer. Splitting tokens within each group by base-model confidence into two equal-sized halves, training on anchor subsets reduces anchor losses but increases losses on reasoning subsets (often dramatically), while training on reasoning subsets improves reasoning losses but degrades anchor losses—a 4×4 asymmetry.
- T3S outperforms SFT and RRT. On BOBA-200 with DeepSeek-R1, T3S reaches AIME24 80.63 / AIME25 73.96 (AVG 77.30) versus BASE 75.83 / 67.08 (AVG 71.46), SFT 71.25 / 55.00 (AVG 63.13), and RRT 76.67 / 68.54 (AVG 72.61). The inverted diagnostic "−T3S," which masks exactly the tokens T3S selects, collapses to AVG 28.13 on BOBA-200 and 26.67 on S1K-200.
- QWQ distillation results track the same ordering. On BOBA-200: SFT (QWQ) 73.33 / 68.33 (AVG 70.83), RRT 76.04 / 69.17 (AVG 72.61), T3S 77.50 / 70.83 (AVG 74.17), −T3S 50.00 / 33.33 (AVG 41.67). On S1K-200: SFT 73.33 / 63.33 (AVG 68.33), RRT 75.00 / 71.67 (AVG 73.33), T3S 76.67 / 72.50 (AVG 74.59), −T3S 46.67 / 40.00 (AVG 43.33).
- Debiased teacher mixing adds further gains. With Qwen3-8B, T3S (R1) reaches AVG 76.57, T3S (R1+235B) AVG 78.33, and T3S (R1+235B+QWQ) AVG 80.42 (AIME24 84.17, AIME25 76.67), versus SFT (R1+235B+QWQ) AVG 69.58. With Qwen3-32B, T3S (R1+235B+QWQ) reaches AIME24 86.67, AIME25 80.00, AVG 83.34. Teacher reference points are reported as DeepSeek-R1+Base AVG 74.90 and Qwen3-235B-A22B+Base AVG 83.60.
- T3S helps diffusion language models. LLaDA-2.0-Mini distilled with T3S reaches AIME25 53.33, MATH500 93.19, TheoremQA 51.50, AVG 66.01, versus Base 30.00 / 91.98 / 45.88 / AVG 55.95 and SFT 30.00 / 91.58 / 47.00 / AVG 56.19. Comparison 16B-scale no-think models in the table include Qwen3-14B (no-think) AVG 56.86, Ministral-14B-Instruct-2512 AVG 65.37, Ling-Mini AVG 63.81, and Qwen3-30B-A3B-Instruct-2507 AVG 69.79.
- The bottleneck is easy to locate. The Imitation Bottleneck tends to occur between steps 6 and 15. A fixed-checkpoint variant (T3S-simple, step 10) substantially outperforms SFT and trails only slightly behind full T3S. Sampling selectors before and after the true bottleneck yields an inverted-U performance curve peaking at the true bottleneck, but still above SFT across a wide range; using checkpoint 2 or checkpoint 50 as the selector also still outperforms direct SFT.
- Static confidence heuristics are not sufficient. Masking the same token fraction as T3S (about 20%) using the top-p highest-confidence or top-p lowest-confidence tokens under the base model performs far worse than T3S and still exhibits Imitation Shock. The anchor/non-anchor split is reported to be non-separable by base-model confidence or local gradient geometry.
- Training dynamics change. Under T3S on BOBA-200, training starts from a noticeably lower loss and converges faster, and the training-accuracy collapse characteristic of SFT no longer occurs.
Methodology in Plain English
The researchers begin by carefully logging every checkpoint during a standard distillation run, measuring not just training loss but also training-set answer accuracy and downstream benchmarks. Because all metrics crash and then recover at nearly the same point, they define that lowest training-accuracy checkpoint as the Imitation Bottleneck.
To check whether the early part of training is useful at all, they subtract the bottleneck checkpoint's parameters from the final checkpoint's parameters and add that difference to the original starting model. This "Recovering Residual Transfer" model therefore ignores everything learned before the bottleneck. It performs better than standard fine-tuning.
They then look at individual tokens. For each token position, they compute the log-probability the model assigns to the correct token, both before training and at the bottleneck, and take the difference. Tokens whose confidence rose become "Imitation-Anchor Tokens"; tokens whose confidence fell are the yet-to-learn tokens. To test whether anchors actively hurt the others, they take single gradient steps that optimize only anchor tokens and measure what happens to the loss on the remaining tokens, and they also track gradient norms and gradient directions of the two groups.
The fix follows directly: for autoregressive models, T3S simply removes the anchor tokens (those with a positive confidence change from the starting checkpoint to the bottleneck) from the cross-entropy loss, so training concentrates on the remaining positions. For diffusion language models, which are trained by reconstructing randomly masked positions, the logic flips: instead of excluding tokens, T3S uses an AR selector model as a proxy to identify yet-to-learn tokens and forces them into the mask more often, so the model repeatedly practices generating them under different visible-token conditions.
The authors note the measurement can be done online during training, mirroring early stopping, and that using training accuracy to find the bottleneck only requires gold answers or an automatic verifier—something already available in many distillation and reinforcement-learning pipelines.
Why This Matters
Impact on research. The paper reframes continual distillation failure from a data-volume or teacher-quality problem into a token-level optimization-conflict problem. If the "crash then recover" pattern is as universal as reported, then a large body of continual distillation and efficient fine-tuning work may be silently passing through a harmful pre-bottleneck phase. The finding that a token-level partition cannot be recovered from static initialization statistics challenges token-selection methods based on entropy or base-model confidence.
Real-world applications (inferred from the paper's claims):
- Building smaller deployable reasoning models: the paper reports Qwen3-8B surpassing its teacher DeepSeek-R1 on competitive reasoning benchmarks using only hundreds of examples, and Qwen3-32B reaching results on par with Qwen3-235B-A22B.
- Diffusion language model deployment: a T3S-trained LLaDA-2.0-Mini is reported to surpass its shared-architecture AR baseline (Ling-mini) and achieve state-of-the-art performance among 16B-scale no-think models.
- Multi-teacher data curation: T3S applied independently to each teacher's corpus before mixing, then aggregated, is reported to improve over single-teacher T3S and over mixed SFT.
- Non-math domains: the authors report observing Imitation Shock on a purely code-based dataset and improvements on LiveCodeBench, suggesting applicability beyond mathematics.
Industry relevance. Efficient distillation directly affects training cost and deployment footprint. A method that requires no extra model parameters, works with hundreds of examples, requires only a correctness signal that RL pipelines already provide, and can be applied online alongside existing early-stopping infrastructure is a low-friction addition to standard post-training stacks.
Future Directions
- Beyond the AR selector proxy for dLLMs. The paper states that dLLMs lack a clean AR-style token-wise likelihood interface for precise localization of yet-to-learn tokens, and that it uses an AR selector as a practical proxy. A native dLLM-side confidence signal is an open direction.
- Bottleneck detection without gold labels. The current definition of the Imitation Bottleneck depends on training accuracy, which assumes gold answers or an automatic verifier. Removing that dependency is left open.
- Open questions from the conclusion. Because the provided content truncates mid-sentence in Section 5, the paper's own final list of limitations and next steps is not reported here.
- Scope of the trajectory signal. The paper reports cross-model consistency of yet-to-learn tokens only within tokenizer-sharing model families, which raises the question of how far the token partition transfers across architectures and tokenizers.
Target Audience
Researchers and engineers working on LLM post-training, reasoning distillation, efficient fine-tuning, and token-level data selection will benefit most. It is also relevant to practitioners training or deploying diffusion language models, and to those running multi-teacher distillation pipelines where teacher mixing is used to reduce model-specific biases. Readers should be comfortable with gradient analysis, cross-entropy training objectives, and benchmark-based evaluation.
Authors’ abstract
Efficient distillation is a key pathway for converting expensive reasoning capability into deployable efficiency, yet in the frontier regime where the student already has strong reasoning ability, naive continual distillation often yields limited gains or even degradation. We observe a characteristic training phenomenon: even as loss decreases monotonically, all performance metrics can drop sharply at almost the same bottleneck, before gradually recovering. We further uncover a token-level mechanism: confidence bifurcates into steadily increasing Imitation-Anchor Tokens that quickly anchor optimization and other yet-to-learn tokens whose confidence is suppressed until after the bottleneck. And the characteristic that these two types of tokens cannot coexist is the root cause of the failure in continual distillation. To this end, we propose Training-Trajectory-Aware Token Selection (T3S) to reconstruct the training objective at the token level, clearing the optimization path for yet-to-learn tokens. T3S yields consistent gains in both AR and dLLM settings: with only hundreds of examples, Qwen3-8B surpasses DeepSeek-R1 on competitive reasoning benchmarks, Qwen3-32B approaches Qwen3-235B, and T3-trained LLaDA-2.0-Mini exceeds its AR baseline, achieving state-of-the-art performance among all of 16B-scale no-think models.