paper-with-me

홈 › Papers

Fast and Fluent Diffusion Language Models via Convolutional Decoding and Rejective Fine-tuning

2025-09-18 · Yeongbin Seo, Dongha Lee, Jaehyung Kim, Jinyoung Yeo arxiv

Autoregressive (AR) language models generate text one token at a time, which limits their inference speed. Diffusion-based language models offer a promising alternative, as they can decode multiple tokens in parallel. However, we identify a key bottleneck in current diffusion LMs: the long decoding-window problem, where tokens generated far from the input context often become irrelevant or repetitive. Previous solutions like semi-autoregressive address this issue by splitting windows into blocks (sacrificing bidirectionality), but we find that this also leads to time-interval expansion problem, sacrificing the speed. Therefore, semi-AR eliminates the main advantages of diffusion models. To overcome this, we propose Convolutional decoding (Conv), a normalization-based method that narrows the decoding window without hard segmentation, leading to better fluency and flexibility. Additionally, we introduce Rejecting Rule-based Fine-Tuning (R2FT), a post-hoc training scheme that better aligns tokens at positions far from context. Our methods achieve state-of-the-art results on open-ended generation benchmarks (e.g., AlpacaEval) among diffusion LM baselines, with significantly lower step size than previous works, demonstrating both speed and quality improvements.

📄 PDF Abstract BibTeX arXiv:2509.15188

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

FlashDecoder: Real-Time Latent-to-Pixel Streaming Decoder with Transformers

2026-07-16 · Minguk Kang, Suha Kwak arxiv

Real-time video generation demands fast decoding as much as fast denoising, yet current latent video diffusion models rely on 3D convolutional decoders that are slow and memory-intensive at high resolutions or for long v…

Video Generation

S2D2: Fast Decoding for Diffusion LLMs via Training-Free Self-Speculation

2026-03-26 · Ligong Han, Hao Wang, Han Gao, Kai Xu 외 arxiv

Block-diffusion language models offer a promising path toward faster-than-autoregressive generation by combining block-wise autoregressive decoding with within-block parallel denoising. However, in the few-step regime ne…

Fast-dLLM v2: Efficient Block-Diffusion LLM

2025-09-30 · Chengyue Wu, Hao Zhang, Shuchen Xue, Shizhe Diao 외 arxiv

Autoregressive (AR) large language models (LLMs) have achieved remarkable performance across a wide range of natural language tasks, yet their inherent sequential decoding limits inference efficiency. In this work, we pr…

Text Generation

PLANNER: Generating Diversified Paragraph via Latent Language Diffusion Model

2023-06-05 · NeurIPS 2023 11 · Yizhe Zhang, Jiatao Gu, Zhuofeng Wu, Shuangfei Zhai 외

Autoregressive models for text sometimes generate repetitive and low-quality output because errors accumulate during the steps of generation. This issue is often attributed to exposure bias - the difference between how a…

Denoising

Fast-dLLM++: Fréchet Profile Decoding for Faster Diffusion LLM Inference

2026-06-01 · Siva Rajesh Kasa, Yasong Dai, Sumit Negi, Hongdong Li arxiv

Diffusion large language models promise parallel token generation, yet inference remains bottlenecked by deciding which masked tokens can be safely committed together. Fast-dLLM addressed this with KV caching and confide…