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
I encountered two warnings during calculating inception score, and I'd like to propose these fixes:
Line 37, inception_model = inception_v3(pretrained=True, transform_input=False).type(dtype)
change the pretrained=True to weights=Inception_V3_Weights.IMAGENET1K_V1
Line 44, return F.softmax(x).data.cpu().numpy()
change the softmax(x) to softmax(x, dim=1)
The text was updated successfully, but these errors were encountered:
I encountered two warnings during calculating inception score, and I'd like to propose these fixes:
Line 37, inception_model = inception_v3(pretrained=True, transform_input=False).type(dtype)
change the pretrained=True to weights=Inception_V3_Weights.IMAGENET1K_V1
Line 44, return F.softmax(x).data.cpu().numpy()
change the softmax(x) to softmax(x, dim=1)
The text was updated successfully, but these errors were encountered: