Created
March 15, 2022 10:23
-
-
Save Paulescu/7816856a12fa9850ed2798338ac3cf45 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
doc_markdown = """ | |
## What are adversarial examples? ๐ก | |
๐๐ฝ Do you think it is impossible to fool the vision system of a self-driving Tesla car? | |
๐๐ฝ Or that machine learning models used in malware detection software are too good to be evaded by hackers? | |
๐๐ฝ Or that face recognition systems in airports are bulletproof? | |
Like any of us machine learning enthusiasts, you might fall into the trap of thinking that deep models used out there are perfect. | |
### Well, you are WRONG. | |
There are easy ways to build **adversarial examples** that can fool any deep learning model and create security issues. | |
With this app you can create your own adversarial examples, using the **Iterative Fast Gradient Sign Method**, and fool [`Inception-v3`](https://en.wikipedia.org/wiki/Inceptionv3) | |
""" | |
st.markdown(doc_markdown) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment