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

GDSD: Reinforcement Learning as Guided Denoiser Self-Distillation for Diffusion Language Models

This repository contains the model weights for GDSD, as presented in the paper GDSD: Reinforcement Learning as Guided Denoiser Self-Distillation for Diffusion Language Models.

Guided Denoiser Self-Distillation (GDSD) is a reinforcement learning framework for diffusion language models (dLLMs). It improves the denoiser of dLLMs by distilling from an advantage-guided self-teacher, bypassing the biases associated with evidence lower bound (ELBO) surrogates used in prior methods. GDSD provides a more stable and effective RL procedure, achieving significant performance gains on planning, math, and coding benchmarks.

Resources

Citation

@misc{tang2026gdsdreinforcementlearningguided,
      title={GDSD: Reinforcement Learning as Guided Denoiser Self-Distillation for Diffusion Language Models}, 
      author={Xiaohang Tang and Keyue Jiang and Che Liu and Qifang Zhao and Xiaoxiao Xu and Sangwoong Yoon and Ilija Bogunovic},
      year={2026},
      eprint={2605.29398},
      archivePrefix={arXiv},
      primaryClass={cs.LG},
      url={https://arxiv.org/abs/2605.29398}, 
}
Downloads last month
31
Safetensors
Model size
8B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Paper for diffusion-reasoning/gdsd_countdown_dream