Skip to content

Commit 9d78941

Browse files
committed
2 parents a28f6f7 + 87a3cf2 commit 9d78941

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ DeepDefend has not yet been fully tested. Please report any issues you may encou
1414
## Changes in 0.1.1:
1515
We've updated DeepDefend, here's what's new:
1616
- 3 new functions under `deepdefend.attacks`
17-
- 3 new function under `deepdefend.defenses`
17+
- 3 new functions under `deepdefend.defenses`
1818

1919
## Installation
2020

@@ -73,7 +73,7 @@ adversarial_example_cw = cw(model, x_example, y_example, epsilon=0.01, c=1, kapp
7373
adversarial_example_deepfool = deepfool(model, x_example, y_example, num_steps=10)
7474

7575
# 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)
76+
adversarial_example_jsma = jsma(model, x_example, y_example, theta=0.1, gamma=0.1, num_steps=10)
7777
```
7878

7979
### Adversarial Defenses

0 commit comments

Comments
 (0)