-
DeepFool is one of the models which is currently missing from batch_attacks in 2.0.0 and seems like an important one to include
-
I want to test the method with deepfool and C&W attacks, but I don't know how to set the hyperparameters. Could you please tell me how to set the hyperparameter?
-
When I do an attack with the foolbox, for 6 pictures everything works fine, but the i get the following error:
> File "/home/wouter/anaconda3/lib/python3.6/site-packages/numpy/core/fromnumeric.py",…
-
I use DeepFool to generate the adversarial images using a simple MLP model and MNIST dataset.
I randomly pick 100 imges from MNIST.
```
keras.backend.set_learning_phase(0)
adv_x = []
attack = f…
-
Batch Attack is in practice implemented through generator using single attack multiple times? The running time is as folows. So, what's the meaning by doing so???
### Single Attack(1*100)
| Met…
-
Hi, how can I get the results of this column?
![image](https://user-images.githubusercontent.com/32216515/62849158-2dae4480-bd11-11e9-9822-69e211e363a3.png)
-
I have thought about re-implementing "universal adversarial perturbation" using a trained model and cleverhans. As the previous stage, I searched for a examples that uses trained model to output somet…
-
For reproducing the results in the paper, I tried to run the white box attack on AlexNet:
```
python attack_WhiteBox.py --eps 0.01 --test-batch-size 500 --arch AlexLike --resume cifar10_result/AlexL…
-
-
**Describe the bug**
The overshoot variable is not used within the while loop in the deepfool_attack function. The perturbation being added at the end after the while loop appears to be redundant cod…