UNCODE: Empirical Analysis of Decoding Biases in Masked Diffusion Models
June 26, 2026 ยท View on GitHub
UNCODE: Empirical Analysis of Decoding Biases in Masked Diffusion Models
A training-free decoding-calibration framework that fixes two systematic biases
in Masked Diffusion Models โ improving reasoning & planning by 7%+ across 3 MDMs and 7 benchmarks.
๐ Introduction โข ๐ News โข โ๏ธ Setup โข ๐ Evaluation โข ๐ Trajectory โข ๐ป Algorithm โข ๐ Citation โข ๐ง Contact
๐ Introduction
UNCODE (UNmasking Calibration for DecOding DEbiasing) is a novel, training-free decoding strategy for Masked Diffusion Models (MDMs) that unifies global trajectory planning with content-aware informativeness maximization.
Uncertainty-based samplers, when applied to MDMs, suffer from two systematic decoding biases:
- ๐ด Rigid Boundary Bias โ boundary tokens (BOS/EOS, sentence edges) are decoded first, collapsing decoding into a fixed U-shaped trajectory and committing to an answer before the reasoning is built.
- ๐ก Trivial Token Bias โ high-frequency, low-information tokens (punctuation, spaces, fillers) get over-prioritized, spending the decoding budget on surface structure instead of reasoning content.
UNCODE fixes both with a position-aware weighting mechanism and a calibrated, frequency-aware confidence score, guiding the decoding path and suppressing premature selection of unimportant tokens โ with no fine-tuning and no architecture change.
๐ Paper: arXiv:2508.13021 ยท ๐ Project page: passionate11.github.io/Uncode-project-page
๐ News
- 2026-04-07: Our paper has been accepted to ACL 2026 (Main Conference)! ๐
- 2025-09-12: Release adds enhanced LLaDA decoding support, integrating recent semi- and non-autoregressive sampling strategies: ReMDM, Fast-dLLM, Semi-AR, Margin-, Entropy- and Confidence-based samplers.
- 2025-08-19: Released our paper on arXiv and code on GitHub.
โจ Highlights
| ๐ >7% average gain over the strongest decoding baseline | ๐งฉ 3 ร 7 MDM backbones ร reasoning & planning benchmarks |
| โ๏ธ 44.7 โ 45.3 โ LLaDA-1.5 + UNCODE rivals autoregressive Qwen-2.5-7B | ๐ 0 extra training โ plug-and-play, decoding-side only |
โ๏ธ Setup
git clone https://github.com/NEUIR/Uncode.git
cd Uncode
conda create --name uncode python==3.10
conda activate uncode
pip install -r requirements.txt
๐ Evaluation
UNCODE and all baseline methods can be evaluated across mathematical reasoning, code generation, and question-answering datasets: HumanEval, MBPP, GSM8K, MATH-500, GPQA, Countdown, and Sudoku. Results are saved to the results/ folder.
Example โ HumanEval with UNCODE
Change --task and --mode to evaluate on other datasets / decoding methods.
cd scripts
python eval.py \
--task 'humaneval' \
--model_name 'GSAI-ML/LLaDA-8B-Instruct' \
--device 'cuda:0' \
--gen_length 256 \
--steps 256 \
--block_length 256 \
--mode pc_sampler \
--lambd 0.25 \
--alpha 10 \
--data_path ../data/humaneval.jsonl \
--result_path results/humaneval_pc_sampler
Baseline decoding methods
| Decoding Method | Command | Decoding Method | Command |
|---|---|---|---|
| Semi-Autoregressive | bash eval_semi_ar.sh | Entropy | bash eval_entropy.sh |
| EB-Sampler | bash eval_eb_sampler.sh | Fast-dLLM | bash eval_fast_dllm.sh |
| Margin | bash eval_margin.sh | PC-Sampler | bash eval_pc_sampler.sh |
| ReMDM | bash eval_remdm.sh | Linear-Position | bash eval_linear_position.sh |
All scripts live in
scripts/. Run them from inside that folder (cd scripts).
Evaluation tools & consistency
- GSM8K and GPQA are evaluated with
lm-eval; the remaining datasets usescripts/eval.py. - All methods share the same evaluation scripts to ensure consistent, comparable assessment.
Painting heatmaps
Generate decoding-trajectory heatmaps for different methods:
cd scripts
bash heatmap.sh
Heatmap outputs are saved to the heatmap_results/ folder.
๐ Decoding Trajectory
The decoding strategy strongly shapes the generation order of MDMs. Existing uncertainty-based methods exhibit a U-shaped trajectory (the rigid boundary bias): boundary tokens (BOS/EOS) are unmasked early because the attention mechanism's local positional bias inflates their confidence, after which decoding converges inward.
UNCODE instead introduces explicit trajectory control via position-aware weighting, yielding an adaptive generation order tailored to each task. Trajectories on GSM8K for four representative samplers:
| Confidence-based | Entropy-based | Margin-based | UNCODE |
|---|---|---|---|
![]() | ![]() | ![]() | ![]() |
๐ Key Observations
- Rigid Boundary Bias โ confidence/entropy/margin samplers consistently show the U-shaped pattern, decoding both sequence boundaries first. This limits their ability to capture the global dependencies needed for complex reasoning.
- Trivial Token Bias โ uncertainty-based samplers over-prioritize semantically trivial, high-frequency tokens (newlines, spaces,
the,.,!), leading to suboptimal reasoning paths. - Debiasing with UNCODE โ exponential positional weighting removes the U-shape, producing a natural progression aligned with the logical flow of reasoning.
This adaptive trajectory control directly drives UNCODE's strong 82.2% GSM8K accuracy, well above uncertainty-based alternatives.
๐ป Algorithm
UNCODE addresses the limitations of uncertainty-based sampling through two core components:
- Position-Aware Weighting โ an exponential decay over position regulates the decoding path, giving flexible control over generation order to match task structure.
- Calibrated Confidence Score โ a frequency-based adjustment from a reference corpus suppresses premature selection of trivial tokens, promoting semantically rich content.
Across seven benchmarks, UNCODE consistently outperforms existing MDM decoding strategies, narrowing the gap to state-of-the-art autoregressive models.
Workflow
Require: Predictor , prompt , answer length , steps , hyperparameters ; reference corpus
- for to do
- ย
// mask indices - if then break
- for each position do
- ย
// clip salience
- ย
// select best tokens - for each index do ย
// reveal
- ย
- return
Hyperparameters
| Param | Meaning | Recommended |
|---|---|---|
(--lambd) | Positional bias strength: 0 = no bias, larger = stronger left-to-right | 0 (Sudoku), 0.25 (most tasks), 0.5 (Countdown) |
(--alpha) | Clipping threshold for the salience score | 10 (stable across tasks) |
| Background frequency distribution from a reference corpus | see data/baseline |
๐ Citation
If you find UNCODE useful, please cite:
@inproceedings{huang-etal-2026-empirical,
title = "Empirical Analysis of Decoding Biases in Masked Diffusion Models",
author = "Huang, Pengcheng and Liu, Tianming and Liu, Zhenghao and Yan, Yukun and Wang, Shuo and Xiao, Tong and Chen, Zulong and Sun, Maosong",
booktitle = "Proceedings of the 64th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)",
year = "2026",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2026.acl-long.311/",
pages = "6853--6876",
}
๐ง Contact
Questions, suggestions, or bug reports are welcome โ please open an issue or email pengcheng.neu@outlook.com.



