nielsr HF Staff commited on
Commit
7632464
·
verified ·
1 Parent(s): 4b11eee

Add model card metadata, links and citation

Browse files

Hi! I'm Niels from the Hugging Face team.

I noticed this model repository is missing metadata and a complete model card. This PR aims to improve the model's discoverability and documentation on the Hugging Face Hub by:
- Adding YAML metadata including `pipeline_tag: text-generation`, `library_name: transformers`, and `license: mit`.
- Documenting the model with references and links to the paper, project page, and official GitHub repository.
- Adding a BibTeX citation for the paper so users can easily cite your work.

Please let me know if you have any feedback or would like to make changes.

Files changed (1) hide show
  1. README.md +32 -1
README.md CHANGED
@@ -1 +1,32 @@
1
- Model weight of [MBD-LMs](https://arxiv.org/abs/2606.29215)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ library_name: transformers
4
+ pipeline_tag: text-generation
5
+ ---
6
+
7
+ # Multi-Block Diffusion Language Models (MBD-LMs)
8
+
9
+ This repository contains the model weights for **MBD-LMs**, presented in the paper [Multi-Block Diffusion Language Models](https://arxiv.org/abs/2606.29215).
10
+
11
+ - **Project Page:** [SJTU-DENG-Lab Project Page](https://sjtu-deng-lab.github.io/mbd-lms)
12
+ - **GitHub Repository:** [SJTU-DENG-Lab/mbd-lms](https://github.com/SJTU-DENG-Lab/mbd-lms)
13
+ - **Inference Engine (Diffulex):** [SJTU-DENG-Lab/Diffulex](https://github.com/SJTU-DENG-Lab/Diffulex)
14
+
15
+ ## Introduction
16
+
17
+ 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 to **Multi-Block Diffusion (MultiBD)**, where a running-set of consecutive blocks is decoded concurrently for inter-block parallelism.
18
+
19
+ This model is obtained by post-training BD-LMs with Multi-block Teacher Forcing (MultiTF), which integrates teacher forcing and diffusion forcing by training on bounded noise-groups conditioned on clean prefixes.
20
+
21
+ ## Citation
22
+
23
+ If you find this work useful, please consider citing the paper:
24
+
25
+ ```bibtex
26
+ @article{jin2026multiblock,
27
+ title={Multi-Block Diffusion Language Models},
28
+ author={Jin, Yijie and Xu, Jiajun and Liu, Yuxuan and Xu, Chenkai and Tu, Yi and Li, Jiajun and Tu, Dandan and Yan, Xiaohui and Yu, Kai and Liu, Pengfei and Deng, Zhijie},
29
+ journal={arXiv preprint arXiv:2606.29215},
30
+ year={2026}
31
+ }
32
+ ```