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
In the Adversarial example generation tutorial the classifier from https://github.com/pytorch/examples/tree/master/mnist is used. However, this classifier is trained with input normalization transforms.Normalize((0.1307,), (0.3081,)) while in the FGSM tutorial no normalization is used and the perturbed images are clamped to [0,1] - is this not a contradiction?