├── README.md ├── attacker_Po_adv_ens3_adv_v3.py ├── attacker_Po_adv_ens4_adv_v3.py ├── attacker_Po_adv_ensadv_res_v2.py ├── attacker_Po_cos_incep_res_v2.py ├── attacker_Po_cos_incep_v3.py ├── attacker_Po_cos_incep_v4.py ├── attacker_Po_cos_res_v2_101.py ├── attacker_Po_cos_res_v2_152.py ├── attacker_Po_cos_res_v2_50.py ├── checkpoint └── .gitkeep ├── data └── .gitkeep ├── dev_dataset.csv ├── download_images.py ├── eval.py ├── eval_esm.py ├── incep_v3_ce.sh ├── incep_v3_po.sh ├── incep_v3_trip_po.sh ├── losses.py ├── metadata.json ├── nets ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── inception_resnet_v2.cpython-36.pyc │ ├── inception_resnet_v2.cpython-37.pyc │ ├── inception_utils.cpython-36.pyc │ ├── inception_utils.cpython-37.pyc │ ├── inception_v3.cpython-36.pyc │ ├── inception_v3.cpython-37.pyc │ ├── inception_v4.cpython-36.pyc │ ├── inception_v4.cpython-37.pyc │ ├── resnet_utils.cpython-36.pyc │ ├── resnet_utils.cpython-37.pyc │ ├── resnet_v2.cpython-36.pyc │ └── resnet_v2.cpython-37.pyc ├── alexnet.py ├── alexnet_test.py ├── cifarnet.py ├── inception.py ├── inception_resnet_v2.py ├── inception_resnet_v2_test.py ├── inception_utils.py ├── inception_v1.py ├── inception_v1_test.py ├── inception_v2.py ├── inception_v2_test.py ├── inception_v3.py ├── inception_v3_test.py ├── inception_v4.py ├── inception_v4_test.py ├── lenet.py ├── mobilenet_v1.md ├── mobilenet_v1.png ├── mobilenet_v1.py ├── mobilenet_v1_test.py ├── nets_factory.py ├── nets_factory_test.py ├── overfeat.py ├── overfeat_test.py ├── resnet_utils.py ├── resnet_v1.py ├── resnet_v1_test.py ├── resnet_v2.py ├── resnet_v2_test.py ├── vgg.py └── vgg_test.py ├── run_attack.sh ├── test.py └── valid_gt.csv /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/README.md -------------------------------------------------------------------------------- /attacker_Po_adv_ens3_adv_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/attacker_Po_adv_ens3_adv_v3.py -------------------------------------------------------------------------------- /attacker_Po_adv_ens4_adv_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/attacker_Po_adv_ens4_adv_v3.py -------------------------------------------------------------------------------- /attacker_Po_adv_ensadv_res_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/attacker_Po_adv_ensadv_res_v2.py -------------------------------------------------------------------------------- /attacker_Po_cos_incep_res_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/attacker_Po_cos_incep_res_v2.py -------------------------------------------------------------------------------- /attacker_Po_cos_incep_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/attacker_Po_cos_incep_v3.py -------------------------------------------------------------------------------- /attacker_Po_cos_incep_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/attacker_Po_cos_incep_v4.py -------------------------------------------------------------------------------- /attacker_Po_cos_res_v2_101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/attacker_Po_cos_res_v2_101.py -------------------------------------------------------------------------------- /attacker_Po_cos_res_v2_152.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/attacker_Po_cos_res_v2_152.py -------------------------------------------------------------------------------- /attacker_Po_cos_res_v2_50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/attacker_Po_cos_res_v2_50.py -------------------------------------------------------------------------------- /checkpoint/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/checkpoint/.gitkeep -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/data/.gitkeep -------------------------------------------------------------------------------- /dev_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/dev_dataset.csv -------------------------------------------------------------------------------- /download_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/download_images.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/eval.py -------------------------------------------------------------------------------- /eval_esm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/eval_esm.py -------------------------------------------------------------------------------- /incep_v3_ce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/incep_v3_ce.sh -------------------------------------------------------------------------------- /incep_v3_po.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/incep_v3_po.sh -------------------------------------------------------------------------------- /incep_v3_trip_po.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/incep_v3_trip_po.sh -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/losses.py -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/metadata.json -------------------------------------------------------------------------------- /nets/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nets/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /nets/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /nets/__pycache__/inception_resnet_v2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/__pycache__/inception_resnet_v2.cpython-36.pyc -------------------------------------------------------------------------------- /nets/__pycache__/inception_resnet_v2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/__pycache__/inception_resnet_v2.cpython-37.pyc -------------------------------------------------------------------------------- /nets/__pycache__/inception_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/__pycache__/inception_utils.cpython-36.pyc -------------------------------------------------------------------------------- /nets/__pycache__/inception_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/__pycache__/inception_utils.cpython-37.pyc -------------------------------------------------------------------------------- /nets/__pycache__/inception_v3.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/__pycache__/inception_v3.cpython-36.pyc -------------------------------------------------------------------------------- /nets/__pycache__/inception_v3.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/__pycache__/inception_v3.cpython-37.pyc -------------------------------------------------------------------------------- /nets/__pycache__/inception_v4.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/__pycache__/inception_v4.cpython-36.pyc -------------------------------------------------------------------------------- /nets/__pycache__/inception_v4.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/__pycache__/inception_v4.cpython-37.pyc -------------------------------------------------------------------------------- /nets/__pycache__/resnet_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/__pycache__/resnet_utils.cpython-36.pyc -------------------------------------------------------------------------------- /nets/__pycache__/resnet_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/__pycache__/resnet_utils.cpython-37.pyc -------------------------------------------------------------------------------- /nets/__pycache__/resnet_v2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/__pycache__/resnet_v2.cpython-36.pyc -------------------------------------------------------------------------------- /nets/__pycache__/resnet_v2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/__pycache__/resnet_v2.cpython-37.pyc -------------------------------------------------------------------------------- /nets/alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/alexnet.py -------------------------------------------------------------------------------- /nets/alexnet_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/alexnet_test.py -------------------------------------------------------------------------------- /nets/cifarnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/cifarnet.py -------------------------------------------------------------------------------- /nets/inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/inception.py -------------------------------------------------------------------------------- /nets/inception_resnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/inception_resnet_v2.py -------------------------------------------------------------------------------- /nets/inception_resnet_v2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/inception_resnet_v2_test.py -------------------------------------------------------------------------------- /nets/inception_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/inception_utils.py -------------------------------------------------------------------------------- /nets/inception_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/inception_v1.py -------------------------------------------------------------------------------- /nets/inception_v1_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/inception_v1_test.py -------------------------------------------------------------------------------- /nets/inception_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/inception_v2.py -------------------------------------------------------------------------------- /nets/inception_v2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/inception_v2_test.py -------------------------------------------------------------------------------- /nets/inception_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/inception_v3.py -------------------------------------------------------------------------------- /nets/inception_v3_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/inception_v3_test.py -------------------------------------------------------------------------------- /nets/inception_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/inception_v4.py -------------------------------------------------------------------------------- /nets/inception_v4_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/inception_v4_test.py -------------------------------------------------------------------------------- /nets/lenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/lenet.py -------------------------------------------------------------------------------- /nets/mobilenet_v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/mobilenet_v1.md -------------------------------------------------------------------------------- /nets/mobilenet_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/mobilenet_v1.png -------------------------------------------------------------------------------- /nets/mobilenet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/mobilenet_v1.py -------------------------------------------------------------------------------- /nets/mobilenet_v1_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/mobilenet_v1_test.py -------------------------------------------------------------------------------- /nets/nets_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/nets_factory.py -------------------------------------------------------------------------------- /nets/nets_factory_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/nets_factory_test.py -------------------------------------------------------------------------------- /nets/overfeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/overfeat.py -------------------------------------------------------------------------------- /nets/overfeat_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/overfeat_test.py -------------------------------------------------------------------------------- /nets/resnet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/resnet_utils.py -------------------------------------------------------------------------------- /nets/resnet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/resnet_v1.py -------------------------------------------------------------------------------- /nets/resnet_v1_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/resnet_v1_test.py -------------------------------------------------------------------------------- /nets/resnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/resnet_v2.py -------------------------------------------------------------------------------- /nets/resnet_v2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/resnet_v2_test.py -------------------------------------------------------------------------------- /nets/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/vgg.py -------------------------------------------------------------------------------- /nets/vgg_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/nets/vgg_test.py -------------------------------------------------------------------------------- /run_attack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/run_attack.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/test.py -------------------------------------------------------------------------------- /valid_gt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiJoy/Towards-Transferable-Targeted-Attack/HEAD/valid_gt.csv --------------------------------------------------------------------------------