Add model card metadata and link to paper and project page
Browse filesThis PR adds a model card by linking it to the paper [REPA-E: Unlocking VAE for End-to-End Tuning of Latent Diffusion Transformers](https://huggingface.co/papers/2504.10483).
The PR improves the model card by adding the relevant `pipeline_tag` and `library_name`, ensuring people can find your model more easily on the Hub. It also adds a link to the project page.
Please review and merge this PR if everything looks good.
README.md
CHANGED
|
@@ -1,3 +1,39 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
library_name: diffusers
|
| 4 |
+
pipeline_tag: image-to-image
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
---
|
| 8 |
+
license: mit
|
| 9 |
+
library_name: diffusers
|
| 10 |
+
pipeline_tag: image-to-image
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# REPA-E: Unlocking VAE for End-to-End Tuning of Latent Diffusion Transformers
|
| 14 |
+
|
| 15 |
+
This model implements the REPA-E approach for end-to-end tuning of latent diffusion transformers, as described in the paper [REPA-E: Unlocking VAE for End-to-End Tuning of Latent Diffusion Transformers](https://huggingface.co/papers/2504.10483). REPA-E enables stable and effective joint training of both the VAE and the diffusion model, leading to faster training and improved generation quality.
|
| 16 |
+
|
| 17 |
+
For more information, please refer to the following resources:
|
| 18 |
+
|
| 19 |
+
* **Project Page:** https://end2end-diffusion.github.io
|
| 20 |
+
* **GitHub Repository:** https://github.com/REPA-E/REPA-E
|
| 21 |
+
|
| 22 |
+
## Usage
|
| 23 |
+
|
| 24 |
+
You can use this model with the `diffusers` library. Here's a basic example:
|
| 25 |
+
|
| 26 |
+
```python
|
| 27 |
+
from diffusers import DiffusionPipeline
|
| 28 |
+
|
| 29 |
+
# Load the pipeline
|
| 30 |
+
pipeline = DiffusionPipeline.from_pretrained("REPA-E/your-model-name") # Replace "REPA-E/your-model-name"
|
| 31 |
+
|
| 32 |
+
# Generate an image
|
| 33 |
+
image = pipeline().images[0]
|
| 34 |
+
|
| 35 |
+
# Save the image
|
| 36 |
+
image.save("generated_image.png")
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
Please refer to the GitHub repository for detailed instructions and more advanced usage examples.
|