The best and fast way to calculate FID score

134 Views Asked by At

I created a GAN model and trained it on mnist dataset. I want to calculate fid score in each iteration. I tested torcheval library but it was so slow.
What is the best and fast way to calculate FID score for it?

1

There are 1 best solutions below

0
trsvchn On

Try PyTorch-Ignite's implementation ignite.metrics.FID.

Hope this helps!