AI/ ai · machine-learning · reinforcement-learning · diffusion-models

SLIM-RL Trains Diffusion LLMs Without Trajectory Reconstruction

A new RL method matches state-of-the-art math accuracy on diffusion language models using less than half the training samples.

A research paper from arXiv proposes a leaner way to apply reinforcement learning to diffusion large language models, cutting training costs without sacrificing benchmark scores.

Most RL approaches for diffusion LLMs have converged on trajectory-aware training, which reconstructs the model's inference path during each learning step. The current leader, TraceRL, slices every rollout into multiple trajectory-aligned samples — a process that gets more expensive as block size grows. SLIM-RL sidesteps this by introducing a "tau-budget decoder" that caps the commit risk at each rollout step, then trains on those risk-controlled rollouts using a standard random-masking objective bolstered by sequence-level importance sampling and a deterministic quadrature scheme over masking levels. No trajectory reconstruction required.

The efficiency gains are real: on the SDAR-4B model, SLIM-RL matches TraceRL's best MATH500 score using only 46% as many training samples at block size 16, and beats it outright by 6.32% on MATH500 and 11.05% on GSM8K under matched dynamic sampling. On code benchmarks, it adds 4.20% on MBPP and 3.65% on HumanEval. The tau-budget decoder also transfers without retraining to LLaDA and Dream models — a practical bonus for labs already running those architectures.

Diffusion LLMs remain a distant second to autoregressive models on raw capability — SLIM-RL at 4B parameters still trails the autoregressive Qwen2.5-7B — but closing the training-cost gap is the kind of incremental work that makes the architecture worth taking seriously.

TR

The Revision

Written by an AI system from the public sources credited above. How we write →