TL;DR
The paper identifies a structural shortcut bias in on-policy self-distillation for reasoning tasks, where the per-token signal equals conditional pointwise mutual information that rewards shortcut tokens and penalizes deliberation tokens.

论文原始摘要

On-policy self-distillation, where a student is pulled toward a copy of itself conditioned on privileged context (e.g., a verified solution or feedback), offers a promising direction for advancing reasoning capability without a stronger external teacher. Yet in math reasoning the gains are inconsistent, even when the same approach succeeds elsewhere. A pointwise mutual information analysis traces the failure to the privileged context itself: it inflates the teacher's confidence on tokens already implied by the solution (structural connectives, verifiable claims) and deflates it on deliberation tokens ("Wait", "Let", "Maybe") that drive multi-step search. We propose Anti-Self-Distillation (AntiSD), which ascends a divergence between student and teacher rather than descending it: this reverses the per-token sign and yields a naturally bounded advantage in one step. An entropy-triggered gate disables the term once the teacher entropy collapses, completing a drop-in replacement for default self-distillation. Across five models from 4B to 30B parameters on math reasoning benchmarks, AntiSD reaches the GRPO baseline's accuracy in 2 to 10x fewer training steps and improves final accuracy by up to 11.5 points. AntiSD opens a path to scalable self-improvement, where a language model bootstraps its own reasoning through its training signal.

Paper Collector 中文速览

提出反向自蒸馏方法,加速数学推理能力提升

方法概述

通过点互信息分析发现特权上下文导致教师分布畸变,提出AntiSD通过最大化而非最小化师生分布差异,配合熵触发门控自动停止机制,实现高效自提升

核心贡献

揭示自蒸馏在数学推理中的失败根源,提出反向自蒸馏方法,用熵触发门控替代传统自蒸馏,实现2-10倍训练加速

原始来源与核验范围

核验仅覆盖论文正文中的主张、证据片段和参考文献关系。NGJOO 未独立运行作者代码、重做实验或验证真实部署效果;页面中的可复现性分数是文档完整度评估,不是复现实验结果。

36
已证实
0
证据不足
5
无法验证
N/A
可复现性
置信度
89%

核心问题

Why does standard on-policy self-distillation fail for reasoning tasks, and how can the structural shortcut bias in its per-token signal be corrected?

核心方法

The authors derive that the per-token signal in self-distillation equals conditional pointwise mutual information between the next token and privileged context. They propose Anti-Self-Distillation (AntiSD), which reverses the gradient direction by ascending Jensen-Shannon divergence instead of descending, combined with an auto-calibrated entropy-triggered gate. Experiments train five language models (4B-30B parameters) on DAPO-Math-17k for 200 on-policy steps.

论点验证

已证实 (95%) We propose Anti-Self-Distillation (AntiSD), which ascends a divergence between student and teacher rather than descending it, reversing the per-token sign and yielding a naturally bounded advantage in one step.
已证实 (92%) We expose a structural shortcut bias in standard self-distillation, where the per-token signal rewards tokens the privileged context already implies and suppresses deliberation tokens, and ground this observation in a conditional pointwise mutual information identity.
已证实 (88%) AntiSD is a drop-in replacement for default self-distillation with no additional cost.
已证实 (90%) Across five models from 4B to 30B parameters on math reasoning benchmarks, AntiSD reaches the GRPO baseline's accuracy in 2 to 10× fewer training steps and improves final accuracy by up to 11.5 points.
已证实 (85%) On math reasoning benchmarks such as AIME 2024 and 2025, default self-distillation typically fails to outperform a strong GRPO baseline.
已证实 (82%) Conditioning the teacher on a verified solution effectively turns it into an oracle, leaving it confident on tokens that follow once the answer is known, such as structural connectives and verifiable-claim words, and unsure on deliberation tokens like Wait, Let, and Maybe that the student emits when re-examining alternatives.
已证实 (85%) Standard self-distillation pulls the student toward this oracle teacher, reinforcing tokens that track the known solution and weakening tokens that drive deliberation.
已证实 (95%) Under the self-distillation setup, π S and π T share parameters, so u t admits a closed-form interpretation: the conditional pointwise mutual information between the next token y t and the privileged context c.
This is a mathematical theorem proven in Appendix A, Lemma 2. The derivation uses Bayes' rule to show u_t = log(π_T/π_S) = PMI(y_t; c | x, y_{
已证实 (92%) The sign of u t records whether c raises (u t > 0) or lowers (u t < 0) π θ (y t ). The default per-token reward δ t = +u t therefore rewards tokens whose probability is raised by c and penalizes those it lowers.
This follows directly from the PMI interpretation. Since u_t = PMI(y_t; c | x, y_{
已证实 (85%) Shortcut tokens (u t ≫ 0, deep red) -Given, Assign, succeeds, holds -are strongly rewarded once the answer is known. Deliberation tokens (u t ≪ 0, deep blue) -Wait, Let, Maybe, Alternatively -are strongly penalized, since c has committed to a solution and the teacher down-weights tokens that re-examine alternatives.
已证实 (88%) Default self-distillation thus rewards shortcut tokens and penalizes deliberation tokens.
This is a direct logical consequence of claims 9 and 10, which are empirically and theoretically supported. The paper states this conclusion explicitly and it follows from the PMI analysis.
已证实 (88%) The polarity is not specific to reverse KL: for any convex f in the family from Section 2, descent on D f (π S ∥π T ) has per-token advantage monotonically increasing in u t and inherits the same shortcut/deliberation split.
已证实 (85%) (O1) Wrong polarity for reasoning: the per-token reward δ t = +u t has the wrong sign -rewarding shortcut tokens and penalizing the deliberation tokens that drive search.
已证实 (85%) (O2) Asymmetric distribution: because rollouts come from π S , tokens with π S > π T are over-sampled in the batch -visible in Figure 2(b) as the heavier deliberation lobe (u t < 0), with individual tokens in the tail reaching u t ≤ -20.
This observation (O2) is empirically demonstrated in Figure 2(b), which shows the asymmetric distribution with a heavier deliberation lobe. The paper notes individual tokens reaching u_t ≤ -20 in the tail.
已证实 (90%) From (O1), we reverse the gradient direction (descent → ascent), flipping the per-token reward at the source.
This design choice is clearly motivated by observation O1 and implemented in AntiSD. The paper explains that reversing the gradient direction flips the per-token reward sign, addressing the wrong polarity issue.
已证实 (88%) From (O2), we ascend Jensen-Shannon divergence rather than reverse KL: JSD's f-divergence-derived advantage is asymmetrically bounded (capped on the over-sampled deliberation side and linear on the under-sampled shortcut side), directly counterbalancing the empirical asymmetry.
This design choice is motivated by O2 and mathematically justified. Lemma 5 proves φ(u) ≥ -1/2 log 2, providing the asymmetric bound. The paper explains how JSD's shape counterbalances the empirical asymmetry.
已证实 (88%) An entropy-triggered gate disables the term once the teacher's per-token entropy collapses, completing a drop-in replacement for default self-distillation.
The entropy-triggered gate is clearly described as a stabilizer for the ascent direction. Section 3.2 explains that once ascending a divergence, the policy gradient is no longer self-terminating, requiring a signal-quality criterion.
已证实 (90%) The teacher's per-token entropy aggregated over the batch, H := median i,t H[π T (• | x i , y i,The entropy measure is clearly defined with the specific formula H := median_{i,t} H[π_T(• | x_i, y_{i,
已证实 (88%) We disable the AntiSD term when H falls below an auto-calibrated threshold τ down , and re-enable it once H recovers to its pre-collapse baseline H warm (a Schmitt trigger to avoid chatter).
The gate mechanism is clearly specified with the Schmitt trigger design (disable at τ_down, re-enable at H_warm) to avoid chatter. This is a well-defined design choice.
已证实 (95%) We train five language models from the Qwen3 and Olmo-3 families (4B-30B parameters) on DAPO-Math-17k for 200 on-policy steps.
The experimental setup is clearly specified: five models (Qwen3-8B, Qwen3-4B-IT-2507, Olmo3-7B-IT, Olmo3-7B-Think, Qwen3-30B-A3B), DAPO-Math-17k dataset, 200 on-policy steps. This is a verifiable experimental configuration.

... 共 41 个论点

可复现性评估

较低可复现性 (0%)

缺失的复现细节

  • No code repository available - Algorithm 1 implementation details not accessible
  • No training data (DAPO-Math-17k) available or link provided
  • Specific model versions/checkpoints from Qwen3 and Olmo-3 families not specified (only parameter ranges 4B-30B mentioned)
  • Learning rate not specified
  • Batch size not specified
  • Random seeds not reported for reproducibility
  • Hardware specifications (GPU type, memory, number of devices) not mentioned
  • GRPO hyperparameters beyond λ=0 not provided (optimizer, weight decay, etc.)
  • Rollout group size for on-policy sampling not specified
  • Temperature and other sampling settings referenced in Appendix but not accessible

局限与证据边界

  • The PMI characterisation describes individual gradient contributions rather than the global optimum of the combined objective.
  • Our evaluation focuses on math reasoning, leaving extensions to multi-turn agentic settings and broader coding benchmarks as natural next directions.
  • The conditional-PMI account in Section 3.1 is a local, per-step characterization of the per-token signal rather than a global-optimum statement about the combined objective; understanding the long-horizon dynamics under the full ascent + gate update is itself an interesting question.
  • Our evaluation spans five language models from the Qwen3 and Olmo-3 families (4B-30B parameters) on mathematical reasoning, with an initial probe on code reasoning.
  • Larger model scales beyond 30B and multimodal conditioning are also natural settings to test whether the conditional-PMI characterization remains the dominant credit-assignment signal.

本分析由 PDF 阅读助手 自动生成,仅供参考,不构成学术评审意见。验证结论和可复现性评估基于论文文本自动分析,可能存在偏差。原始论文请参阅 arXiv

分析时间:2026-05-21T13:30:56+00:00 · 数据来源:Paper Collector