paper-with-me

Papers

FS-DFM: Fast and Accurate Long Text Generation with Few-Step Diffusion Language Models

2025-09-24 · Amin Karimi Monsefi, Nikhil Bhendawade, Manuel Rafael Ciosici, Dominic Culver, Yizhe Zhang, Irina Belousova arxiv

Autoregressive language models (ARMs) deliver strong likelihoods, but are inherently serial: they generate one token per forward pass, which limits throughput and inflates latency for long sequences. Diffusion Language Models (DLMs) parallelize across positions and thus appear promising for language generation, yet standard discrete diffusion typically needs hundreds to thousands of model evaluations to reach high quality, trading serial depth for iterative breadth. We introduce FS-DFM, Few-Step Discrete Flow-Matching. A discrete flow-matching model designed for speed without sacrificing quality. The core idea is simple: make the number of sampling steps an explicit parameter and train the model to be consistent across step budgets, so one big move lands where many small moves would. We pair this with a reliable update rule that moves probability in the right direction without overshooting, and with strong teacher guidance distilled from long-run trajectories. Together, these choices make few-step sampling stable, accurate, and easy to control. On language modeling benchmarks, FS-DFM with 8 sampling steps achieves perplexity parity with a 1,024-step discrete-flow baseline for generating 1,024 tokens using a similar-size model, delivering up to 128 times faster sampling and corresponding latency/throughput gains. Code & pretrained checkpoints: https://github.com/apple/ml-fs-dfm

📄 PDF Abstract BibTeX arXiv:2509.20624

Code (0)

등록된 구현이 없습니다.

Tasks

Text Generation

Similar Papers 제목 키워드 기반

Slow-Fast Inference: Training-Free Inference Acceleration via Within-Sentence Support Stability

2026-03-12 · Xingyu Xie, Zhaochen Yu, Yue Liao, Tao Wang 외 arxiv

Long-context autoregressive decoding remains expensive because each decoding step must repeatedly process a growing history. We observe a consistent pattern during decoding: within a sentence, and more generally within a…

Improving Quality and Efficiency in Plan-based Neural Data-to-Text Generation

2019-09-22 · WS 2019 10 · Amit Moryossef, Ido Dagan, Yoav Goldberg

We follow the step-by-step approach to neural data-to-text generation we proposed in Moryossef et al (2019), in which the generation process is divided into a text-planning stage followed by a plan-realization stage. We …

Data-to-Text GenerationReferring ExpressionReferring expression generationReranking+1

Fast and Highly Expressive Policy Learning for Offline Reinforcement Learning via Bootstrapped Flow Q-Learning

2026-06-09 · Thanh Nguyen, Tri Ton, Hongbin Choe, Tung M. Luu 외 arxiv

Diffusion-based Q-learning has emerged as a powerful paradigm for offline reinforcement learning, but its reliance on multi-step denoising makes both training and inference computationally expensive and brittle. Recent e…

Reinforcement Learning

Think More, Hallucinate Less: Mitigating Hallucinations via Dual Process of Fast and Slow Thinking

2025-01-02 · Xiaoxue Cheng, Junyi Li, Wayne Xin Zhao, Ji-Rong Wen

Large language models (LLMs) demonstrate exceptional capabilities, yet still face the hallucination issue. Typical text generation approaches adopt an auto-regressive generation without deliberate reasoning, which often …

HallucinationText Generation

DualDiffusion: A Speculative Decoding Strategy for Masked Diffusion Models

2026-04-06 · Satyam Goyal, Kushal Patel, Tanush Mittal, Arjun Laxman arxiv

Masked Diffusion Models (MDMs) offer a promising alternative to autoregressive language models by enabling parallel token generation and bidirectional context modeling. However, their inference speed is significantly lim…