How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "d3LLM/d3LLM_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": "d3LLM/d3LLM_Dream",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Use Docker
docker model run hf.co/d3LLM/d3LLM_Dream
Quick Links

d3LLM: Ultra-Fast Diffusion LLM using Pseudo-Trajectory Distillation 🚀

This repository contains the d3LLM-Dream model, an ultra-fast diffusion language model introduced in the paper d3LLM: Ultra-Fast Diffusion LLM using Pseudo-Trajectory Distillation.

Model Description

d3LLM-Dream is an ultra-fast diffusion language model that achieves high generation speed while maintaining competitive performance. It strikes a balance between accuracy and parallelism by using pseudo-trajectory distillation during training and entropy-based multi-block decoding during inference.

Key Features

  • 🚀 High throughput: 4.5× faster than autoregressive models (Qwen-2.5-7B) on H100 GPU, 2.5× faster on A100 GPU. Achieves 235.34 tokens/s on H100 on GSM8K-CoT.
  • 📊 High AUP: Optimized for Accuracy Under Parallelism across benchmarks.
  • 🔧 Specialized: Optimized for coding and math reasoning tasks.

Usage

For more chat examples and evaluation scripts, visit the official repository.

Citation

@inproceedings{ICML'26:d3llm,
    title = {d3LLM: Ultra-Fast Diffusion LLM using Pseudo-Trajectory Distillation},
    author = {Yu-Yang Qian and Junda Su and Lanxiang Hu and Peiyuan Zhang and Zhijie Deng and Peng Zhao and Hao Zhang},
    booktitle = {Proceedings of the 43rd International Conference on Machine Learning (ICML)},
    pages = {to appear},
    year = {2026}
}
Downloads last month
229
Safetensors
Model size
8B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for d3LLM/d3LLM_Dream

Finetuned
(13)
this model

Dataset used to train d3LLM/d3LLM_Dream

Space using d3LLM/d3LLM_Dream 1

Paper for d3LLM/d3LLM_Dream