paper-with-me

홈 › Papers

Draft-OPD: On-Policy Distillation for Speculative Draft Models

2026-05-28 · Haodi Lei, Yafu Li, Haoran Zhang, Shunkai Zhang, Qianjia Cheng, Xiaoye Qu, Ganqu Cui, Bowen Zhou, Ning Ding, Yun Luo, Yu Cheng arxiv

Speculative decoding accelerates large language model inference by pairing a target model with a lightweight draft model whose proposed tokens are verified in parallel. A common way to build draft models, like EAGLE3 or DFlash is supervised fine-tuning (SFT) on target-generated trajectories. However, we observe that SFT quickly plateaus: the draft model's acceptance length on test data stops improving. The reason is an offline-to-inference mismatch: In SFT, the drafter learns from fixed target-generated trajectories, whereas during speculative decoding it is evaluated on blocks proposed under its own policy. This motivates on-policy distillation (OPD), where the target model supervises the drafter on draft-induced states. Yet OPD remains difficult for draft models, as they cannot reliably roll out complete sequences independently, whereas target-assisted generation makes the collected sequences follow the target distribution and thus eliminates the on-policy signal. We therefore propose Draft-OPD, which uses target-assisted rollout for stable continuations and replays drafting from the verification-exposed error positions. This allows the drafter to learn from target feedback on both accepted and rejected proposals, focusing training on the draft-induced errors that limit speculative acceptance. Experiments show that Draft-OPD achieves over $5\times$ lossless acceleration for thinking models across diverse tasks, improving over EAGLE-3 and DFlash by 23\% and 13\%.

📄 PDF Abstract BibTeX arXiv:2605.29343

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

Draft, Verify, and Improve: Toward Training-Aware Speculative Decoding

2025-10-06 · Shrenik Bhansali, Larry Heck arxiv

Autoregressive (AR) decoding is a major latency bottleneck for large language models. Speculative decoding (SD) accelerates AR by letting a drafter propose multi-token blocks that a verifier accepts or rejects. However, …

Direct Alignment of Draft Model for Speculative Decoding with Chat-Fine-Tuned LLMs

2024-02-29 · Raghavv Goel, Mukul Gagrani, Wonseok Jeon, Junyoung Park 외

Text generation with Large Language Models (LLMs) is known to be memory bound due to the combination of their auto-regressive nature, huge parameter counts, and limited memory bandwidths, often resulting in low token rat…

Dataset GenerationKnowledge DistillationText Generation

Training Domain Draft Models for Speculative Decoding: Best Practices and Insights

2025-03-10 · Fenglu Hong, Ravi Raju, Jonathan Lingjie Li, Bo Li 외

Speculative decoding is an effective method for accelerating inference of large language models (LLMs) by employing a small draft model to predict the output of a target model. However, when adapting speculative decoding…

Knowledge Distillation

DistillSpec: Improving Speculative Decoding via Knowledge Distillation

2023-10-12 · Yongchao Zhou, Kaifeng Lyu, Ankit Singh Rawat, Aditya Krishna Menon 외

Speculative decoding (SD) accelerates large language model inference by employing a faster draft model for generating multiple tokens, which are then verified in parallel by the larger target model, resulting in the text…

Knowledge DistillationLanguage ModellingLarge Language Model

Speculative Decoding Across Languages

2026-05-28 · Nirajan Paudel, Michael Ginn, Luc De Nardi, Alexis Palmer arxiv

Speculative decoding has become a crucial component of large language model (LLM) inference, enabling faster generation by drafting multiple tokens and verifying them in parallel. However, small draft models tend to suff…

Story Generation