Improve model card: Add license, project/code links, and usage
#2
by
nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
| 1 |
---
|
| 2 |
pipeline_tag: unconditional-image-generation
|
|
|
|
| 3 |
---
|
|
|
|
| 4 |
## Boosting Generative Image Modeling via Joint Image-Feature Synthesis
|
| 5 |
-
Arxiv: https://arxiv.org/abs/2504.16064 <br>
|
| 6 |
|
|
|
|
| 7 |
|
| 8 |
**ReDi** learns to generate coherent image-feature pairs from pure noise, significantly enhancing both generative quality and training efficiency.
|
| 9 |
|
|
@@ -11,9 +13,6 @@ Arxiv: https://arxiv.org/abs/2504.16064 <br>
|
|
| 11 |
#### Model Description
|
| 12 |
This model uses [SiT](https://github.com/willisma/SiT) as the base model. We train for 4M steps with a batch size of 256 on ImageNet 256x256.
|
| 13 |
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
#### Metrics
|
| 18 |
Generative performance on Imagenet Validation Set.
|
| 19 |
|
|
@@ -21,5 +20,12 @@ Generative performance on Imagenet Validation Set.
|
|
| 21 |
|---------------------|---------|----------|--------|----------|---------|
|
| 22 |
| **SiT-XL/2 w/ ReDi** | 1.64 | 4.63 | 289.3 | 0.65 | 0.77 |
|
| 23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
|
| 25 |
-
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
pipeline_tag: unconditional-image-generation
|
| 3 |
+
license: apache-2.0
|
| 4 |
---
|
| 5 |
+
|
| 6 |
## Boosting Generative Image Modeling via Joint Image-Feature Synthesis
|
|
|
|
| 7 |
|
| 8 |
+
[\ud83d\udcda Paper](https://arxiv.org/abs/2504.16064) | [\ud83c\udf10 Project Page](https://representationdiffusion.github.io/)   [\ud83d\udcbb Code](https://github.com/zelaki/ReDi)
|
| 9 |
|
| 10 |
**ReDi** learns to generate coherent image-feature pairs from pure noise, significantly enhancing both generative quality and training efficiency.
|
| 11 |
|
|
|
|
| 13 |
#### Model Description
|
| 14 |
This model uses [SiT](https://github.com/willisma/SiT) as the base model. We train for 4M steps with a batch size of 256 on ImageNet 256x256.
|
| 15 |
|
|
|
|
|
|
|
|
|
|
| 16 |
#### Metrics
|
| 17 |
Generative performance on Imagenet Validation Set.
|
| 18 |
|
|
|
|
| 20 |
|---------------------|---------|----------|--------|----------|---------|
|
| 21 |
| **SiT-XL/2 w/ ReDi** | 1.64 | 4.63 | 289.3 | 0.65 | 0.77 |
|
| 22 |
|
| 23 |
+
---
|
| 24 |
+
|
| 25 |
+
## Sample Usage
|
| 26 |
+
|
| 27 |
+
You can sample from our pre-trained ReDi models with `sample.py`.
|
| 28 |
|
| 29 |
+
```bash
|
| 30 |
+
python sample.py SDE --image-size 256 --seed 42 --ckpt /path/to/ckpt
|
| 31 |
+
```
|