Improve model card

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +13 -1
README.md CHANGED
@@ -1 +1,13 @@
1
- Score Entropy Discrete Diffusion (SEDD) small model for use with inference code in https://github.com/louaaron/Score-Entropy-Discrete-Diffusion. Paper found at arxiv.org/abs/2310.16834
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pipeline_tag: text-generation
3
+ ---
4
+
5
+ # Think While You Generate: Discrete Diffusion with Planned Denoising
6
+
7
+ This model was presented in the paper [Think While You Generate: Discrete Diffusion with Planned Denoising](https://huggingface.co/papers/2410.06264).
8
+
9
+ ## Abstract
10
+
11
+ Discrete diffusion has achieved state-of-the-art performance, outperforming or approaching autoregressive models on standard benchmarks. In this work, we introduce Discrete Diffusion with Planned Denoising (DDPD), a novel framework that separates the generation process into two models: a planner and a denoiser. At inference time, the planner selects which positions to denoise next by identifying the most corrupted positions in need of denoising, including both initially corrupted and those requiring additional refinement. This plan-and-denoise approach enables more efficient reconstruction during generation by iteratively identifying and denoising corruptions in the optimal order. DDPD outperforms traditional denoiser-only mask diffusion methods, achieving superior results on language modeling benchmarks such as text8, OpenWebText, and token-based generation on ImageNet $256 \times 256$. Notably, in language modeling, DDPD significantly reduces the performance gap between diffusion-based and autoregressive methods in terms of generative perplexity.
12
+
13
+ Code: https://github.com/liusulin/DDPD