├── .gitignore ├── Interpretability_Summary.PNG ├── LICENSE ├── README.md ├── advex_uar ├── LICENSE ├── __init__.py ├── analysis │ ├── calibrate_eps.py │ ├── calibrations │ │ ├── cifar-10 │ │ │ ├── calibs.out │ │ │ ├── elastic.out │ │ │ ├── fw_l1.out │ │ │ ├── jpeg_l1.out │ │ │ ├── jpeg_l2.out │ │ │ ├── jpeg_linf.out │ │ │ ├── pgd_l2.out │ │ │ └── pgd_linf.out │ │ └── imagenet-100 │ │ │ ├── calibs.out │ │ │ ├── elastic.out │ │ │ ├── fog.out │ │ │ ├── fw_l1.out │ │ │ ├── gabor.out │ │ │ ├── jpeg_l1.out │ │ │ ├── jpeg_l2.out │ │ │ ├── jpeg_linf.out │ │ │ ├── pgd_l2.out │ │ │ ├── pgd_linf.out │ │ │ └── snow.out │ ├── compute_ata.py │ ├── compute_uar.py │ └── uar_vals │ │ ├── cifar-10 │ │ ├── 20190817-uar.out │ │ └── cifar-10-max_eps.json │ │ └── imagenet-100 │ │ ├── 20190815-uar.out │ │ └── imagenet-100-max_eps.json ├── attacks │ ├── __init__.py │ ├── attacks.py │ ├── elastic.py │ ├── elastic_attack.py │ ├── fog.py │ ├── fog_attack.py │ ├── fw_attack.py │ ├── gabor.py │ ├── gabor_attack.py │ ├── jpeg.py │ ├── jpeg_attack.py │ ├── pgd_attack.py │ ├── snow.py │ └── snow_attack.py ├── common │ ├── __init__.py │ ├── flags_holder.py │ ├── loader.py │ ├── models │ │ ├── __pycache__ │ │ │ └── cifar10_resnet.cpython-37.pyc │ │ └── cifar10_resnet.py │ └── pyt_common.py ├── eval │ ├── __init__.py │ ├── cifar10c.py │ └── evaluator.py ├── examples │ ├── eval.py │ ├── train.py │ └── uar.py ├── logging │ ├── get_wandb_logs.py │ ├── logger.py │ └── merge_logs.py └── train │ ├── __init__.py │ └── trainer.py ├── eval.py ├── eval_cmd.py ├── funcs.py ├── load_model.py ├── networks ├── cifar_smallgap_adv_1.pkl ├── cifar_smallgap_adv_10_200.pkl ├── cifar_smallgap_adv_200.pkl ├── cifar_smallgap_adv_6_200.pkl ├── cifar_smallgap_adv_8_200.pkl ├── cifar_smallgap_ig_1.pkl ├── cifar_smallgap_ig_200.pkl ├── cifar_smallgap_igsum_1.pkl ├── cifar_smallgap_igsum_200.pkl ├── cifar_smallgap_int001_10_200.pkl ├── cifar_smallgap_int001_6_200.pkl ├── cifar_smallgap_int001_8_200.pkl ├── cifar_smallgap_int005_10_200.pkl ├── cifar_smallgap_int005_6_200.pkl ├── cifar_smallgap_int005_8_200.pkl ├── cifar_smallgap_int015_10_200.pkl ├── cifar_smallgap_int015_6_200.pkl ├── cifar_smallgap_int015_8_200.pkl ├── cifar_smallgap_int01_10_200.pkl ├── cifar_smallgap_int01_6_200.pkl ├── cifar_smallgap_int01_8_200.pkl ├── cifar_smallgap_int02_10_200.pkl ├── cifar_smallgap_int02_6_200.pkl ├── cifar_smallgap_int02_8_200.pkl ├── cifar_smallgap_int2_200.pkl ├── cifar_smallgap_int2adv_200.pkl ├── cifar_smallgap_int_1.pkl ├── cifar_smallgap_int_200.pkl ├── cifar_smallgap_intadv_1.pkl ├── cifar_smallgap_intadv_200.pkl ├── cifar_smallgap_intig_1.pkl ├── cifar_smallgap_intig_200.pkl ├── cifar_smallgap_intigadv_1.pkl ├── cifar_smallgap_intigadv_200.pkl ├── cifar_smallgap_intone_1.pkl ├── cifar_smallgap_intone_200.pkl ├── cifar_smallgap_intunlabeled_200.pkl ├── cifar_smallgap_intunlabeledmax_200.pkl ├── cifar_smallgap_normal_1.pkl ├── cifar_smallgap_normal_200.pkl ├── cifar_smallgap_trades_1.pkl ├── cifar_smallgap_trades_200.pkl ├── cifar_wresnet_adv_1.pkl ├── cifar_wresnet_adv_200.pkl ├── cifar_wresnet_int2_200.pkl ├── cifar_wresnet_int2adv_200.pkl ├── cifar_wresnet_int_1.pkl ├── cifar_wresnet_int_200.pkl ├── cifar_wresnet_intadv_1.pkl ├── cifar_wresnet_intadv_200.pkl ├── cifar_wresnet_intone_1.pkl ├── cifar_wresnet_intone_200.pkl ├── cifar_wresnet_normal_1.pkl ├── cifar_wresnet_normal_200.pkl ├── cifar_wresnet_trades_1.pkl ├── cifar_wresnet_trades_200.pkl ├── mnist_pool_adv_100.pkl ├── mnist_pool_ig_100.pkl ├── mnist_pool_igsum_100.pkl ├── mnist_pool_int2_100.pkl ├── mnist_pool_int2adv_100.pkl ├── mnist_pool_int_100.pkl ├── mnist_pool_intadv_100.pkl ├── mnist_pool_intig_100.pkl ├── mnist_pool_intigadv_100.pkl ├── mnist_pool_intone_100.pkl ├── mnist_pool_normal_100.pkl ├── mnist_pool_trades_100.pkl ├── mnist_smallgap_adv_1.pkl ├── mnist_smallgap_adv_100.pkl ├── mnist_smallgap_adv_2_100.pkl ├── mnist_smallgap_adv_3_100.pkl ├── mnist_smallgap_adv_4_100.pkl ├── mnist_smallgap_ig_1.pkl ├── mnist_smallgap_ig_100.pkl ├── mnist_smallgap_igsum_1.pkl ├── mnist_smallgap_igsum_100.pkl ├── mnist_smallgap_int001_100.pkl ├── mnist_smallgap_int001_2_100.pkl ├── mnist_smallgap_int001_3_100.pkl ├── mnist_smallgap_int001_4_100.pkl ├── mnist_smallgap_int005_100.pkl ├── mnist_smallgap_int005_2_100.pkl ├── mnist_smallgap_int005_3_100.pkl ├── mnist_smallgap_int005_4_100.pkl ├── mnist_smallgap_int015_100.pkl ├── mnist_smallgap_int015_2_100.pkl ├── mnist_smallgap_int015_3_100.pkl ├── mnist_smallgap_int015_4_100.pkl ├── mnist_smallgap_int01_2_100.pkl ├── mnist_smallgap_int01_3_100.pkl ├── mnist_smallgap_int01_4_100.pkl ├── mnist_smallgap_int02_100.pkl ├── mnist_smallgap_int02_2_100.pkl ├── mnist_smallgap_int02_3_100.pkl ├── mnist_smallgap_int02_4_100.pkl ├── mnist_smallgap_int03_100.pkl ├── mnist_smallgap_int2_1.pkl ├── mnist_smallgap_int2_100.pkl ├── mnist_smallgap_int2adv_1.pkl ├── mnist_smallgap_int2adv_100.pkl ├── mnist_smallgap_int_1.pkl ├── mnist_smallgap_int_100.pkl ├── mnist_smallgap_intadv_1.pkl ├── mnist_smallgap_intadv_100.pkl ├── mnist_smallgap_intig_1.pkl ├── mnist_smallgap_intig_100.pkl ├── mnist_smallgap_intigadv_1.pkl ├── mnist_smallgap_intigadv_100.pkl ├── mnist_smallgap_intone_1.pkl ├── mnist_smallgap_intone_100.pkl ├── mnist_smallgap_normal_1.pkl ├── mnist_smallgap_normal_100.pkl ├── mnist_smallgap_trades_1.pkl ├── mnist_smallgap_trades_100.pkl ├── restimagenet_wresnet_adv_100.pkl ├── restimagenet_wresnet_adv_20.pkl ├── restimagenet_wresnet_adv_35.pkl ├── restimagenet_wresnet_int2_20.pkl ├── restimagenet_wresnet_int2_35.pkl ├── restimagenet_wresnet_int_100.pkl ├── restimagenet_wresnet_int_20.pkl ├── restimagenet_wresnet_int_35.pkl ├── restimagenet_wresnet_intadv_100.pkl ├── restimagenet_wresnet_intadv_20.pkl ├── restimagenet_wresnet_normal_100.pkl ├── restimagenet_wresnet_normal_20.pkl ├── restimagenet_wresnet_normal_35.pkl └── restimagenet_wresnet_trades_100.pkl ├── setup_cifar.py ├── setup_mnist.py ├── setup_restrictedimagenet.py └── train.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /Interpretability_Summary.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/Interpretability_Summary.PNG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/README.md -------------------------------------------------------------------------------- /advex_uar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/LICENSE -------------------------------------------------------------------------------- /advex_uar/__init__.py: -------------------------------------------------------------------------------- 1 | from . import attacks 2 | -------------------------------------------------------------------------------- /advex_uar/analysis/calibrate_eps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrate_eps.py -------------------------------------------------------------------------------- /advex_uar/analysis/calibrations/cifar-10/calibs.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrations/cifar-10/calibs.out -------------------------------------------------------------------------------- /advex_uar/analysis/calibrations/cifar-10/elastic.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrations/cifar-10/elastic.out -------------------------------------------------------------------------------- /advex_uar/analysis/calibrations/cifar-10/fw_l1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrations/cifar-10/fw_l1.out -------------------------------------------------------------------------------- /advex_uar/analysis/calibrations/cifar-10/jpeg_l1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrations/cifar-10/jpeg_l1.out -------------------------------------------------------------------------------- /advex_uar/analysis/calibrations/cifar-10/jpeg_l2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrations/cifar-10/jpeg_l2.out -------------------------------------------------------------------------------- /advex_uar/analysis/calibrations/cifar-10/jpeg_linf.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrations/cifar-10/jpeg_linf.out -------------------------------------------------------------------------------- /advex_uar/analysis/calibrations/cifar-10/pgd_l2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrations/cifar-10/pgd_l2.out -------------------------------------------------------------------------------- /advex_uar/analysis/calibrations/cifar-10/pgd_linf.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrations/cifar-10/pgd_linf.out -------------------------------------------------------------------------------- /advex_uar/analysis/calibrations/imagenet-100/calibs.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrations/imagenet-100/calibs.out -------------------------------------------------------------------------------- /advex_uar/analysis/calibrations/imagenet-100/elastic.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrations/imagenet-100/elastic.out -------------------------------------------------------------------------------- /advex_uar/analysis/calibrations/imagenet-100/fog.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrations/imagenet-100/fog.out -------------------------------------------------------------------------------- /advex_uar/analysis/calibrations/imagenet-100/fw_l1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrations/imagenet-100/fw_l1.out -------------------------------------------------------------------------------- /advex_uar/analysis/calibrations/imagenet-100/gabor.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrations/imagenet-100/gabor.out -------------------------------------------------------------------------------- /advex_uar/analysis/calibrations/imagenet-100/jpeg_l1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrations/imagenet-100/jpeg_l1.out -------------------------------------------------------------------------------- /advex_uar/analysis/calibrations/imagenet-100/jpeg_l2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrations/imagenet-100/jpeg_l2.out -------------------------------------------------------------------------------- /advex_uar/analysis/calibrations/imagenet-100/jpeg_linf.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrations/imagenet-100/jpeg_linf.out -------------------------------------------------------------------------------- /advex_uar/analysis/calibrations/imagenet-100/pgd_l2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrations/imagenet-100/pgd_l2.out -------------------------------------------------------------------------------- /advex_uar/analysis/calibrations/imagenet-100/pgd_linf.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrations/imagenet-100/pgd_linf.out -------------------------------------------------------------------------------- /advex_uar/analysis/calibrations/imagenet-100/snow.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/calibrations/imagenet-100/snow.out -------------------------------------------------------------------------------- /advex_uar/analysis/compute_ata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/compute_ata.py -------------------------------------------------------------------------------- /advex_uar/analysis/compute_uar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/compute_uar.py -------------------------------------------------------------------------------- /advex_uar/analysis/uar_vals/cifar-10/20190817-uar.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/uar_vals/cifar-10/20190817-uar.out -------------------------------------------------------------------------------- /advex_uar/analysis/uar_vals/cifar-10/cifar-10-max_eps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/uar_vals/cifar-10/cifar-10-max_eps.json -------------------------------------------------------------------------------- /advex_uar/analysis/uar_vals/imagenet-100/20190815-uar.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/uar_vals/imagenet-100/20190815-uar.out -------------------------------------------------------------------------------- /advex_uar/analysis/uar_vals/imagenet-100/imagenet-100-max_eps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/analysis/uar_vals/imagenet-100/imagenet-100-max_eps.json -------------------------------------------------------------------------------- /advex_uar/attacks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/attacks/__init__.py -------------------------------------------------------------------------------- /advex_uar/attacks/attacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/attacks/attacks.py -------------------------------------------------------------------------------- /advex_uar/attacks/elastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/attacks/elastic.py -------------------------------------------------------------------------------- /advex_uar/attacks/elastic_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/attacks/elastic_attack.py -------------------------------------------------------------------------------- /advex_uar/attacks/fog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/attacks/fog.py -------------------------------------------------------------------------------- /advex_uar/attacks/fog_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/attacks/fog_attack.py -------------------------------------------------------------------------------- /advex_uar/attacks/fw_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/attacks/fw_attack.py -------------------------------------------------------------------------------- /advex_uar/attacks/gabor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/attacks/gabor.py -------------------------------------------------------------------------------- /advex_uar/attacks/gabor_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/attacks/gabor_attack.py -------------------------------------------------------------------------------- /advex_uar/attacks/jpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/attacks/jpeg.py -------------------------------------------------------------------------------- /advex_uar/attacks/jpeg_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/attacks/jpeg_attack.py -------------------------------------------------------------------------------- /advex_uar/attacks/pgd_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/attacks/pgd_attack.py -------------------------------------------------------------------------------- /advex_uar/attacks/snow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/attacks/snow.py -------------------------------------------------------------------------------- /advex_uar/attacks/snow_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/attacks/snow_attack.py -------------------------------------------------------------------------------- /advex_uar/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/common/__init__.py -------------------------------------------------------------------------------- /advex_uar/common/flags_holder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/common/flags_holder.py -------------------------------------------------------------------------------- /advex_uar/common/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/common/loader.py -------------------------------------------------------------------------------- /advex_uar/common/models/__pycache__/cifar10_resnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/common/models/__pycache__/cifar10_resnet.cpython-37.pyc -------------------------------------------------------------------------------- /advex_uar/common/models/cifar10_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/common/models/cifar10_resnet.py -------------------------------------------------------------------------------- /advex_uar/common/pyt_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/common/pyt_common.py -------------------------------------------------------------------------------- /advex_uar/eval/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/eval/__init__.py -------------------------------------------------------------------------------- /advex_uar/eval/cifar10c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/eval/cifar10c.py -------------------------------------------------------------------------------- /advex_uar/eval/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/eval/evaluator.py -------------------------------------------------------------------------------- /advex_uar/examples/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/examples/eval.py -------------------------------------------------------------------------------- /advex_uar/examples/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/examples/train.py -------------------------------------------------------------------------------- /advex_uar/examples/uar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/examples/uar.py -------------------------------------------------------------------------------- /advex_uar/logging/get_wandb_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/logging/get_wandb_logs.py -------------------------------------------------------------------------------- /advex_uar/logging/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/logging/logger.py -------------------------------------------------------------------------------- /advex_uar/logging/merge_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/logging/merge_logs.py -------------------------------------------------------------------------------- /advex_uar/train/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/train/__init__.py -------------------------------------------------------------------------------- /advex_uar/train/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/advex_uar/train/trainer.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/eval.py -------------------------------------------------------------------------------- /eval_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/eval_cmd.py -------------------------------------------------------------------------------- /funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/funcs.py -------------------------------------------------------------------------------- /load_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/load_model.py -------------------------------------------------------------------------------- /networks/cifar_smallgap_adv_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_adv_1.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_adv_10_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_adv_10_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_adv_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_adv_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_adv_6_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_adv_6_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_adv_8_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_adv_8_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_ig_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_ig_1.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_ig_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_ig_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_igsum_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_igsum_1.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_igsum_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_igsum_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_int001_10_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_int001_10_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_int001_6_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_int001_6_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_int001_8_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_int001_8_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_int005_10_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_int005_10_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_int005_6_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_int005_6_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_int005_8_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_int005_8_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_int015_10_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_int015_10_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_int015_6_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_int015_6_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_int015_8_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_int015_8_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_int01_10_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_int01_10_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_int01_6_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_int01_6_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_int01_8_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_int01_8_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_int02_10_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_int02_10_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_int02_6_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_int02_6_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_int02_8_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_int02_8_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_int2_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_int2_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_int2adv_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_int2adv_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_int_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_int_1.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_int_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_int_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_intadv_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_intadv_1.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_intadv_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_intadv_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_intig_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_intig_1.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_intig_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_intig_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_intigadv_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_intigadv_1.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_intigadv_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_intigadv_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_intone_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_intone_1.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_intone_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_intone_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_intunlabeled_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_intunlabeled_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_intunlabeledmax_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_intunlabeledmax_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_normal_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_normal_1.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_normal_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_normal_200.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_trades_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_trades_1.pkl -------------------------------------------------------------------------------- /networks/cifar_smallgap_trades_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_smallgap_trades_200.pkl -------------------------------------------------------------------------------- /networks/cifar_wresnet_adv_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_wresnet_adv_1.pkl -------------------------------------------------------------------------------- /networks/cifar_wresnet_adv_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_wresnet_adv_200.pkl -------------------------------------------------------------------------------- /networks/cifar_wresnet_int2_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_wresnet_int2_200.pkl -------------------------------------------------------------------------------- /networks/cifar_wresnet_int2adv_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_wresnet_int2adv_200.pkl -------------------------------------------------------------------------------- /networks/cifar_wresnet_int_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_wresnet_int_1.pkl -------------------------------------------------------------------------------- /networks/cifar_wresnet_int_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_wresnet_int_200.pkl -------------------------------------------------------------------------------- /networks/cifar_wresnet_intadv_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_wresnet_intadv_1.pkl -------------------------------------------------------------------------------- /networks/cifar_wresnet_intadv_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_wresnet_intadv_200.pkl -------------------------------------------------------------------------------- /networks/cifar_wresnet_intone_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_wresnet_intone_1.pkl -------------------------------------------------------------------------------- /networks/cifar_wresnet_intone_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_wresnet_intone_200.pkl -------------------------------------------------------------------------------- /networks/cifar_wresnet_normal_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_wresnet_normal_1.pkl -------------------------------------------------------------------------------- /networks/cifar_wresnet_normal_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_wresnet_normal_200.pkl -------------------------------------------------------------------------------- /networks/cifar_wresnet_trades_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_wresnet_trades_1.pkl -------------------------------------------------------------------------------- /networks/cifar_wresnet_trades_200.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/cifar_wresnet_trades_200.pkl -------------------------------------------------------------------------------- /networks/mnist_pool_adv_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_pool_adv_100.pkl -------------------------------------------------------------------------------- /networks/mnist_pool_ig_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_pool_ig_100.pkl -------------------------------------------------------------------------------- /networks/mnist_pool_igsum_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_pool_igsum_100.pkl -------------------------------------------------------------------------------- /networks/mnist_pool_int2_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_pool_int2_100.pkl -------------------------------------------------------------------------------- /networks/mnist_pool_int2adv_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_pool_int2adv_100.pkl -------------------------------------------------------------------------------- /networks/mnist_pool_int_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_pool_int_100.pkl -------------------------------------------------------------------------------- /networks/mnist_pool_intadv_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_pool_intadv_100.pkl -------------------------------------------------------------------------------- /networks/mnist_pool_intig_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_pool_intig_100.pkl -------------------------------------------------------------------------------- /networks/mnist_pool_intigadv_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_pool_intigadv_100.pkl -------------------------------------------------------------------------------- /networks/mnist_pool_intone_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_pool_intone_100.pkl -------------------------------------------------------------------------------- /networks/mnist_pool_normal_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_pool_normal_100.pkl -------------------------------------------------------------------------------- /networks/mnist_pool_trades_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_pool_trades_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_adv_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_adv_1.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_adv_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_adv_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_adv_2_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_adv_2_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_adv_3_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_adv_3_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_adv_4_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_adv_4_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_ig_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_ig_1.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_ig_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_ig_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_igsum_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_igsum_1.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_igsum_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_igsum_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int001_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int001_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int001_2_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int001_2_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int001_3_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int001_3_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int001_4_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int001_4_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int005_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int005_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int005_2_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int005_2_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int005_3_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int005_3_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int005_4_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int005_4_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int015_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int015_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int015_2_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int015_2_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int015_3_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int015_3_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int015_4_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int015_4_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int01_2_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int01_2_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int01_3_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int01_3_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int01_4_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int01_4_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int02_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int02_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int02_2_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int02_2_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int02_3_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int02_3_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int02_4_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int02_4_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int03_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int03_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int2_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int2_1.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int2_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int2_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int2adv_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int2adv_1.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int2adv_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int2adv_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int_1.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_int_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_int_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_intadv_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_intadv_1.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_intadv_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_intadv_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_intig_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_intig_1.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_intig_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_intig_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_intigadv_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_intigadv_1.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_intigadv_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_intigadv_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_intone_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_intone_1.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_intone_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_intone_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_normal_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_normal_1.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_normal_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_normal_100.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_trades_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_trades_1.pkl -------------------------------------------------------------------------------- /networks/mnist_smallgap_trades_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/mnist_smallgap_trades_100.pkl -------------------------------------------------------------------------------- /networks/restimagenet_wresnet_adv_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/restimagenet_wresnet_adv_100.pkl -------------------------------------------------------------------------------- /networks/restimagenet_wresnet_adv_20.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/restimagenet_wresnet_adv_20.pkl -------------------------------------------------------------------------------- /networks/restimagenet_wresnet_adv_35.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/restimagenet_wresnet_adv_35.pkl -------------------------------------------------------------------------------- /networks/restimagenet_wresnet_int2_20.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/restimagenet_wresnet_int2_20.pkl -------------------------------------------------------------------------------- /networks/restimagenet_wresnet_int2_35.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/restimagenet_wresnet_int2_35.pkl -------------------------------------------------------------------------------- /networks/restimagenet_wresnet_int_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/restimagenet_wresnet_int_100.pkl -------------------------------------------------------------------------------- /networks/restimagenet_wresnet_int_20.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/restimagenet_wresnet_int_20.pkl -------------------------------------------------------------------------------- /networks/restimagenet_wresnet_int_35.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/restimagenet_wresnet_int_35.pkl -------------------------------------------------------------------------------- /networks/restimagenet_wresnet_intadv_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/restimagenet_wresnet_intadv_100.pkl -------------------------------------------------------------------------------- /networks/restimagenet_wresnet_intadv_20.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/restimagenet_wresnet_intadv_20.pkl -------------------------------------------------------------------------------- /networks/restimagenet_wresnet_normal_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/restimagenet_wresnet_normal_100.pkl -------------------------------------------------------------------------------- /networks/restimagenet_wresnet_normal_20.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/restimagenet_wresnet_normal_20.pkl -------------------------------------------------------------------------------- /networks/restimagenet_wresnet_normal_35.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/restimagenet_wresnet_normal_35.pkl -------------------------------------------------------------------------------- /networks/restimagenet_wresnet_trades_100.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/networks/restimagenet_wresnet_trades_100.pkl -------------------------------------------------------------------------------- /setup_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/setup_cifar.py -------------------------------------------------------------------------------- /setup_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/setup_mnist.py -------------------------------------------------------------------------------- /setup_restrictedimagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/setup_restrictedimagenet.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhilanB/Proper-Interpretability/HEAD/train.py --------------------------------------------------------------------------------