├── .idea ├── .gitignore ├── .name ├── AMD.iml ├── deployment.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── sshConfigs.xml └── webServers.xml ├── AMD.py ├── Attacks ├── AttackMethods │ ├── AttackUtils.py │ ├── BIM.py │ ├── DEEPFOOL.py │ ├── FGSM.py │ ├── PGD.py │ ├── UMIFGSM.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── AttackUtils.cpython-37.pyc │ │ ├── DEEPFOOL.cpython-37.pyc │ │ ├── FGSM.cpython-37.pyc │ │ ├── PGD.cpython-37.pyc │ │ ├── __init__.cpython-37.pyc │ │ └── attacks.cpython-37.pyc │ └── attacks.py ├── AutoAttack.py ├── BIM_Generation.py ├── DeepFool_Generation.py ├── FGSM_Generation.py ├── Generation.py ├── PGD_Generation.py ├── README.md ├── UMIFGSM_Generation.py ├── __init__.py ├── __pycache__ │ ├── Generation.cpython-37.pyc │ └── __init__.cpython-37.pyc └── autoattack │ ├── __init__.py │ ├── autoattack.py │ ├── autopgd_base.py │ ├── checks.py │ ├── fab_base.py │ ├── fab_projections.py │ ├── fab_pt.py │ ├── fab_tf.py │ ├── other_utils.py │ ├── square.py │ ├── state.py │ ├── utils_tf.py │ └── utils_tf2.py ├── CleanDatasets ├── CandidatesSelection.py ├── README.md └── __init__.py ├── Defenses ├── DD_Test.py ├── DefenseMethods │ ├── DD.py │ ├── External │ │ ├── InputTransformations.py │ │ └── __init__.py │ ├── PAT.py │ ├── __init__.py │ └── defenses.py ├── PAT_Test.py ├── __init__.py ├── defense.py ├── trades.py └── train_trades.py ├── README.md ├── Utils ├── TrainTest.py ├── __init__.py └── dataset.py ├── __pycache__ ├── args.cpython-37.pyc └── utils.cpython-37.pyc ├── args.py ├── kd_losses ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ └── logits.cpython-37.pyc └── logits.py ├── models ├── Alexnet.py ├── CNN1D.py ├── CNN2D.py ├── LeNet.py ├── RRR.py ├── __init__.py ├── __pycache__ │ ├── Alexnet.cpython-37.pyc │ ├── CNN1D.cpython-37.pyc │ ├── CNN2D.cpython-37.pyc │ ├── LeNet.cpython-37.pyc │ ├── __init__.cpython-37.pyc │ ├── gru.cpython-37.pyc │ ├── lstm.cpython-37.pyc │ ├── mcldnn.cpython-37.pyc │ ├── network.cpython-37.pyc │ └── vgg16.cpython-37.pyc ├── gru.py ├── lstm.py ├── mcldnn.py ├── mobilenet.py ├── network.py ├── resnet.py ├── train.py ├── train.sh ├── train_par.sh ├── vgg.py └── vgg16.py ├── order ├── ParaTestMob.sh ├── __init__.py ├── def.sh ├── signaldB.sh ├── signaldBr.sh └── testattack.sh ├── raw_model_training ├── Alexnet.py ├── CNN1D.py ├── CNN2D.py ├── LeNet.py ├── RRR.py ├── __init__.py ├── gru.py ├── lstm.py ├── mcldnn.py ├── mobilenet.py ├── mobilenet_2d.py ├── resnet.py ├── test.py ├── test.sh ├── train.py ├── train.sh ├── train_par.sh ├── vgg.py └── vgg16.py ├── requirement.txt └── utils.py /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | PGD_Generation.py -------------------------------------------------------------------------------- /.idea/AMD.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/.idea/AMD.iml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/sshConfigs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/.idea/sshConfigs.xml -------------------------------------------------------------------------------- /.idea/webServers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/.idea/webServers.xml -------------------------------------------------------------------------------- /AMD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/AMD.py -------------------------------------------------------------------------------- /Attacks/AttackMethods/AttackUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/AttackMethods/AttackUtils.py -------------------------------------------------------------------------------- /Attacks/AttackMethods/BIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/AttackMethods/BIM.py -------------------------------------------------------------------------------- /Attacks/AttackMethods/DEEPFOOL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/AttackMethods/DEEPFOOL.py -------------------------------------------------------------------------------- /Attacks/AttackMethods/FGSM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/AttackMethods/FGSM.py -------------------------------------------------------------------------------- /Attacks/AttackMethods/PGD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/AttackMethods/PGD.py -------------------------------------------------------------------------------- /Attacks/AttackMethods/UMIFGSM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/AttackMethods/UMIFGSM.py -------------------------------------------------------------------------------- /Attacks/AttackMethods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Attacks/AttackMethods/__pycache__/AttackUtils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/AttackMethods/__pycache__/AttackUtils.cpython-37.pyc -------------------------------------------------------------------------------- /Attacks/AttackMethods/__pycache__/DEEPFOOL.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/AttackMethods/__pycache__/DEEPFOOL.cpython-37.pyc -------------------------------------------------------------------------------- /Attacks/AttackMethods/__pycache__/FGSM.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/AttackMethods/__pycache__/FGSM.cpython-37.pyc -------------------------------------------------------------------------------- /Attacks/AttackMethods/__pycache__/PGD.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/AttackMethods/__pycache__/PGD.cpython-37.pyc -------------------------------------------------------------------------------- /Attacks/AttackMethods/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/AttackMethods/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Attacks/AttackMethods/__pycache__/attacks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/AttackMethods/__pycache__/attacks.cpython-37.pyc -------------------------------------------------------------------------------- /Attacks/AttackMethods/attacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/AttackMethods/attacks.py -------------------------------------------------------------------------------- /Attacks/AutoAttack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/AutoAttack.py -------------------------------------------------------------------------------- /Attacks/BIM_Generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/BIM_Generation.py -------------------------------------------------------------------------------- /Attacks/DeepFool_Generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/DeepFool_Generation.py -------------------------------------------------------------------------------- /Attacks/FGSM_Generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/FGSM_Generation.py -------------------------------------------------------------------------------- /Attacks/Generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/Generation.py -------------------------------------------------------------------------------- /Attacks/PGD_Generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/PGD_Generation.py -------------------------------------------------------------------------------- /Attacks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/README.md -------------------------------------------------------------------------------- /Attacks/UMIFGSM_Generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/UMIFGSM_Generation.py -------------------------------------------------------------------------------- /Attacks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Attacks/__pycache__/Generation.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/__pycache__/Generation.cpython-37.pyc -------------------------------------------------------------------------------- /Attacks/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Attacks/autoattack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/autoattack/__init__.py -------------------------------------------------------------------------------- /Attacks/autoattack/autoattack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/autoattack/autoattack.py -------------------------------------------------------------------------------- /Attacks/autoattack/autopgd_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/autoattack/autopgd_base.py -------------------------------------------------------------------------------- /Attacks/autoattack/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/autoattack/checks.py -------------------------------------------------------------------------------- /Attacks/autoattack/fab_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/autoattack/fab_base.py -------------------------------------------------------------------------------- /Attacks/autoattack/fab_projections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/autoattack/fab_projections.py -------------------------------------------------------------------------------- /Attacks/autoattack/fab_pt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/autoattack/fab_pt.py -------------------------------------------------------------------------------- /Attacks/autoattack/fab_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/autoattack/fab_tf.py -------------------------------------------------------------------------------- /Attacks/autoattack/other_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/autoattack/other_utils.py -------------------------------------------------------------------------------- /Attacks/autoattack/square.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/autoattack/square.py -------------------------------------------------------------------------------- /Attacks/autoattack/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/autoattack/state.py -------------------------------------------------------------------------------- /Attacks/autoattack/utils_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/autoattack/utils_tf.py -------------------------------------------------------------------------------- /Attacks/autoattack/utils_tf2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Attacks/autoattack/utils_tf2.py -------------------------------------------------------------------------------- /CleanDatasets/CandidatesSelection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/CleanDatasets/CandidatesSelection.py -------------------------------------------------------------------------------- /CleanDatasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/CleanDatasets/README.md -------------------------------------------------------------------------------- /CleanDatasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Defenses/DD_Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Defenses/DD_Test.py -------------------------------------------------------------------------------- /Defenses/DefenseMethods/DD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Defenses/DefenseMethods/DD.py -------------------------------------------------------------------------------- /Defenses/DefenseMethods/External/InputTransformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Defenses/DefenseMethods/External/InputTransformations.py -------------------------------------------------------------------------------- /Defenses/DefenseMethods/External/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Defenses/DefenseMethods/External/__init__.py -------------------------------------------------------------------------------- /Defenses/DefenseMethods/PAT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Defenses/DefenseMethods/PAT.py -------------------------------------------------------------------------------- /Defenses/DefenseMethods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Defenses/DefenseMethods/__init__.py -------------------------------------------------------------------------------- /Defenses/DefenseMethods/defenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Defenses/DefenseMethods/defenses.py -------------------------------------------------------------------------------- /Defenses/PAT_Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Defenses/PAT_Test.py -------------------------------------------------------------------------------- /Defenses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Defenses/defense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Defenses/defense.py -------------------------------------------------------------------------------- /Defenses/trades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Defenses/trades.py -------------------------------------------------------------------------------- /Defenses/train_trades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Defenses/train_trades.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/README.md -------------------------------------------------------------------------------- /Utils/TrainTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Utils/TrainTest.py -------------------------------------------------------------------------------- /Utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Utils/__init__.py -------------------------------------------------------------------------------- /Utils/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/Utils/dataset.py -------------------------------------------------------------------------------- /__pycache__/args.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/__pycache__/args.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/args.py -------------------------------------------------------------------------------- /kd_losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/kd_losses/__init__.py -------------------------------------------------------------------------------- /kd_losses/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/kd_losses/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /kd_losses/__pycache__/logits.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/kd_losses/__pycache__/logits.cpython-37.pyc -------------------------------------------------------------------------------- /kd_losses/logits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/kd_losses/logits.py -------------------------------------------------------------------------------- /models/Alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/Alexnet.py -------------------------------------------------------------------------------- /models/CNN1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/CNN1D.py -------------------------------------------------------------------------------- /models/CNN2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/CNN2D.py -------------------------------------------------------------------------------- /models/LeNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/LeNet.py -------------------------------------------------------------------------------- /models/RRR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/RRR.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/__pycache__/Alexnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/__pycache__/Alexnet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/CNN1D.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/__pycache__/CNN1D.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/CNN2D.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/__pycache__/CNN2D.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/LeNet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/__pycache__/LeNet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/gru.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/__pycache__/gru.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/lstm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/__pycache__/lstm.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/mcldnn.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/__pycache__/mcldnn.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/network.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/__pycache__/network.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/vgg16.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/__pycache__/vgg16.cpython-37.pyc -------------------------------------------------------------------------------- /models/gru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/gru.py -------------------------------------------------------------------------------- /models/lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/lstm.py -------------------------------------------------------------------------------- /models/mcldnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/mcldnn.py -------------------------------------------------------------------------------- /models/mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/mobilenet.py -------------------------------------------------------------------------------- /models/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/network.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/train.py -------------------------------------------------------------------------------- /models/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/train.sh -------------------------------------------------------------------------------- /models/train_par.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/train_par.sh -------------------------------------------------------------------------------- /models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/vgg.py -------------------------------------------------------------------------------- /models/vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/models/vgg16.py -------------------------------------------------------------------------------- /order/ParaTestMob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/order/ParaTestMob.sh -------------------------------------------------------------------------------- /order/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /order/def.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/order/def.sh -------------------------------------------------------------------------------- /order/signaldB.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/order/signaldB.sh -------------------------------------------------------------------------------- /order/signaldBr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/order/signaldBr.sh -------------------------------------------------------------------------------- /order/testattack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/order/testattack.sh -------------------------------------------------------------------------------- /raw_model_training/Alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/raw_model_training/Alexnet.py -------------------------------------------------------------------------------- /raw_model_training/CNN1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/raw_model_training/CNN1D.py -------------------------------------------------------------------------------- /raw_model_training/CNN2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/raw_model_training/CNN2D.py -------------------------------------------------------------------------------- /raw_model_training/LeNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/raw_model_training/LeNet.py -------------------------------------------------------------------------------- /raw_model_training/RRR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/raw_model_training/RRR.py -------------------------------------------------------------------------------- /raw_model_training/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raw_model_training/gru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/raw_model_training/gru.py -------------------------------------------------------------------------------- /raw_model_training/lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/raw_model_training/lstm.py -------------------------------------------------------------------------------- /raw_model_training/mcldnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/raw_model_training/mcldnn.py -------------------------------------------------------------------------------- /raw_model_training/mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/raw_model_training/mobilenet.py -------------------------------------------------------------------------------- /raw_model_training/mobilenet_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/raw_model_training/mobilenet_2d.py -------------------------------------------------------------------------------- /raw_model_training/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/raw_model_training/resnet.py -------------------------------------------------------------------------------- /raw_model_training/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/raw_model_training/test.py -------------------------------------------------------------------------------- /raw_model_training/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/raw_model_training/test.sh -------------------------------------------------------------------------------- /raw_model_training/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/raw_model_training/train.py -------------------------------------------------------------------------------- /raw_model_training/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/raw_model_training/train.sh -------------------------------------------------------------------------------- /raw_model_training/train_par.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/raw_model_training/train_par.sh -------------------------------------------------------------------------------- /raw_model_training/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/raw_model_training/vgg.py -------------------------------------------------------------------------------- /raw_model_training/vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/raw_model_training/vgg16.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/requirement.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wangzhangwei19/Adversarial-Multi-Distillation/HEAD/utils.py --------------------------------------------------------------------------------