Views
No views yet
1checkpoints/
2 base/
3 iMF-B.pth
4 iMF-L.pth
5 iMF-XL.pth
6 JiT-B.pth
7 JiT-L.pth
8 JiT-H.pth
9 pMF-B_256.pth
10 pMF-L_256.pth
11 pMF-H_256.pth
12 pMF-B_512.pth
13 pMF-L_512.pth
14 pMF-H_512.pth
15 post-trained/
16 iMF-B_FD-Inception.pth
17 iMF-B_FD-SIM.pth
18 iMF-L_FD-Inception.pth
19 iMF-L_FD-SIM.pth
20 iMF-XL_FD-Inception.pth
21 iMF-XL_FD-SIM.pth
22 JiT-B_FD-Inception.pth
23 JiT-B_FD-SIM.pth
24 JiT-L_FD-Inception.pth
25 JiT-L_FD-SIM.pth
26 JiT-H_FD-Inception.pth
27 JiT-H_FD-SIM.pth
28 pMF-B_FD-Inception.pth
29 pMF-B_FD-SIM.pth
30 pMF-L_FD-Inception.pth
31 pMF-L_FD-SIM.pth
32 pMF-H_FD-Inception.pth
33 pMF-H_FD-SIM.pth
34 pMF-B_512_FD-SIM.pth
35 pMF-L_512_FD-SIM.pth
36 pMF-H_512_FD-SIM.pth
37data/
38 fid_stats/
39 paper_ref_stats.pkl
40 train.txt
41 val.txt
42 val_labeled.txtpip install -U huggingface_hub1hf download jjiaweiyang/FD-Loss \
2 --local-dir . \
3 --include "checkpoints/**/*.pth" \
4 --include "data/**"1hf download jjiaweiyang/FD-Loss \
2 --local-dir . \
3 --include "checkpoints/post-trained/*.pth" \
4 --include "data/**"python scripts/extract_paper_ref_stats.py1PRESET=pMF_H_256 \
2CKPT_PATH=checkpoints/post-trained/pMF-H_FD-SIM.pth \
3GPUS_PER_NODE=8 \
4bash scripts/evaluate_released_ckpt.sh
5
6PRESET=JiT_H \
7CKPT_PATH=checkpoints/post-trained/JiT-H_FD-SIM.pth \
8GPUS_PER_NODE=8 \
9bash scripts/evaluate_released_ckpt.sh
10
11PRESET=iMF_XL \
12CKPT_PATH=checkpoints/post-trained/iMF-XL_FD-SIM.pth \
13GPUS_PER_NODE=8 \
14bash scripts/evaluate_released_ckpt.shFDr is raw
FD divided by the validation-set raw FD for the corresponding representation
space, and FDr-6 is the arithmetic mean over Inception, ConvNeXt, DINOv2, MAE,
SigLIP, and CLIP. The released code uses these validation-set raw FD values:| Representation | Inception | ConvNeXt | DINOv2 | MAE | SigLIP | CLIP |
|---|---|---|---|---|---|---|
| valFD | 1.68 | 56.87 | 14.19 | 0.04 | 0.60 | 5.60 |
1DATA_ROOT=/path/to/imagenet \
2torchrun --nproc_per_node=8 scripts/compute_valfd.py \
3 --data_root "$DATA_ROOT"1@article{yang2026fdloss,
2 title={Representation Fréchet Loss for Visual Generation},
3 author={Yang, Jiawei and Geng, Zhengyang and Ju, Xuan and Tian, Yonglong and Wang, Yue},
4 journal={arXiv:2604.28190},
5 url={https://arxiv.org/abs/2604.28190},
6 year={2026}
7}