├── CIFAR10 └── train_log.txt ├── CIFAR100 └── train_log.txt ├── ImageNet100 └── train_log.txt ├── README.md ├── TDAT.py ├── Taxonomy Driven Fast Adversarial Training.pdf ├── TinyImageNet └── train_log.txt ├── models ├── DRN.py ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── densenet.cpython-36.pyc │ ├── densenet.cpython-37.pyc │ ├── dpn.cpython-36.pyc │ ├── dpn.cpython-37.pyc │ ├── efficientnet.cpython-36.pyc │ ├── efficientnet.cpython-37.pyc │ ├── googlenet.cpython-36.pyc │ ├── googlenet.cpython-37.pyc │ ├── lenet.cpython-36.pyc │ ├── lenet.cpython-37.pyc │ ├── mobilenet.cpython-36.pyc │ ├── mobilenet.cpython-37.pyc │ ├── mobilenetv2.cpython-36.pyc │ ├── mobilenetv2.cpython-37.pyc │ ├── pnasnet.cpython-36.pyc │ ├── pnasnet.cpython-37.pyc │ ├── preact_resnet.cpython-36.pyc │ ├── preact_resnet.cpython-37.pyc │ ├── regnet.cpython-36.pyc │ ├── regnet.cpython-37.pyc │ ├── resnet.cpython-36.pyc │ ├── resnet.cpython-37.pyc │ ├── resnet_max.cpython-37.pyc │ ├── resnext.cpython-36.pyc │ ├── resnext.cpython-37.pyc │ ├── senet.cpython-36.pyc │ ├── senet.cpython-37.pyc │ ├── shufflenet.cpython-36.pyc │ ├── shufflenet.cpython-37.pyc │ ├── shufflenetv2.cpython-36.pyc │ ├── shufflenetv2.cpython-37.pyc │ ├── vgg.cpython-36.pyc │ ├── vgg.cpython-37.pyc │ ├── wide_resnet.cpython-36.pyc │ └── wide_resnet.cpython-37.pyc ├── densenet.py ├── dpn.py ├── efficientnet.py ├── googlenet.py ├── lenet.py ├── mobilenet.py ├── mobilenetv2.py ├── pnasnet.py ├── preact_resnet.py ├── regnet.py ├── resnet.py ├── resnet_max.py ├── resnext.py ├── senet.py ├── shufflenet.py ├── shufflenetv2.py ├── vgg.py └── wide_resnet.py └── utils.py /CIFAR10/train_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/CIFAR10/train_log.txt -------------------------------------------------------------------------------- /CIFAR100/train_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/CIFAR100/train_log.txt -------------------------------------------------------------------------------- /ImageNet100/train_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/ImageNet100/train_log.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/README.md -------------------------------------------------------------------------------- /TDAT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/TDAT.py -------------------------------------------------------------------------------- /Taxonomy Driven Fast Adversarial Training.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/Taxonomy Driven Fast Adversarial Training.pdf -------------------------------------------------------------------------------- /TinyImageNet/train_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/TinyImageNet/train_log.txt -------------------------------------------------------------------------------- /models/DRN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/DRN.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/densenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/densenet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/densenet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/densenet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/dpn.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/dpn.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/dpn.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/dpn.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/efficientnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/efficientnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/efficientnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/efficientnet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/googlenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/googlenet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/googlenet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/googlenet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/lenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/lenet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/lenet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/lenet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/mobilenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/mobilenet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/mobilenet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/mobilenet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/mobilenetv2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/mobilenetv2.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/mobilenetv2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/mobilenetv2.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/pnasnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/pnasnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/pnasnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/pnasnet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/preact_resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/preact_resnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/preact_resnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/preact_resnet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/regnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/regnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/regnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/regnet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/resnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/resnet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnet_max.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/resnet_max.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnext.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/resnext.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnext.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/resnext.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/senet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/senet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/senet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/senet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/shufflenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/shufflenet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/shufflenet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/shufflenet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/shufflenetv2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/shufflenetv2.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/shufflenetv2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/shufflenetv2.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/vgg.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/vgg.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/vgg.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/vgg.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/wide_resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/wide_resnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/wide_resnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/__pycache__/wide_resnet.cpython-37.pyc -------------------------------------------------------------------------------- /models/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/densenet.py -------------------------------------------------------------------------------- /models/dpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/dpn.py -------------------------------------------------------------------------------- /models/efficientnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/efficientnet.py -------------------------------------------------------------------------------- /models/googlenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/googlenet.py -------------------------------------------------------------------------------- /models/lenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/lenet.py -------------------------------------------------------------------------------- /models/mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/mobilenet.py -------------------------------------------------------------------------------- /models/mobilenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/mobilenetv2.py -------------------------------------------------------------------------------- /models/pnasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/pnasnet.py -------------------------------------------------------------------------------- /models/preact_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/preact_resnet.py -------------------------------------------------------------------------------- /models/regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/regnet.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/resnet_max.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/resnet_max.py -------------------------------------------------------------------------------- /models/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/resnext.py -------------------------------------------------------------------------------- /models/senet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/senet.py -------------------------------------------------------------------------------- /models/shufflenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/shufflenet.py -------------------------------------------------------------------------------- /models/shufflenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/shufflenetv2.py -------------------------------------------------------------------------------- /models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/vgg.py -------------------------------------------------------------------------------- /models/wide_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/models/wide_resnet.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookman233/TDAT/HEAD/utils.py --------------------------------------------------------------------------------