├── README.md ├── environment.yml ├── eval.py ├── figures ├── pipeline.png └── results.png ├── get_text_feature.py ├── image_transformer.py ├── imagenet_class_index.json ├── inference.py ├── models ├── attention.py └── generator.py ├── text_feature.pth ├── train.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffhibnese/CGNC_Targeted_Adversarial_Attacks/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffhibnese/CGNC_Targeted_Adversarial_Attacks/HEAD/environment.yml -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffhibnese/CGNC_Targeted_Adversarial_Attacks/HEAD/eval.py -------------------------------------------------------------------------------- /figures/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffhibnese/CGNC_Targeted_Adversarial_Attacks/HEAD/figures/pipeline.png -------------------------------------------------------------------------------- /figures/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffhibnese/CGNC_Targeted_Adversarial_Attacks/HEAD/figures/results.png -------------------------------------------------------------------------------- /get_text_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffhibnese/CGNC_Targeted_Adversarial_Attacks/HEAD/get_text_feature.py -------------------------------------------------------------------------------- /image_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffhibnese/CGNC_Targeted_Adversarial_Attacks/HEAD/image_transformer.py -------------------------------------------------------------------------------- /imagenet_class_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffhibnese/CGNC_Targeted_Adversarial_Attacks/HEAD/imagenet_class_index.json -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffhibnese/CGNC_Targeted_Adversarial_Attacks/HEAD/inference.py -------------------------------------------------------------------------------- /models/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffhibnese/CGNC_Targeted_Adversarial_Attacks/HEAD/models/attention.py -------------------------------------------------------------------------------- /models/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffhibnese/CGNC_Targeted_Adversarial_Attacks/HEAD/models/generator.py -------------------------------------------------------------------------------- /text_feature.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffhibnese/CGNC_Targeted_Adversarial_Attacks/HEAD/text_feature.pth -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffhibnese/CGNC_Targeted_Adversarial_Attacks/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffhibnese/CGNC_Targeted_Adversarial_Attacks/HEAD/utils.py --------------------------------------------------------------------------------