paper-with-me

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, many SD systems require heavy offline training or extra components. These choices raise data/compute cost and can yield brittle drafters under distribution drift. We introduce \emph{Draft, Verify, \& Improve (DVI)}, a training-aware self-speculative framework that combines inference with continual online learning. We partition an LLM into a drafter and a verifier, and during generation, verifier accept/reject decisions are converted into supervision signals and used to update the drafter head. A simple \emph{KL$\rightarrow$RL} schedule bootstraps calibration via online distillation and then adds reward-masked cross-entropy with a on-policy policy-gradient term, preserving lossless, single model deployment. On Spec-Bench, DVI achieves a $2.16\times$ wall-time speedup, on par with SoTA approaches like EAGLE-2, while orders of magnitude less data for training, and ablations show that DVI outperforms KL-only online distillation. DVI demonstrates that \emph{training-aware} self-speculation can deliver state-of-the-art, lossless speedups with minimal training overhead.

📄 PDF Abstract BibTeX arXiv:2510.05421

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

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

FlexDraft: Flexible Speculative Decoding via Attention Tuning and Bonus-Guided Calibration

2026-05-19 · Yaojie Zhang, Jianuo Huang, Junlong Ke, Yuhang Han 외 arxiv

Speculative decoding accelerates memory-bound LLM inference without quality degradation by using a fast drafter to propose multiple candidate tokens and the target model to verify them in parallel. However, conventional …

Continual Pretraining

TAPS: Target-Aware Prefix Tree Selection for Diffusion-Drafted Speculative Decoding

2026-05-30 · Zhuoyu Wang, Junnan Huang, Xinyu Chen arxiv

Using a diffusion model for parallel drafting is a promising approach for speculative decoding. By predicting tokens at multiple future positions in a single forward pass, diffusion drafters substantially reduce drafting…

Parallel Speculative Decoding with Adaptive Draft Length

2024-08-13 · Tianyu Liu, Yun Li, Qitan Lv, Kai Liu 외

Speculative decoding (SD), where an extra draft model is employed to provide multiple \textit{draft} tokens first and then the original target model verifies these tokens in parallel, has shown great power for LLM infere…

Text Generation

DuoDecoding: Hardware-aware Heterogeneous Speculative Decoding with Dynamic Multi-Sequence Drafting

2025-03-02 · Kai Lv, Honglin Guo, Qipeng Guo, Xipeng Qiu

Large language models (LLMs) exhibit exceptional performance across a wide range of tasks; however, their token-by-token autoregressive generation process significantly hinders inference speed. Speculative decoding prese…

CPUGPU