paper-with-me

Papers

OverFill: Two-Stage Models for Efficient Language Model Decoding

2025-08-11 · Woojeong Kim, Junxiong Wang, Jing Nathan Yan, Mohamed Abdelfattah, Alexander M. Rush arxiv

Large language models (LLMs) excel across diverse tasks but face significant deployment challenges due to high inference costs. LLM inference comprises prefill (compute-bound) and decode (memory-bound) stages, with decode dominating latency particularly for long sequences. Current decoder-only models handle both stages uniformly, despite their distinct computational profiles. We propose OverFill, which decouples these stages to optimize accuracy-efficiency tradeoffs. OverFill begins with a full model for prefill, processing system and user inputs in parallel. It then switches to a dense pruned model, while generating tokens sequentially. Leveraging more compute during prefill, OverFill improves generation quality with minimal latency overhead. Our 3B-to-1B OverFill configuration outperforms 1B pruned models by 83.2%, while the 8B-to-3B configuration improves over 3B pruned models by 79.2% on average across standard benchmarks. OverFill matches the performance of same-sized models trained from scratch, while using significantly less training data. Our code is available at https://github.com/friendshipkim/overfill.

📄 PDF Abstract BibTeX arXiv:2508.08446

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

Accelerating LLM Inference with Staged Speculative Decoding

2023-08-08 · Benjamin Spector, Chris Re

Recent advances with large language models (LLM) illustrate their diverse capabilities. We propose a novel algorithm, staged speculative decoding, to accelerate LLM inference in small-batch, on-device scenarios. We addre…

Dynamic-LLaVA: Efficient Multimodal Large Language Models via Dynamic Vision-language Context Sparsification

2024-12-01 · Wenxuan Huang, Zijie Zhai, Yunhang Shen, Shaosheng Cao 외

Multimodal Large Language Models (MLLMs) have achieved remarkable success in vision understanding, reasoning, and interaction. However, the inference computation and memory increase progressively with the generation of o…

GPUVisual Question Answering

From Image to Music Language: A Two-Stage Structure Decoding Approach for Complex Polyphonic OMR

2026-04-22 · Nan Xu, Shiheng Li, Shengchao Hou arxiv

We propose a new approach for a practical two-stage Optical Music Recognition (OMR) pipeline, with a particular focus on its second stage. Given symbol and event candidates from the visual pipeline, we decode them into a…

Speculative Decoding Reimagined for Multimodal Large Language Models

2025-05-20 · Luxi Lin, Zhihang Lin, Zhanpeng Zeng, Rongrong Ji

This paper introduces Multimodal Speculative Decoding (MSD) to accelerate Multimodal Large Language Models (MLLMs) inference. Speculative decoding has been shown to accelerate Large Language Models (LLMs) without sacrifi…

Language ModelingLanguage Modelling

CForce: Boosting Parallel Decoding for dLLMs via Consistency Forcing

2026-08-14 · Yuji Ren, Chenkai Xu, Zhuocheng Gong, Jianguo Li 외 arxiv

Diffusion large language models (dLLMs) accelerate language generation by predicting multiple masks in a single forward pass. However, existing dLLMs can suffer from unreliable predictions in early denoising stages under…