├── PGDAttack.py ├── README.md ├── advtrain_all.py ├── config.json ├── models ├── __init__.py ├── densenet.py ├── dpn.py ├── googlenet.py ├── lenet.py ├── mobilenet.py ├── preact_resnet.py ├── resnet.py ├── resnext.py ├── senet.py ├── shufflenet.py ├── vgg.py └── wide_resnet.py ├── sumResults.py ├── test_all_worstcaseacc.py └── utils.py /PGDAttack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/PGDAttack.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/README.md -------------------------------------------------------------------------------- /advtrain_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/advtrain_all.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/config.json -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/models/densenet.py -------------------------------------------------------------------------------- /models/dpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/models/dpn.py -------------------------------------------------------------------------------- /models/googlenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/models/googlenet.py -------------------------------------------------------------------------------- /models/lenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/models/lenet.py -------------------------------------------------------------------------------- /models/mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/models/mobilenet.py -------------------------------------------------------------------------------- /models/preact_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/models/preact_resnet.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/models/resnext.py -------------------------------------------------------------------------------- /models/senet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/models/senet.py -------------------------------------------------------------------------------- /models/shufflenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/models/shufflenet.py -------------------------------------------------------------------------------- /models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/models/vgg.py -------------------------------------------------------------------------------- /models/wide_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/models/wide_resnet.py -------------------------------------------------------------------------------- /sumResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/sumResults.py -------------------------------------------------------------------------------- /test_all_worstcaseacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/test_all_worstcaseacc.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunblaze-ucb/curriculum-adversarial-training-CAT/HEAD/utils.py --------------------------------------------------------------------------------