You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You should change inception model to evaluation mode before calculating FID score.
Inception model contains batch normalization, whose training and evaluation behaviors are different.
For example, you should add "inception.eval()" below line 486 of stylegan/finetune.py
With this correction, I got significantly different FID score comparing to reports from your paper.