paper-with-me

Papers

AdaSD: Adaptive Speculative Decoding for Efficient Language Model Inference

2025-12-12 · Kuan-Wei Lu, Ding-Yong Hong, Pangfeng Liu, Jan-Jan Wu arxiv

Large language models (LLMs) have achieved remarkable performance across a wide range of tasks, but their increasing parameter sizes significantly slow down inference. Speculative decoding mitigates this issue by leveraging a smaller draft model to predict candidate tokens, which are then verified by a larger target model. However, existing approaches often require additional training, extensive hyperparameter tuning, or prior analysis of models and tasks before deployment. In this paper, we propose Adaptive Speculative Decoding (AdaSD), a hyperparameter-free decoding scheme that dynamically adjusts generation length and acceptance criteria during inference. AdaSD introduces two adaptive components: one to determine when to stop candidate token generation and the other to decide token acceptance, updated in real time based on token entropy and Jensen-Shannon distance. This approach eliminates the need for pre-analysis or fine-tuning and is compatible with off-the-shelf models. Experiments on benchmark datasets demonstrate that AdaSD achieves up to 1.46x speedup over vanilla speculative decoding while limiting accuracy degradation to under 1.8%, making it a practical solution for efficient and adaptive LLM inference.

📄 PDF Abstract BibTeX arXiv:2512.11280

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

CAS-Spec: Cascade Adaptive Self-Speculative Decoding for On-the-Fly Lossless Inference Acceleration of LLMs

2025-10-30 · Zhiyuan Ning, Jiawei Shao, Ruge Xu, Xinfei Guo 외 arxiv

Speculative decoding has become a widely adopted as an effective technique for lossless inference acceleration when deploying large language models (LLMs). While on-the-fly self-speculative methods offer seamless integra…

SpecServe: Efficient and SLO-Aware Large Language Model Serving with Adaptive Speculative Decoding

2025-03-07 · Kaiyu Huang, Hao Wu, Zhubo Shi, Han Zou 외

Large Language Model (LLM) services often face challenges in achieving low inference latency and meeting Service Level Objectives (SLOs) under dynamic request patterns. Speculative decoding, which exploits lightweight mo…

Language ModelingLanguage ModellingLarge Language Model

Draft on the Fly: Adaptive Self-Speculative Decoding using Cosine Similarity

2024-10-01 · Michael R. Metel, Peng Lu, Boxing Chen, Mehdi Rezagholizadeh 외

We present a simple on the fly method for faster inference of large language models. Unlike other (self-)speculative decoding techniques, our method does not require fine-tuning or black-box optimization to generate a fi…

Nightjar: Dynamic Adaptive Speculative Decoding for Large Language Models Serving

2025-12-27 · Rui Li, Zhaoning Zhang, Libo Zhang, Huaimin Wang 외 arxiv

Speculative decoding (SD) accelerates LLM inference by verifying draft tokens in parallel. However, this method presents a critical trade-off: it improves throughput in low-load, memory-bound systems but degrades perform…

S2-MoE: Enabling Efficient Self-Speculative Decoding for Mixture-of-Experts on Edge Devices

2026-08-15 · Haochen Huang, Shengxuan Qiu, Meng Li arxiv

Deploying large language models (LLMs) for inference on edge devices is challenging due to severe memory and bandwidth constraints. While speculative decoding and Mixture-of-Experts (MoE) have been proposed to improve in…