├── .gitignore ├── COPYRIGHT ├── LICENSE ├── README.md ├── clever.py ├── collect_gradients.py ├── defense.py ├── estimate_gradient_norm.py ├── labels ├── imagenet_val_to_carlini.py ├── label2num.txt ├── labels.py ├── labels.txt └── synset_words.txt ├── nlayer_model.py ├── process_log.py ├── randsphere.py ├── run.sh ├── setup_cifar.py ├── setup_imagenet.py ├── setup_mnist.py ├── shmemarray.py ├── train_2layer.py ├── train_models.py ├── train_nlayer.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/README.md -------------------------------------------------------------------------------- /clever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/clever.py -------------------------------------------------------------------------------- /collect_gradients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/collect_gradients.py -------------------------------------------------------------------------------- /defense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/defense.py -------------------------------------------------------------------------------- /estimate_gradient_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/estimate_gradient_norm.py -------------------------------------------------------------------------------- /labels/imagenet_val_to_carlini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/labels/imagenet_val_to_carlini.py -------------------------------------------------------------------------------- /labels/label2num.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/labels/label2num.txt -------------------------------------------------------------------------------- /labels/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/labels/labels.py -------------------------------------------------------------------------------- /labels/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/labels/labels.txt -------------------------------------------------------------------------------- /labels/synset_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/labels/synset_words.txt -------------------------------------------------------------------------------- /nlayer_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/nlayer_model.py -------------------------------------------------------------------------------- /process_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/process_log.py -------------------------------------------------------------------------------- /randsphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/randsphere.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/run.sh -------------------------------------------------------------------------------- /setup_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/setup_cifar.py -------------------------------------------------------------------------------- /setup_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/setup_imagenet.py -------------------------------------------------------------------------------- /setup_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/setup_mnist.py -------------------------------------------------------------------------------- /shmemarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/shmemarray.py -------------------------------------------------------------------------------- /train_2layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/train_2layer.py -------------------------------------------------------------------------------- /train_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/train_models.py -------------------------------------------------------------------------------- /train_nlayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/train_nlayer.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CLEVER-Robustness-Score/HEAD/utils.py --------------------------------------------------------------------------------