Not-a-Bandit: Provably No-Regret Drafter Selection in Speculative Decoding for LLMs
Hongyi Liu, Jiaji Huang, Zhen Jia, Youngsuk Park, Yu-Xiang Wang
TL;DR
The paper tackles online drafter selection for speculative decoding in LLM inference by reframing the problem as full-information online learning rather than bandit learning. HedgeSpec leverages a between-chunk evaluation phase to obtain feedback for all drafters without extra target-model calls, enabling unbiased estimation of acceptance metrics and no-regret guarantees for TAP or EAL. The authors derive theoretical results, including an unbiased AcceptLength estimator and delayed-feedback regret bounds, and implement a practical Hedge-based algorithm (NormalHedge) that scales to large pools of domain-specialized drafters. Empirically, HedgeSpec consistently outperforms EAGLE3 and BanditSpec across diverse domains and model sizes, achieving substantial gains in token throughput and latency while remaining robust to distribution shifts. These findings demonstrate a scalable, training-free approach to dynamic drafter orchestration with strong theoretical guarantees and real-world applicability for fast, reliable LLM serving.
Abstract
Speculative decoding is widely used in accelerating large language model (LLM) inference. In this work, we focus on the online draft model selection problem in speculative decoding. We design an algorithm that provably competes with the best draft model in hindsight for each query in terms of either the token acceptance probability or expected acceptance length. In particular, we show that we can accurately evaluate all draft models, instead of only the chosen model without incurring additional queries to the target model, which allows us to improve exponentially over the existing bandit-based approach as the number of draft models increases. Our approach is generically applicable with any speculative decoding methods (single draft, multi-drafts and draft-trees). Moreover, we design system-efficient versions of online learners and demonstrate that the overhead in computation and latency can be substantially reduced. We conduct extensive experiments on open-source LLMs and diverse datasets, demonstrating that our methods substantially outperform the state-of-the-art EAGLE3 and the BanditSpec baseline in a variety of domains where specialized domain-expert drafters are available, especially when long reasoning chains are required.
