T2I-Distill / README.md
yifanpu001's picture
Create README.md
a21f06d verified
# 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}")