We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 059823c commit 87a3cf2Copy full SHA for 87a3cf2
readme.md
@@ -73,7 +73,7 @@ adversarial_example_cw = cw(model, x_example, y_example, epsilon=0.01, c=1, kapp
73
adversarial_example_deepfool = deepfool(model, x_example, y_example, num_steps=10)
74
75
# Perform JSMA attack on the example data
76
-adversarial_example_jsma(model, x_example, y_example, theta=0.1, gamma=0.1, num_steps=10)
+adversarial_example_jsma = jsma(model, x_example, y_example, theta=0.1, gamma=0.1, num_steps=10)
77
```
78
79
### Adversarial Defenses
0 commit comments