Research Papers 论文研究 3h ago Updated 48m ago 更新于 48分钟前 48

OPTD: On-Policy Transition Distillation with Consistency-Guided Adaptive Compression for Few-Step Diffusion Language Models OPTD:面向少步扩散语言模型的基于一致性引导自适应压缩的在线策略转换蒸馏

OPTD introduces on-policy transition distillation for few-step diffusion language models, addressing the distribution mismatch between off-policy supervised trajectories and actual student inference trajectories. The method uses a frozen, question-only teacher to identify outcome-aligned future token candidates and selects the longest prefix whose joint commitment preserves the teacher's rollout outcome. A set-bottleneck objective promotes verified future candidates to the decoder's release thre 提出OPTD(On-Policy Transition Distillation),解决扩散语言模型少步蒸馏中off-policy轨迹漂移问题 通过一致性引导的自适应压缩机制,从学生自身轨迹采样并选择最长有效转换前缀 无需黄金响应(gold response)即可训练,目标构建与训练均不依赖人工标注答案 在四个数学推理和代码生成基准上,OPTD实现最优质量-效率权衡和最强AUP指标

62
Hot 热度
75
Quality 质量
68
Impact 影响力

Analysis 深度分析

TL;DR

  • OPTD introduces on-policy transition distillation for few-step diffusion language models, addressing the distribution mismatch between off-policy supervised trajectories and actual student inference trajectories.
  • The method uses a frozen, question-only teacher to identify outcome-aligned future token candidates and selects the longest prefix whose joint commitment preserves the teacher's rollout outcome.
  • A set-bottleneck objective promotes verified future candidates to the decoder's release threshold, while a frozen-teacher KL anchor regularizes all other active positions.
  • Training and target construction are gold-response-free, relying entirely on self-generated trajectories and teacher consistency signals.
  • OPTD achieves the strongest quality-constrained AUP across four mathematical reasoning and code-generation benchmarks among evaluated few-step baselines.

Why It Matters

Few-step distillation is critical for making diffusion language models practically deployable, as their parallel token prediction is only useful if the number of denoising steps can be aggressively reduced. This work directly addresses the fundamental distribution shift problem that has limited the effectiveness of prior distillation methods, offering a principled on-policy alternative that better aligns training with inference. For practitioners building or deploying dLLMs, OPTD represents a meaningful step toward high-quality, low-latency generation without requiring ground-truth responses.

Technical Details

  • On-policy trajectory sampling: Unlike prior off-policy distillation, OPTD samples partial states directly from the few-step student's own generation trajectories, ensuring the training distribution matches inference conditions where early parallel commitments alter subsequent context.
  • Frozen question-only teacher: A teacher model conditioned only on the input question (not on student-generated prefixes) identifies future token candidates that are outcome-aligned, then ranks them by current-state confidence to select the longest prefix preserving the teacher's rollout outcome.
  • Set-bottleneck objective: Every verified future candidate is promoted to the decoder's release threshold, encouraging the student to commit to longer correct prefixes in a single transition rather than conservative one-step matches.
  • KL anchor regularization: A frozen teacher KL divergence term regularizes all non-promoted active positions, preventing distributional collapse while allowing aggressive compression of verified prefixes.
  • Gold-response-free training: Neither target construction nor the training objective requires ground-truth responses, making the approach applicable to scenarios where reference outputs are unavailable or unreliable.

Industry Insight

  • The shift from off-policy to on-policy distillation in diffusion LMs addresses a fundamental scalability bottleneck; as dLLMs compete with autoregressive models on speed, methods that close the training-inference distribution gap will determine which architectures become practically viable.
  • The gold-response-free design is strategically significant for real-world deployment, where reference answers are often unavailable (e.g., open-ended code generation, creative writing), enabling distillation in domains where supervised fine-tuning is infeasible.
  • The consistency-guided adaptive compression framework—selecting prefix length based on outcome preservation rather than fixed compression ratios—suggests a broader paradigm shift toward dynamic, outcome-aware distillation that could generalize beyond diffusion models to other parallel-generation architectures.

TL;DR

  • 提出OPTD(On-Policy Transition Distillation),解决扩散语言模型少步蒸馏中off-policy轨迹漂移问题
  • 通过一致性引导的自适应压缩机制,从学生自身轨迹采样并选择最长有效转换前缀
  • 无需黄金响应(gold response)即可训练,目标构建与训练均不依赖人工标注答案
  • 在四个数学推理和代码生成基准上,OPTD实现最优质量-效率权衡和最强AUP指标

为什么值得看

本文针对扩散语言模型加速推理的核心瓶颈——少步蒸馏中的分布偏移问题,提出了无需标注数据的on-policy蒸馏方案。该方法在保持生成质量的同时显著压缩推理步数,为高效部署扩散语言模型提供了实用路径。

技术解析

  • 核心问题:现有少步蒸馏方法在off-policy轨迹上构建监督信号,但推理时学生模型的早期并行预测会改变后续token的上下文,导致实际访问状态偏离训练分布,压缩越激进偏差越大。
  • 自适应压缩机制:使用冻结的仅接受问题的教师模型识别与rollout结果一致的未来候选token,按当前状态置信度排序后,选择最长前缀使其联合承诺保留教师 rollout 结果。
  • 训练目标设计:集合瓶颈目标(set-bottleneck objective)将所有验证过的未来候选提升至解码器释放阈值;冻结教师KL锚点正则化其余活跃位置,确保分布一致性。
  • 无监督特性:目标构建和训练全程不使用黄金响应,降低了数据依赖。
  • 实验验证:在四个数学推理和代码生成基准测试上,OPTD持续改善质量-效率权衡,在评估的少步基线中取得最强质量约束AUP。

行业启示

  • 少步蒸馏技术正从依赖离线轨迹转向在线on-policy学习,这一范式转变有望推动扩散语言模型在低延迟场景中的实际部署。
  • 无需黄金响应的训练方式降低了高质量标注数据的依赖,为模型压缩和蒸馏提供了更经济可行的方案。
  • 自适应压缩策略在推理速度与生成质量之间提供了更精细的控制,对生产环境中的资源优化具有参考价值。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Research 科学研究 LLM 大模型 Inference 推理 Training 训练 Quantization 量化