Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Update adversary attack generation example #12918

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions example/adversary/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Adversarial examples

This demonstrates the concept of "adversarial examples" from [1] showing how to fool a well-trained CNN.
The surprising idea is that one can easily generate examples which the CNN will consistently
make the wrong prediction for that a human can easily tell are correct.
Adversarial examples are samples where the input has been manipulated to confuse a model (i.e. confident in an incorrect prediction) but where the correct answer still appears obvious to a human.
This method for generating adversarial examples uses the gradient of the loss with respect to the input to craft the adversarial examples.

[1] Goodfellow, Ian J., Jonathon Shlens, and Christian Szegedy. "Explaining and harnessing adversarial examples." [arXiv preprint arXiv:1412.6572 (2014)](https://arxiv.org/abs/1412.6572)
Loading