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
Hey and congratulations for this amazing library, I have been using it for our latest paper [paper], [code].
After the BREAKING CHANGE commit, the FID / Inception score is calculated wrongly for the SAGAN example. For ImageNet, it gives real inception score ~2.5.
After changing the sample_fn function defined here to perform the image resize, the correct FID and Inception scores are calculated.
I guess that is unexpected, since there is this comment, just in the above line: # Image resizing happens inside the Inception SavedModel.
I managed to solve the problem by reshaping in the sample_fn function (as it was before the change), but I thought that it is worth bringing that to your attention :)
Let me know if you need any help!
The text was updated successfully, but these errors were encountered:
Hey and congratulations for this amazing library, I have been using it for our latest paper [paper], [code].
After the BREAKING CHANGE commit, the FID / Inception score is calculated wrongly for the SAGAN example. For ImageNet, it gives real inception score ~2.5.
After changing the
sample_fn
function defined here to perform the image resize, the correct FID and Inception scores are calculated.I guess that is unexpected, since there is this comment, just in the above line:
# Image resizing happens inside the Inception SavedModel.
I managed to solve the problem by reshaping in the
sample_fn
function (as it was before the change), but I thought that it is worth bringing that to your attention :)Let me know if you need any help!
The text was updated successfully, but these errors were encountered: