The MindStudio Team publishes an explainer (June 12, 2026) on modèles de langage par diffusion, drawing on Diffusion Gemma, the first open weights implementation of this architecture, from Google.

The starting point is a clash of paradigms. The autoregressive models that dominate today (GPT-4, Claude, standard Gemma) generate text sequentially, one token at a time, left to right, via causal attention. Each output depends on all preceding tokens: generation cannot be parallelized across positions, and each token is fixed once produced — the model cannot revisit its choices.

Diffusion models proceed differently: they start from a noised/masked sequence and refine it iteratively toward a coherent output (masked diffusion, or absorbing diffusion). The forward pass progressively masks tokens; the model learns to reconstruct them; inference reverses the process over several adjustable denoising steps. Attention is bidirectional: the model sees the whole sequence in both directions and can update any position at any step — "changing its mind" about earlier tokens. The metaphor: writing a draft and then revising it, rather than a final copy produced word by word.

Diffusion Gemma: 2 billion parameters, Transformer base derived from Gemma 2, released in early 2025, weights on Hugging Face (Google DeepMind), also on AI Studio and Vertex AI. Key adaptations: removal of causal masking, noise conditioning, and simultaneous prediction of distributions over all masked positions.

Advantages: parallelism (a 500-token text would require 50-100 steps rather than 500 sequential passes, hence potentially much higher speed on long outputs), natural infilling and constrained generation (templates, code completion with surrounding context, rewriting while preserving the beginning/end), and built-in revision.

The article states a clear limitation: at the 2B scale, Diffusion Gemma does not match the best autoregressive models (GPT-4o, Gemini 1.5 Pro) on reasoning, instruction-following, and knowledge — the gap is "closing" without being closed. For conversational use, multi-step reasoning, or token-by-token streaming, autoregressive models remain the better choice.

The lineage traces back to images: Stable Diffusion and DALL-E left autoregression behind years ago; the open question is whether the same principle holds for text. Diffusion Gemma, through its open weights, makes it a testing ground for controllable generation.