├── LICENSE ├── README.md ├── assets ├── imageNet_APE-GAN.png ├── imageNet_adv.png ├── mnist_APE-GAN.png └── mnist_adv.png ├── checkpoint ├── cifar10_64_32_32 │ ├── DCGAN.model-4502.data-00000-of-00001 │ ├── DCGAN.model-4502.index │ ├── DCGAN.model-4502.meta │ └── checkpoint └── mnist_64_28_28 │ ├── DCGAN.model-5502.data-00000-of-00001 │ ├── DCGAN.model-5502.index │ ├── DCGAN.model-5502.meta │ └── checkpoint ├── data ├── advData.npy ├── gtData.npy └── testData.npy ├── main.py ├── model.py ├── ops.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/README.md -------------------------------------------------------------------------------- /assets/imageNet_APE-GAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/assets/imageNet_APE-GAN.png -------------------------------------------------------------------------------- /assets/imageNet_adv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/assets/imageNet_adv.png -------------------------------------------------------------------------------- /assets/mnist_APE-GAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/assets/mnist_APE-GAN.png -------------------------------------------------------------------------------- /assets/mnist_adv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/assets/mnist_adv.png -------------------------------------------------------------------------------- /checkpoint/cifar10_64_32_32/DCGAN.model-4502.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/checkpoint/cifar10_64_32_32/DCGAN.model-4502.data-00000-of-00001 -------------------------------------------------------------------------------- /checkpoint/cifar10_64_32_32/DCGAN.model-4502.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/checkpoint/cifar10_64_32_32/DCGAN.model-4502.index -------------------------------------------------------------------------------- /checkpoint/cifar10_64_32_32/DCGAN.model-4502.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/checkpoint/cifar10_64_32_32/DCGAN.model-4502.meta -------------------------------------------------------------------------------- /checkpoint/cifar10_64_32_32/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/checkpoint/cifar10_64_32_32/checkpoint -------------------------------------------------------------------------------- /checkpoint/mnist_64_28_28/DCGAN.model-5502.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/checkpoint/mnist_64_28_28/DCGAN.model-5502.data-00000-of-00001 -------------------------------------------------------------------------------- /checkpoint/mnist_64_28_28/DCGAN.model-5502.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/checkpoint/mnist_64_28_28/DCGAN.model-5502.index -------------------------------------------------------------------------------- /checkpoint/mnist_64_28_28/DCGAN.model-5502.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/checkpoint/mnist_64_28_28/DCGAN.model-5502.meta -------------------------------------------------------------------------------- /checkpoint/mnist_64_28_28/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/checkpoint/mnist_64_28_28/checkpoint -------------------------------------------------------------------------------- /data/advData.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/data/advData.npy -------------------------------------------------------------------------------- /data/gtData.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/data/gtData.npy -------------------------------------------------------------------------------- /data/testData.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/data/testData.npy -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/model.py -------------------------------------------------------------------------------- /ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/ops.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenqixiaojiang/APE-GAN/HEAD/utils.py --------------------------------------------------------------------------------