nielsr HF Staff commited on
Commit
ce4b03b
·
verified ·
1 Parent(s): b84c36a

Improve dataset card: Add task category, paper, and code links

Browse files

This PR improves the dataset card by adding the `unconditional-image-generation` task category to the metadata, which enhances discoverability on the Hugging Face Hub. It also populates the content section with a link to the associated paper ([Modulated Diffusion: Accelerating Generative Modeling with Modulated Quantization](https://huggingface.co/papers/2506.22463)) and the code repository (https://github.com/PKU-MACL/MoDiff).

Files changed (1) hide show
  1. README.md +10 -2
README.md CHANGED
@@ -1,7 +1,15 @@
1
  ---
2
- license: mit
3
  language:
4
  - en
 
5
  size_categories:
6
  - 100M<n<1B
7
- ---
 
 
 
 
 
 
 
 
 
1
  ---
 
2
  language:
3
  - en
4
+ license: mit
5
  size_categories:
6
  - 100M<n<1B
7
+ task_categories:
8
+ - unconditional-image-generation
9
+ ---
10
+
11
+ This repository contains the dataset and resources related to the paper [Modulated Diffusion: Accelerating Generative Modeling with Modulated Quantization](https://huggingface.co/papers/2506.22463).
12
+
13
+ The paper introduces Modulated Diffusion (MoDiff), an innovative, rigorous, and principled framework that accelerates generative modeling through modulated quantization and error compensation. MoDiff not only inherits the advantages of existing caching and quantization methods but also serves as a general framework to accelerate all diffusion models. Extensive experiments on CIFAR-10 and LSUN demonstrate that MoDiff significantly reduces activation quantization from 8 bits to 3 bits without performance degradation in post-training quantization (PTQ).
14
+
15
+ Code: https://github.com/PKU-MACL/MoDiff