@@ -16,11 +16,12 @@ The library is still under development. Feedback, bug reports and extensions are
1616Supported Attack and Defense Methods
1717------------------------------------
1818
19- The Adversarial Robustness Toolbox contains implementations of the following attacks:
19+ The Adversarial Robustness Toolbox contains implementations of the following evasion attacks:
2020
2121* DeepFool (`Moosavi-Dezfooli et al., 2015 `_)
2222* Fast gradient method (`Goodfellow et al., 2014 `_)
23- * Basic Iterative Method (`Kurakin et al., 2016 `_)
23+ * Basic iterative method (`Kurakin et al., 2016 `_)
24+ * Projected gradient descent (`Madry et al., 2017 `_)
2425* Jacobian saliency map (`Papernot et al., 2016 `_)
2526* Universal perturbation (`Moosavi-Dezfooli et al., 2016 `_)
2627* Virtual adversarial method (`Miyato et al., 2015 `_)
@@ -35,6 +36,17 @@ The following defense methods are also supported:
3536* Adversarial training (`Szegedy et al., 2013 `_)
3637* Virtual adversarial training (`Miyato et al., 2015 `_)
3738* Gaussian data augmentation (`Zantedeschi et al., 2017 `_)
39+ * Thermometer encoding (`Buckman et al., 2018 `_)
40+ * Total variance minimization (`Guo et al., 2018 `_)
41+ * JPEG compression (`Dziugaite et al., 2016 `_)
42+
43+ ART also implements detection methods of adversarial samples:
44+
45+ * Basic detector based on inputs
46+ * Detector trained on the activations of a specific layer
47+
48+ The following detector of poisoning attacks is also supported:
49+ * Detector based on activations analysis (`Chen et al., 2018 `_)
3850
3951
4052.. toctree ::
@@ -68,6 +80,7 @@ Indices and tables
6880.. _Moosavi-Dezfooli et al., 2015 : https://arxiv.org/abs/1511.04599
6981.. _Goodfellow et al., 2014 : https://arxiv.org/abs/1412.6572
7082.. _Kurakin et al., 2016 : https://arxiv.org/abs/1607.02533
83+ .. _Madry et al., 2017 : https://arxiv.org/abs/1706.06083
7184.. _Papernot et al., 2016 : https://arxiv.org/abs/1511.07528
7285.. _Moosavi-Dezfooli et al., 2016 : https://arxiv.org/abs/1610.08401
7386.. _Carlini and Wagner, 2016 : https://arxiv.org/abs/1608.04644
@@ -77,3 +90,7 @@ Indices and tables
7790.. _Szegedy et al., 2013 : http://arxiv.org/abs/1312.6199
7891.. _Miyato et al., 2015 : https://arxiv.org/abs/1507.00677
7992.. _Zantedeschi et al., 2017 : https://arxiv.org/abs/1707.06728
93+ .. _Buckman et al., 2018 : https://openreview.net/forum?id=S18Su--CW
94+ .. _Guo et al., 2018 : https://openreview.net/forum?id=SyJ7ClWCb
95+ .. _Dziugaite et al., 2016 : https://arxiv.org/abs/1608.00853
96+ .. _Chen et al., 2018 : https://arxiv.org/abs/1811.03728
0 commit comments