Questions tagged [adversarial-attack]

17 questions
-1
votes
1 answer

AttributeError: 'NoneType' object has no attribute 'data', Training error while fgsm attack

I am trying to train a code, but I get this error. Here is my code: for i in range(num_iter): # Forward pass to get logits logits = self(images) # Calculate loss loss = self.criterion(logits, masks) …
-2
votes
1 answer

Reverse Engineering to find where a given operation in a python library is executed

There is an interesting notebook on https://github.com/Trusted-AI/adversarial-robustness-toolbox/blob/main/notebooks/expectation_over_transformation_classification_rotation.ipynb to perform adversarial attacks when the image is also…
1
2