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