pytorch-nips2017-attack-example icon indicating copy to clipboard operation
pytorch-nips2017-attack-example copied to clipboard

A PyTorch baseline attack example for the NIPS 2017 adversarial competition

Results 3 pytorch-nips2017-attack-example issues
Sort by recently updated
recently updated
newest added

I have tried the attack, but it seems that there is no difference between the adv example and the original image. Maybe the attack failed. the file of run_attack_cwl2.py can...

I m running the CW2 attack on a model. The logs show that num_failures =0 but when I test the generated adversarial image the model is somewhat robust. Is it...

In `attacks.AttackCarliniWagnerL2._optimize` there's: ```python if input_orig is None: dist = l2_dist(input_adv, input_var, keepdim=False) ``` The problem is that `input_var` has already been mapped to tanh-space, so it's in fact not...