Chen Ma

Results 43 issues of Chen Ma

I can't find any `saver.restore(sess, weight_path)` code in main.py or blackbox_attack.py for loading classifier weights. Actually, this code attack the untrained classification model, which outputs almost random probabilities prediction?

I am re-implementing AutoZOOM attack into pytorch version. In the following code: you use `tf.log` on the output logits of model (without softmax layer). https://github.com/IBM/Autozoom-Attack/blob/master/blackbox_attack.py#L152 https://github.com/IBM/Autozoom-Attack/blob/master/blackbox_attack.py#L154 However, in pytorch, the...

Hello, I am re-implementing autozoom attack into pytorch version. I want to add the code for counting query times when the input has firstly been successful attacked, as reported by...