I am trying to replicate results from https://arxiv.org/abs/1602.02697,
but using images size 224x224x3 following the black-box tutorial https://github.com/tensorflow/cleverhans/blob/master/cleverhans_tutorials/mnist_blackbox.py
However, I am…
I use https://github.com/tensorflow/cleverhans to generate adversarial images, but the categories of attack algoritm is not provided.
All the attack algorithm codes are listed here:…
I used the following to install cleverhans in Colab:
!pip install -qq -e git+http://github.com/tensorflow/cleverhans.git#egg=cleverhans
import sys
sys.path.append('/content/src/cleverhans')
import cleverhans
And it seems to work good. Then I use…
When generating adversarial examples, it is typically using logits as the output of the neural network, and then train the network with cross-entropy.
However, I found that the tutorial of cleverhans uses log softmax and then convert the pytorch…