Make Some Noise: Unlocking Language Model Parallel Inference Capability through Noisy Training
Yixuan Wang, Xianzhen Luo, Fuxuan Wei, Yijun Liu, Qingfu Zhu, Xuanyu Zhang, Qing Yang, Dongliang Xu, Wanxiang Che
TL;DR
The paper tackles the latency bottleneck of autoregressive decoding in large language models by introducing Make Some Noise (MSN), a denoising-based replacement for supervised fine-tuning that enables parallel draft-token generation. It pairs MSN with TR-Jacobi decoding, a tree- and retrieval-augmented strategy that further accelerates inference without adding extra model structures or post-training requirements. Empirical results show 2.3–2.7x speedups in general and code domains, with competitive performance on Spec-Bench compared to state-of-the-art methods that rely on additional architectures. This approach offers a lightweight, deployment-friendly path to faster inference on LLMs while preserving task capabilities, and it highlights the practical value of treating parallel decoding as a robust denoising problem during training.
Abstract
Existing speculative decoding methods typically require additional model structure and training processes to assist the model for draft token generation. This makes the migration of acceleration methods to the new model more costly and more demanding on device memory. To address this problem, we propose the Make Some Noise (MSN) training framework as a replacement for the supervised fine-tuning stage of the large language model. The training method simply introduces some noise at the input for the model to learn the denoising task. It significantly enhances the parallel decoding capability of the model without affecting the original task capability. In addition, we propose a tree-based retrieval-augmented Jacobi (TR-Jacobi) decoding strategy to further improve the inference speed of MSN models. Experiments in both the general and code domains have shown that MSN can improve inference speed by 2.3-2.7x times without compromising model performance. The MSN model also achieves comparable acceleration ratios to the SOTA model with additional model structure on Spec-Bench.
