├── .gitignore ├── Adversarial-Examples.ipynb ├── DemoImages ├── Source.txt ├── bird.jpg ├── cat.jpg ├── dog.jpg ├── examples-random-patches-cropped.jpg └── patch-augmentation-simple-example.png ├── LICENSE ├── Patch-Augmentation-CIFAR-100.ipynb ├── Patch-Augmentation.ipynb ├── PatchAugmentation.py ├── README.md ├── cifar10_no_aug_ResNet20v2_model.114.h5 └── cifar10_p05_a05_ResNet20v2_model.105.h5 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Patch-Augmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /Adversarial-Examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Patch-Augmentation/HEAD/Adversarial-Examples.ipynb -------------------------------------------------------------------------------- /DemoImages/Source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Patch-Augmentation/HEAD/DemoImages/Source.txt -------------------------------------------------------------------------------- /DemoImages/bird.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Patch-Augmentation/HEAD/DemoImages/bird.jpg -------------------------------------------------------------------------------- /DemoImages/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Patch-Augmentation/HEAD/DemoImages/cat.jpg -------------------------------------------------------------------------------- /DemoImages/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Patch-Augmentation/HEAD/DemoImages/dog.jpg -------------------------------------------------------------------------------- /DemoImages/examples-random-patches-cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Patch-Augmentation/HEAD/DemoImages/examples-random-patches-cropped.jpg -------------------------------------------------------------------------------- /DemoImages/patch-augmentation-simple-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Patch-Augmentation/HEAD/DemoImages/patch-augmentation-simple-example.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Patch-Augmentation/HEAD/LICENSE -------------------------------------------------------------------------------- /Patch-Augmentation-CIFAR-100.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Patch-Augmentation/HEAD/Patch-Augmentation-CIFAR-100.ipynb -------------------------------------------------------------------------------- /Patch-Augmentation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Patch-Augmentation/HEAD/Patch-Augmentation.ipynb -------------------------------------------------------------------------------- /PatchAugmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Patch-Augmentation/HEAD/PatchAugmentation.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Patch-Augmentation/HEAD/README.md -------------------------------------------------------------------------------- /cifar10_no_aug_ResNet20v2_model.114.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Patch-Augmentation/HEAD/cifar10_no_aug_ResNet20v2_model.114.h5 -------------------------------------------------------------------------------- /cifar10_p05_a05_ResNet20v2_model.105.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdbloice/Patch-Augmentation/HEAD/cifar10_p05_a05_ResNet20v2_model.105.h5 --------------------------------------------------------------------------------