How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "SJTU-DENG-Lab/MBD-Math-LLaDA2-mini-16B"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "SJTU-DENG-Lab/MBD-Math-LLaDA2-mini-16B",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Use Docker
docker model run hf.co/SJTU-DENG-Lab/MBD-Math-LLaDA2-mini-16B
Quick Links

Multi-Block Diffusion Language Models (MBD-LMs)

Model weight of MBD-LMs

Introduction

Block Diffusion Language Models (BD-LMs) improve diffusion-based text generation with KV caching and flexible-length generation. Multi-Block Diffusion Language Models (MBD-LMs) extend this paradigm from Single-Block Diffusion (SingleBD) to Multi-Block Diffusion (MultiBD), where a running-set of consecutive blocks is decoded concurrently for inter-block parallelism.

This is achieved via:

  • Multi-block Teacher Forcing (MultiTF): A training strategy that integrates teacher forcing and diffusion forcing by training on bounded noise-groups conditioned on clean prefixes.
  • Block Buffer Inference Mechanism: An optimized decoding algorithm that preserves prefix-cache reuse and keeps tensor shapes static for accelerated, CUDA Graph-friendly execution.

For detailed guidelines on training, evaluation, and benchmark execution, please refer to the official GitHub repository.

Citation

@article{jin2026multiblock,
  title={Multi-Block Diffusion Language Models},
  author={Yijie Jin and Jiajun Xu and Yuxuan Liu and Chenkai Xu and Yi Tu and Jiajun Li and Dandan Tu and Xiaohui Yan and Kai Yu and Pengfei Liu and Zhijie Deng},
  journal={arXiv preprint arXiv:2606.29215},
  year={2026}
}
Downloads last month
95
Safetensors
Model size
16B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Collection including SJTU-DENG-Lab/MBD-Math-LLaDA2-mini-16B

Paper for SJTU-DENG-Lab/MBD-Math-LLaDA2-mini-16B