Multi-Turn Reflective Masking Elicits Reasoning in Mask Diffusion Models
Summary
This paper introduces Reflective Masking, a lightweight post-training method that enables mask diffusion models to perform multi-turn self-revision through token-level revision policies and history references, improving performance on reasoning tasks like Sudoku, math, code generation, and image editing.
View Cached Full Text
Cached at: 06/22/26, 09:30 AM
Paper page - Multi-Turn Reflective Masking Elicits Reasoning in Mask Diffusion Models
Source: https://huggingface.co/papers/2606.16700 What is the native form of reasoning for Mask Diffusion Models (LLaDa, DiffusionGemma, etc.)?
For autoregressive language models, reasoning has largely been framed as continuation: generate a chain of thought, reflect on it, and append more tokens.
But Mask Diffusion Models are not left-to-right. They generate and refine a full canvas with bidirectional context. So perhaps their natural reasoning mechanism should not be continuation, but revision. In our recent work, we introduce Reflective Masking, a lightweight post-training method that elicits multi-turn self-revision in existing Mask Diffusion Models.
The core idea is simple: Instead of committing to every generated token, the model learns a token-level revision policy: ✅ Keep reliable tokens 🟨 Re-mask uncertain or wrong tokens ✨ Reveal better replacements This turns generation into an iterative process of sparse, local self-correction.
A key challenge in this setting is that revision can loop: a model may re-mask an incorrect token and later generate the same mistake again. To address this, we introduce History Reference, a parameter-free memory mechanism that exposes previous denoising states to the model. This helps the model remember what it has already tried and avoid repeated errors.
We find this direction exciting because it suggests a different view of reasoning for diffusion language models: Autoregressive reflection thinks by continuing. Reflective Masking thinks by revising.
Recent systems such as DiffusionGemma and Gemini Diffusion highlight the growing promise of diffusion-based text generation, including bidirectional context and iterative refinement. Our work studies a complementary question: how can existing MDMs be post-trained to explicitly perform sparse, multi-turn reasoning through self-revision?
We evaluate Reflective Masking across several settings: 🧩 Sudoku revision 🧠 mathematical reasoning 💻 code generation 🎨 image editing
Across these tasks, Reflective Masking improves performance by allowing the model to selectively revisit previous outputs rather than regenerate from scratch or commit too early. The broader takeaway is that diffusion language models may not simply be faster parallel generators. They may enable a different reasoning paradigm: reasoning as iterative state refinement.
Similar Articles
The Confidence Shortcut: A Reasoning Failure Mode of Masked Diffusion Models
This paper identifies a failure mode in masked diffusion language models where confidence-based decoding leads to high-confidence errors on complex reasoning tasks, and shows that confidence-aligned training exacerbates this issue while random masking preserves reasoning performance.
Remask, Don't Replace: Token-to-Mask Refinement in Masked Diffusion Language Models
Introduces Token-to-Mask (T2M) remasking to fix generation errors in masked diffusion LMs by resetting suspect tokens to mask state instead of overwriting, yielding up to +5.92 accuracy on CMATH without extra training or parameters.
Adaptive Order Policies for Masked Diffusion
Proposes learning the unmasking order in masked diffusion models using a lightweight policy network, with a weighted loss that outperforms heuristics on combinatorial tasks and protein design.
Unmasking On-Policy Distillation: Where It Helps, Where It Hurts, and Why
This paper introduces a training-free diagnostic framework to analyze per-token distillation signals for reasoning models, revealing that guidance is more beneficial on incorrect rollouts and depends on student capacity and task context.
Who Should Lead Decoding Now? Tracking Reliable Trajectories for Ensembling Masked Diffusion Language Models
This paper proposes TIE, a knowledge fusion framework for masked diffusion language models that tracks confidence dynamics to identify reliable decoding trajectories and iteratively transfers partially denoised sequences between models, improving generation quality on reasoning tasks.