Update README.md
Browse files
README.md
CHANGED
|
@@ -10,7 +10,7 @@ pipeline_tag: text-generation
|
|
| 10 |
|
| 11 |
# ReFusion
|
| 12 |
|
| 13 |
-
[]()
|
| 14 |
[](https://github.com/ML-GSAI/ReFusion)
|
| 15 |
|
| 16 |
**ReFusion** is a masked diffusion model that achieves superior performance and efficiency, featuring full KV cache reuse while simultaneously supporting any-order generation.
|
|
@@ -435,3 +435,18 @@ if __name__ == '__main__':
|
|
| 435 |
main()
|
| 436 |
```
|
| 437 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
|
| 11 |
# ReFusion
|
| 12 |
|
| 13 |
+
[](http://arxiv.org/abs/2512.13586)
|
| 14 |
[](https://github.com/ML-GSAI/ReFusion)
|
| 15 |
|
| 16 |
**ReFusion** is a masked diffusion model that achieves superior performance and efficiency, featuring full KV cache reuse while simultaneously supporting any-order generation.
|
|
|
|
| 435 |
main()
|
| 436 |
```
|
| 437 |
|
| 438 |
+
# Citation
|
| 439 |
+
|
| 440 |
+
If you find our work helpful, please consider citing our paper.
|
| 441 |
+
|
| 442 |
+
```bibtex
|
| 443 |
+
@misc{li2025refusiondiffusionlargelanguage,
|
| 444 |
+
title={ReFusion: A Diffusion Large Language Model with Parallel Autoregressive Decoding},
|
| 445 |
+
author={Jia-Nan Li and Jian Guan and Wei Wu and Chongxuan Li},
|
| 446 |
+
year={2025},
|
| 447 |
+
eprint={2512.13586},
|
| 448 |
+
archivePrefix={arXiv},
|
| 449 |
+
primaryClass={cs.CL},
|
| 450 |
+
url={https://arxiv.org/abs/2512.13586},
|
| 451 |
+
}
|
| 452 |
+
```
|