Views
No views yet


| Model | Dataset | Resolution | FID-50K | Inception Score | Download |
|---|---|---|---|---|---|
| DiffiT | ImageNet | 256×256 | 1.73 | 276.49 | model |
| Model | Dataset | Resolution | FID-50K | Inception Score | Download |
|---|---|---|---|---|---|
| DiffiT | ImageNet | 512×512 | 2.67 | 252.12 | model |
sample.py from the DiffiT repository. To reproduce the reported numbers, use the commands below.1python sample.py \
2 --log_dir $LOG_DIR \
3 --cfg_scale 4.4 \
4 --model_path $MODEL \
5 --image_size 256 \
6 --model Diffit \
7 --num_sampling_steps 250 \
8 --num_samples 50000 \
9 --cfg_cond True1python sample.py \
2 --log_dir $LOG_DIR \
3 --cfg_scale 1.49 \
4 --model_path $MODEL \
5 --image_size 512 \
6 --model Diffit \
7 --num_sampling_steps 250 \
8 --num_samples 50000 \
9 --cfg_cond Trueeval_run.sh script in the repository. The evaluation pipeline follows the protocol from openai/guided-diffusion/evaluations.bash eval_run.sh1@inproceedings{hatamizadeh2025diffit,
2 title={Diffit: Diffusion vision transformers for image generation},
3 author={Hatamizadeh, Ali and Song, Jiaming and Liu, Guilin and Kautz, Jan and Vahdat, Arash},
4 booktitle={European Conference on Computer Vision},
5 pages={37--55},
6 year={2025},
7 organization={Springer}
8}