Views
No views yet
| Benchmark | I-DLM-32B | Qwen3-32B (AR) | LLaDA-2.1-flash (100B) |
|---|---|---|---|
| ARC-C | 97.0 | 96.8 | 91.0 |
| MMLU | 85.8 | 86.0 | 72.4 |
| MMLU-Pro | 79.3 | 79.8 | - |
| GPQA-D | 68.2 | 68.7 | 49.5 |
| GSM8K | 97.3 | 97.3 | 94.5 |
| MATH-500 | 96.8 | 96.6 | 82.4 |
| AIME-24 | 85.4 | 85.0 | 46.7 |
| AIME-25 | 72.7 | 72.0 | - |
| MathBench | 93.3 | 93.5 | - |
| HumanEval | 95.7 | 95.7 | 81.1 |
| MBPP | 93.7 | 93.7 | - |
| LiveCodeBench-v6 | 57.2 | 57.7 | 39.3 |
| IFEval | 87.1 | 87.1 | 83.0 |
Note: This model checkpoint is hosted on HuggingFace for weight distribution. For inference, please use our SGLang-based ISD pipeline which implements the Introspective Strided Decoding algorithm described in the paper. Direct loading viatransformersis not currently supported for reproducing paper results.
1# Install
2git clone https://github.com/Introspective-Diffusion/I-DLM.git
3cd I-DLM/inference && bash install.sh
4
5# Launch server
6python -m sglang.launch_server \
7 --model-path yifanyu/I-DLM-32B \
8 --trust-remote-code --tp-size 1 --dtype bfloat16 \
9 --mem-fraction-static 0.85 --max-running-requests 32 \
10 --attention-backend flashinfer --dllm-algorithm IDLMBlockN \
11 --dllm-algorithm-config inference/configs/idlm_blockN4_config.yaml \
12 --port 30000
13
14# Generate
15curl http://localhost:30000/v1/chat/completions \
16 -H "Content-Type: application/json" \
17 -d '{"model":"default","messages":[{"role":"user","content":"Prove sqrt(2) is irrational."}],"max_tokens":4096}'L = CE_noisy + alpha * CE_clean| Model | HuggingFace | Description |
|---|---|---|
| I-DLM-8B | yifanyu/I-DLM-8B | Converted from Qwen3-8B |
| I-DLM-32B | yifanyu/I-DLM-32B | Converted from Qwen3-32B |
| I-DLM-8B-LoRA | yifanyu/I-DLM-8B-lora-r128 | Gated LoRA adapter (rank=128) for lossless R-ISD |
1@article{yu2026introspective,
2 title={Introspective Diffusion Language Models},
3 author={Yu, Yifan and Jian, Yuqing and Wang, Junxiong and Zhou, Zhongzhu
4 and Zhuang, Donglin and Fang, Xinyu and Yanamandra, Sri
5 and Wu, Xiaoxia and Wu, Qingyang and Song, Shuaiwen Leon
6 and Dao, Tri and Athiwaratkun, Ben and Zou, James
7 and Lai, Fan and Xu, Chenfeng},
8 journal={arXiv preprint arXiv:2604.11035},
9 year={2026}
10}