├── .gitignore ├── README.md ├── TorchHub └── model_download_path.txt ├── attack_test.py ├── dataset └── data_download_url.txt ├── functions.py ├── perturbations ├── save_UAP_path.txt ├── uap_alexnet.npy ├── uap_googlenet.npy ├── uap_resnet152.npy ├── uap_vgg16.npy └── uap_vgg19.npy ├── requirements.txt ├── strategy.py ├── train.py └── trmuap.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandolphCarter0/TRMUAP/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandolphCarter0/TRMUAP/HEAD/README.md -------------------------------------------------------------------------------- /TorchHub/model_download_path.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /attack_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandolphCarter0/TRMUAP/HEAD/attack_test.py -------------------------------------------------------------------------------- /dataset/data_download_url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandolphCarter0/TRMUAP/HEAD/dataset/data_download_url.txt -------------------------------------------------------------------------------- /functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandolphCarter0/TRMUAP/HEAD/functions.py -------------------------------------------------------------------------------- /perturbations/save_UAP_path.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perturbations/uap_alexnet.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandolphCarter0/TRMUAP/HEAD/perturbations/uap_alexnet.npy -------------------------------------------------------------------------------- /perturbations/uap_googlenet.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandolphCarter0/TRMUAP/HEAD/perturbations/uap_googlenet.npy -------------------------------------------------------------------------------- /perturbations/uap_resnet152.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandolphCarter0/TRMUAP/HEAD/perturbations/uap_resnet152.npy -------------------------------------------------------------------------------- /perturbations/uap_vgg16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandolphCarter0/TRMUAP/HEAD/perturbations/uap_vgg16.npy -------------------------------------------------------------------------------- /perturbations/uap_vgg19.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandolphCarter0/TRMUAP/HEAD/perturbations/uap_vgg19.npy -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandolphCarter0/TRMUAP/HEAD/requirements.txt -------------------------------------------------------------------------------- /strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandolphCarter0/TRMUAP/HEAD/strategy.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandolphCarter0/TRMUAP/HEAD/train.py -------------------------------------------------------------------------------- /trmuap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandolphCarter0/TRMUAP/HEAD/trmuap.py --------------------------------------------------------------------------------