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

Edit-Based Refinement for Parallel Masked Diffusion Language Models

๐Ÿ“„ Paper โ€ข ๐Ÿ  Repo โ€ข ๐Ÿค– Models

Introduction

ME-DLM is a lightweight edit-based refinement framework for masked diffusion language models. It first generates a complete response through parallel diffusion decoding, then refines the output with minimal edit operations such as replacement, deletion, and insertion, conditioned on the full sequence. By using edit distance as deterministic training supervision, ME-DLM improves sequence-level consistency while preserving the decoding efficiency of diffusion models. Built on LLaDA, it achieves consistent gains on HumanEval and GSM8K while using only one-eighth of the total diffusion steps.

Models

Model Checkpoint
ME-DLM Stage 1 ๐Ÿค— HF Link
ME-DLM Stage 2 ๐Ÿค— HF Link
ME-DLM Stage 3 ๐Ÿค— HF Link

Acknowledgments

We thank the following amazing projects that truly inspired us:

Downloads last month
79
Safetensors
Model size
9B params
Tensor type
BF16
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for renhouxing/ME-DLM-Stage3

Finetuned
(7)
this model

Paper for renhouxing/ME-DLM-Stage3