Improve model card and add metadata (#1)
Browse files- Improve model card and add metadata (26f75876317bf398811669eb832928d935d6c747)
Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>
README.md
CHANGED
|
@@ -1,17 +1,20 @@
|
|
| 1 |
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
library_name: pytorch
|
|
|
|
|
|
|
| 4 |
tags:
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
---
|
| 11 |
|
| 12 |
# TraceLock Dream Activation Autoencoder
|
| 13 |
|
| 14 |
-
This repository contains the projection autoencoder checkpoint used to reproduce TraceLock on Dream.
|
|
|
|
|
|
|
| 15 |
|
| 16 |
TraceLock is a token-level acceptance policy for Dream-style masked diffusion generation. Dream proposes candidate tokens during the denoising loop, and TraceLock decides which positions should be locked now versus kept masked for later refinement.
|
| 17 |
|
|
@@ -66,5 +69,16 @@ The exported projection state contains:
|
|
| 66 |
|
| 67 |
## Citation
|
| 68 |
|
| 69 |
-
If you use this checkpoint, please cite the
|
| 70 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
library_name: pytorch
|
| 3 |
+
license: apache-2.0
|
| 4 |
+
pipeline_tag: feature-extraction
|
| 5 |
tags:
|
| 6 |
+
- tracelock
|
| 7 |
+
- dream
|
| 8 |
+
- diffusion-language-model
|
| 9 |
+
- activation-autoencoder
|
| 10 |
+
- pytorch
|
| 11 |
---
|
| 12 |
|
| 13 |
# TraceLock Dream Activation Autoencoder
|
| 14 |
|
| 15 |
+
This repository contains the projection autoencoder checkpoint used to reproduce TraceLock on Dream, as presented in the paper [The Path Matters: Learning a Token-Commitment Policy for Diffusion Language Models](https://huggingface.co/papers/2605.24697).
|
| 16 |
+
|
| 17 |
+
**Code**: [https://github.com/BobSun98/TraceLock](https://github.com/BobSun98/TraceLock)
|
| 18 |
|
| 19 |
TraceLock is a token-level acceptance policy for Dream-style masked diffusion generation. Dream proposes candidate tokens during the denoising loop, and TraceLock decides which positions should be locked now versus kept masked for later refinement.
|
| 20 |
|
|
|
|
| 69 |
|
| 70 |
## Citation
|
| 71 |
|
| 72 |
+
If you use this checkpoint, please cite the following paper:
|
| 73 |
+
|
| 74 |
+
```bibtex
|
| 75 |
+
@misc{sun2026pathmatters,
|
| 76 |
+
title={The Path Matters: Learning a Token-Commitment Policy for Diffusion Language Models},
|
| 77 |
+
author={Bohang Sun and Max Zhu and Francesco Caso and Jindong Gu and Junchi Yu and Philip Torr and Pietro Liò and Jialin Yu},
|
| 78 |
+
year={2026},
|
| 79 |
+
eprint={2605.24697},
|
| 80 |
+
archivePrefix={arXiv},
|
| 81 |
+
primaryClass={cs.CL},
|
| 82 |
+
url={https://arxiv.org/abs/2605.24697}
|
| 83 |
+
}
|
| 84 |
+
```
|