✨ Short description of the bug [tl;dr]
whether use eps-ball for MI-FGSM
💬 Detailed code and results
I just double checked with the pseudo code of the MI-FGSM and other implementaion, it seems like the MI-FGSM didn't use a clamp in eps-ball, but in the implementation of this repo used it.
delta = torch.clamp(adv_images - images, min=-self.eps, max=self.eps)