Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
# T2I-Distill: Few-Step Distillation for Text-to-Image Generation
|
| 3 |
+
|
| 4 |
+
This repository contains the official checkpoints for the paper **"Few-Step Distillation for Text-to-Image Generation: A Practical Guide"**.
|
| 5 |
+
|
| 6 |
+
## 📄 Paper Information
|
| 7 |
+
|
| 8 |
+
- **Title**: Few-Step Distillation for Text-to-Image Generation: A Practical Guide
|
| 9 |
+
- **ArXiv**: [2512.13006](https://huggingface.co/papers/2512.13006)
|
| 10 |
+
|
| 11 |
+
## 💻 Usage
|
| 12 |
+
|
| 13 |
+
### Download the models
|
| 14 |
+
|
| 15 |
+
You can download the models directly from this repository using the `huggingface_hub` library:
|
| 16 |
+
|
| 17 |
+
```python
|
| 18 |
+
from huggingface_hub import snapshot_download
|
| 19 |
+
|
| 20 |
+
model_path = snapshot_download(repo_id="Alibaba-DAMO-Academy/T2I-Distill")
|
| 21 |
+
print(f"Model downloaded to: {model_path}")
|