├── .gitattributes ├── .gitignore ├── FAB_l1.py ├── FAB_l2.py ├── FAB_linf.py ├── FAB_linf_pt.py ├── README.md ├── settings.py ├── test_attack.py └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fra31/fab-attack/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | results -------------------------------------------------------------------------------- /FAB_l1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fra31/fab-attack/HEAD/FAB_l1.py -------------------------------------------------------------------------------- /FAB_l2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fra31/fab-attack/HEAD/FAB_l2.py -------------------------------------------------------------------------------- /FAB_linf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fra31/fab-attack/HEAD/FAB_linf.py -------------------------------------------------------------------------------- /FAB_linf_pt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fra31/fab-attack/HEAD/FAB_linf_pt.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fra31/fab-attack/HEAD/README.md -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fra31/fab-attack/HEAD/settings.py -------------------------------------------------------------------------------- /test_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fra31/fab-attack/HEAD/test_attack.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fra31/fab-attack/HEAD/utils.py --------------------------------------------------------------------------------