├── .gitignore ├── README.md ├── config.json ├── datasubset.py ├── example.ipynb ├── models ├── MNIST_improved_ia.py ├── MNIST_improved_ia_masked.py ├── MNIST_naive_ia.py ├── MNIST_naive_ia_masked.py └── __init__.py ├── parser ├── convert_log.sh ├── mnist_test_labels.csv ├── parse_csv.py └── parse_log.py ├── pgd_attack.py ├── post_process_model.py ├── requirements.txt ├── train.py └── verification ├── logs ├── .gitkeep ├── example.csv └── example.log ├── results ├── .gitkeep └── example__linf-norm-bounded-0.1__Inf__0.0 │ ├── run_results │ ├── 2018-10-06T17.07.57.935.mat │ └── 2018-10-06T17.08.44.698.mat │ └── summary.csv ├── verify.sh └── verify_MNIST.jl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/config.json -------------------------------------------------------------------------------- /datasubset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/datasubset.py -------------------------------------------------------------------------------- /example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/example.ipynb -------------------------------------------------------------------------------- /models/MNIST_improved_ia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/models/MNIST_improved_ia.py -------------------------------------------------------------------------------- /models/MNIST_improved_ia_masked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/models/MNIST_improved_ia_masked.py -------------------------------------------------------------------------------- /models/MNIST_naive_ia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/models/MNIST_naive_ia.py -------------------------------------------------------------------------------- /models/MNIST_naive_ia_masked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/models/MNIST_naive_ia_masked.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parser/convert_log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/parser/convert_log.sh -------------------------------------------------------------------------------- /parser/mnist_test_labels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/parser/mnist_test_labels.csv -------------------------------------------------------------------------------- /parser/parse_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/parser/parse_csv.py -------------------------------------------------------------------------------- /parser/parse_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/parser/parse_log.py -------------------------------------------------------------------------------- /pgd_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/pgd_attack.py -------------------------------------------------------------------------------- /post_process_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/post_process_model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/train.py -------------------------------------------------------------------------------- /verification/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /verification/logs/example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/verification/logs/example.csv -------------------------------------------------------------------------------- /verification/logs/example.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/verification/logs/example.log -------------------------------------------------------------------------------- /verification/results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /verification/results/example__linf-norm-bounded-0.1__Inf__0.0/run_results/2018-10-06T17.07.57.935.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/verification/results/example__linf-norm-bounded-0.1__Inf__0.0/run_results/2018-10-06T17.07.57.935.mat -------------------------------------------------------------------------------- /verification/results/example__linf-norm-bounded-0.1__Inf__0.0/run_results/2018-10-06T17.08.44.698.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/verification/results/example__linf-norm-bounded-0.1__Inf__0.0/run_results/2018-10-06T17.08.44.698.mat -------------------------------------------------------------------------------- /verification/results/example__linf-norm-bounded-0.1__Inf__0.0/summary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/verification/results/example__linf-norm-bounded-0.1__Inf__0.0/summary.csv -------------------------------------------------------------------------------- /verification/verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/verification/verify.sh -------------------------------------------------------------------------------- /verification/verify_MNIST.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/relu_stable/HEAD/verification/verify_MNIST.jl --------------------------------------------------------------------------------