pytorch-fid
pytorch-fid copied to clipboard
Compute FID scores with PyTorch.
I met this error when i implemented it. RuntimeError: unexpected EOF, expected 877244 more bytes. The file might be corrupted.
Hi, I came across this issue when run this command `python -m pytorch_fid /path1 /path2`. Could anyone help me to resolve this issue? Thanks
`(FID) PS E:\pytorch-fid-master> python -m pytorch_fid datasets/fid/fake datasets/fid/real Traceback (most recent call last): File "D:\Anaconda\envs\FID\lib\runpy.py", line 193, in _run_module_as_main "__main__", mod_spec) File "D:\Anaconda\envs\FID\lib\runpy.py", line 85, in _run_code exec(code, run_globals) File...
Many thanks for your awesome project! While it works perfectly using the provided command line script, it's not straightforward to use it directly from code, e.g. when the FID computation...
I double checked the dataset and there are no broken images. Searching on Baidu, It seems that the error occurs when loading large images. As a result, the source code...
Thanks for sharing. The calculation of fid is too slow. The calculation for linalg.sqrtm(sigma1.dot(sigma2), disp=False) takes several minutes. How to speed it?
Hi, Recently, there is some research still evaluating their model by Inception Score, and issue #20 also mentions it. I create a pull request to add the implementation of computing...
### Summary As per my own experience and Issue #77, I believe that the ability to save an npz file is a significant missing feature to this otherwise great tool!...
Hi, how to use pytorch-fid to produce pre-calculated npz file?
Hi, Thanks for your work, I had one doubt regarding FID Score. Now if I want to train the GAN to generate the COCO alike datasets, then can I use...