├── LICENSE ├── README.md ├── alg ├── lowerbound_functions.py └── vae_new.py ├── cleverhans ├── CODE_OF_CONDUCT.rst ├── CONTRIBUTING.md ├── README.md ├── assets │ ├── logo.png │ └── logo.psd ├── cleverhans │ ├── __init__.py │ ├── attacks.py │ ├── attacks_tf.py │ ├── devtools │ │ ├── LICENSE.txt │ │ ├── checks.py │ │ ├── list_files.py │ │ ├── mocks.py │ │ ├── tests │ │ │ ├── docscrape.py │ │ │ └── test_format.py │ │ └── version.py │ ├── model.py │ ├── tests │ │ └── test_utils_tf.py │ ├── utils.py │ ├── utils_keras.py │ ├── utils_mnist.py │ └── utils_tf.py ├── cleverhans_tutorials │ ├── attack_config.py │ ├── model_eval.py │ └── test_attacks.py ├── requirements.txt ├── setup.py └── tests_tf │ ├── test_attacks.py │ ├── test_attacks_tf.py │ ├── test_mnist_blackbox.py │ ├── test_mnist_tutorial_cw.py │ ├── test_mnist_tutorial_jsma.py │ ├── test_mnist_tutorial_keras_tf.py │ ├── test_mnist_tutorial_tf.py │ ├── test_model.py │ ├── test_utils.py │ ├── test_utils_keras.py │ └── test_utils_tf.py ├── models ├── conv_encoder_cifar10.py ├── conv_encoder_mnist.py ├── conv_generator_cifar10_A.py ├── conv_generator_cifar10_B.py ├── conv_generator_cifar10_C.py ├── conv_generator_cifar10_D.py ├── conv_generator_cifar10_E.py ├── conv_generator_cifar10_F.py ├── conv_generator_cifar10_G.py ├── conv_generator_mnist_A.py ├── conv_generator_mnist_B.py ├── conv_generator_mnist_C.py ├── conv_generator_mnist_D.py ├── conv_generator_mnist_E.py ├── conv_generator_mnist_F.py ├── conv_generator_mnist_G.py ├── convnet.py ├── mlp.py ├── mlp_encoder_cifar10.py ├── mlp_generator_cifar10_E.py ├── mlp_generator_cifar10_F.py └── mlp_generator_cifar10_G.py ├── test_attacks ├── attack.py ├── attack_config.py ├── attack_superwhite.py ├── detect_attacks_logp.py ├── extract_index.py ├── load │ ├── load_bayes_classifier.py │ ├── load_bayes_classifier_on_fea.py │ ├── load_classifier.py │ └── vgg_cifar10.py ├── model_eval.py └── superwhite.py ├── utils ├── import_data_cifar10.py ├── mnist.py ├── utils.py ├── utils_mnist.py └── visualisation.py ├── vae_cifar_binary.py ├── vae_cifar_fea.py └── vae_mnist.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/README.md -------------------------------------------------------------------------------- /alg/lowerbound_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/alg/lowerbound_functions.py -------------------------------------------------------------------------------- /alg/vae_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/alg/vae_new.py -------------------------------------------------------------------------------- /cleverhans/CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/CODE_OF_CONDUCT.rst -------------------------------------------------------------------------------- /cleverhans/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/CONTRIBUTING.md -------------------------------------------------------------------------------- /cleverhans/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/README.md -------------------------------------------------------------------------------- /cleverhans/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/assets/logo.png -------------------------------------------------------------------------------- /cleverhans/assets/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/assets/logo.psd -------------------------------------------------------------------------------- /cleverhans/cleverhans/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/cleverhans/__init__.py -------------------------------------------------------------------------------- /cleverhans/cleverhans/attacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/cleverhans/attacks.py -------------------------------------------------------------------------------- /cleverhans/cleverhans/attacks_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/cleverhans/attacks_tf.py -------------------------------------------------------------------------------- /cleverhans/cleverhans/devtools/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/cleverhans/devtools/LICENSE.txt -------------------------------------------------------------------------------- /cleverhans/cleverhans/devtools/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/cleverhans/devtools/checks.py -------------------------------------------------------------------------------- /cleverhans/cleverhans/devtools/list_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/cleverhans/devtools/list_files.py -------------------------------------------------------------------------------- /cleverhans/cleverhans/devtools/mocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/cleverhans/devtools/mocks.py -------------------------------------------------------------------------------- /cleverhans/cleverhans/devtools/tests/docscrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/cleverhans/devtools/tests/docscrape.py -------------------------------------------------------------------------------- /cleverhans/cleverhans/devtools/tests/test_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/cleverhans/devtools/tests/test_format.py -------------------------------------------------------------------------------- /cleverhans/cleverhans/devtools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/cleverhans/devtools/version.py -------------------------------------------------------------------------------- /cleverhans/cleverhans/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/cleverhans/model.py -------------------------------------------------------------------------------- /cleverhans/cleverhans/tests/test_utils_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/cleverhans/tests/test_utils_tf.py -------------------------------------------------------------------------------- /cleverhans/cleverhans/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/cleverhans/utils.py -------------------------------------------------------------------------------- /cleverhans/cleverhans/utils_keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/cleverhans/utils_keras.py -------------------------------------------------------------------------------- /cleverhans/cleverhans/utils_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/cleverhans/utils_mnist.py -------------------------------------------------------------------------------- /cleverhans/cleverhans/utils_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/cleverhans/utils_tf.py -------------------------------------------------------------------------------- /cleverhans/cleverhans_tutorials/attack_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/cleverhans_tutorials/attack_config.py -------------------------------------------------------------------------------- /cleverhans/cleverhans_tutorials/model_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/cleverhans_tutorials/model_eval.py -------------------------------------------------------------------------------- /cleverhans/cleverhans_tutorials/test_attacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/cleverhans_tutorials/test_attacks.py -------------------------------------------------------------------------------- /cleverhans/requirements.txt: -------------------------------------------------------------------------------- 1 | nose 2 | pycodestyle 3 | scipy 4 | tensorflow 5 | matplotlib 6 | -------------------------------------------------------------------------------- /cleverhans/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/setup.py -------------------------------------------------------------------------------- /cleverhans/tests_tf/test_attacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/tests_tf/test_attacks.py -------------------------------------------------------------------------------- /cleverhans/tests_tf/test_attacks_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/tests_tf/test_attacks_tf.py -------------------------------------------------------------------------------- /cleverhans/tests_tf/test_mnist_blackbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/tests_tf/test_mnist_blackbox.py -------------------------------------------------------------------------------- /cleverhans/tests_tf/test_mnist_tutorial_cw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/tests_tf/test_mnist_tutorial_cw.py -------------------------------------------------------------------------------- /cleverhans/tests_tf/test_mnist_tutorial_jsma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/tests_tf/test_mnist_tutorial_jsma.py -------------------------------------------------------------------------------- /cleverhans/tests_tf/test_mnist_tutorial_keras_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/tests_tf/test_mnist_tutorial_keras_tf.py -------------------------------------------------------------------------------- /cleverhans/tests_tf/test_mnist_tutorial_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/tests_tf/test_mnist_tutorial_tf.py -------------------------------------------------------------------------------- /cleverhans/tests_tf/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/tests_tf/test_model.py -------------------------------------------------------------------------------- /cleverhans/tests_tf/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/tests_tf/test_utils.py -------------------------------------------------------------------------------- /cleverhans/tests_tf/test_utils_keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/tests_tf/test_utils_keras.py -------------------------------------------------------------------------------- /cleverhans/tests_tf/test_utils_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/cleverhans/tests_tf/test_utils_tf.py -------------------------------------------------------------------------------- /models/conv_encoder_cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/conv_encoder_cifar10.py -------------------------------------------------------------------------------- /models/conv_encoder_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/conv_encoder_mnist.py -------------------------------------------------------------------------------- /models/conv_generator_cifar10_A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/conv_generator_cifar10_A.py -------------------------------------------------------------------------------- /models/conv_generator_cifar10_B.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/conv_generator_cifar10_B.py -------------------------------------------------------------------------------- /models/conv_generator_cifar10_C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/conv_generator_cifar10_C.py -------------------------------------------------------------------------------- /models/conv_generator_cifar10_D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/conv_generator_cifar10_D.py -------------------------------------------------------------------------------- /models/conv_generator_cifar10_E.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/conv_generator_cifar10_E.py -------------------------------------------------------------------------------- /models/conv_generator_cifar10_F.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/conv_generator_cifar10_F.py -------------------------------------------------------------------------------- /models/conv_generator_cifar10_G.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/conv_generator_cifar10_G.py -------------------------------------------------------------------------------- /models/conv_generator_mnist_A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/conv_generator_mnist_A.py -------------------------------------------------------------------------------- /models/conv_generator_mnist_B.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/conv_generator_mnist_B.py -------------------------------------------------------------------------------- /models/conv_generator_mnist_C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/conv_generator_mnist_C.py -------------------------------------------------------------------------------- /models/conv_generator_mnist_D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/conv_generator_mnist_D.py -------------------------------------------------------------------------------- /models/conv_generator_mnist_E.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/conv_generator_mnist_E.py -------------------------------------------------------------------------------- /models/conv_generator_mnist_F.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/conv_generator_mnist_F.py -------------------------------------------------------------------------------- /models/conv_generator_mnist_G.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/conv_generator_mnist_G.py -------------------------------------------------------------------------------- /models/convnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/convnet.py -------------------------------------------------------------------------------- /models/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/mlp.py -------------------------------------------------------------------------------- /models/mlp_encoder_cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/mlp_encoder_cifar10.py -------------------------------------------------------------------------------- /models/mlp_generator_cifar10_E.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/mlp_generator_cifar10_E.py -------------------------------------------------------------------------------- /models/mlp_generator_cifar10_F.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/mlp_generator_cifar10_F.py -------------------------------------------------------------------------------- /models/mlp_generator_cifar10_G.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/models/mlp_generator_cifar10_G.py -------------------------------------------------------------------------------- /test_attacks/attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/test_attacks/attack.py -------------------------------------------------------------------------------- /test_attacks/attack_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/test_attacks/attack_config.py -------------------------------------------------------------------------------- /test_attacks/attack_superwhite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/test_attacks/attack_superwhite.py -------------------------------------------------------------------------------- /test_attacks/detect_attacks_logp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/test_attacks/detect_attacks_logp.py -------------------------------------------------------------------------------- /test_attacks/extract_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/test_attacks/extract_index.py -------------------------------------------------------------------------------- /test_attacks/load/load_bayes_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/test_attacks/load/load_bayes_classifier.py -------------------------------------------------------------------------------- /test_attacks/load/load_bayes_classifier_on_fea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/test_attacks/load/load_bayes_classifier_on_fea.py -------------------------------------------------------------------------------- /test_attacks/load/load_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/test_attacks/load/load_classifier.py -------------------------------------------------------------------------------- /test_attacks/load/vgg_cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/test_attacks/load/vgg_cifar10.py -------------------------------------------------------------------------------- /test_attacks/model_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/test_attacks/model_eval.py -------------------------------------------------------------------------------- /test_attacks/superwhite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/test_attacks/superwhite.py -------------------------------------------------------------------------------- /utils/import_data_cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/utils/import_data_cifar10.py -------------------------------------------------------------------------------- /utils/mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/utils/mnist.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/utils/utils.py -------------------------------------------------------------------------------- /utils/utils_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/utils/utils_mnist.py -------------------------------------------------------------------------------- /utils/visualisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/utils/visualisation.py -------------------------------------------------------------------------------- /vae_cifar_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/vae_cifar_binary.py -------------------------------------------------------------------------------- /vae_cifar_fea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/vae_cifar_fea.py -------------------------------------------------------------------------------- /vae_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgenerativeclassifier/DeepBayes/HEAD/vae_mnist.py --------------------------------------------------------------------------------