How to get FID?
cyq373 opened this issue · 2 comments
cyq373 commented
For the season transfer task, how to get the FID score?
VipulRamtekkar commented
Hi,
Pytorch has a pytorch-fid implementation. You can try using that to calculate the fid score between two datasets.
pip install pytorch-fid
Usage
python -m pytorch_fid path/to/dataset1 path/to/dataset2
cyq373 commented
@VipulRamtekkar Thanks!