yifanpu001 commited on
Commit
a21f06d
·
verified ·
1 Parent(s): f36667e

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -0
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}")