├── .gitignore ├── LICENSE ├── README.md ├── chapter-10 ├── Chapter10_Adversarial_Examples.ipynb ├── DSC_0896.jpg ├── DSC_0897.jpg ├── README.md ├── get_vals_for_noise.py └── initialization_vals_for_noise.csv ├── chapter-2 ├── Chapter_2_Autoencoder.ipynb └── README.md ├── chapter-3 ├── Chapter_3_GAN.ipynb └── README.md ├── chapter-4 ├── Chapter_4_DCGAN.ipynb └── README.md ├── chapter-6 ├── Chapter_6_PGGAN.ipynb └── README.md ├── chapter-7 ├── Chapter_7_SGAN.ipynb └── README.md ├── chapter-8 ├── Chapter_8_CGAN.ipynb └── README.md ├── chapter-9 ├── Chapter9_CycleGAN.ipynb └── README.md ├── img └── GANs_in_Action_cover.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/README.md -------------------------------------------------------------------------------- /chapter-10/Chapter10_Adversarial_Examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-10/Chapter10_Adversarial_Examples.ipynb -------------------------------------------------------------------------------- /chapter-10/DSC_0896.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-10/DSC_0896.jpg -------------------------------------------------------------------------------- /chapter-10/DSC_0897.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-10/DSC_0897.jpg -------------------------------------------------------------------------------- /chapter-10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-10/README.md -------------------------------------------------------------------------------- /chapter-10/get_vals_for_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-10/get_vals_for_noise.py -------------------------------------------------------------------------------- /chapter-10/initialization_vals_for_noise.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-10/initialization_vals_for_noise.csv -------------------------------------------------------------------------------- /chapter-2/Chapter_2_Autoencoder.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-2/Chapter_2_Autoencoder.ipynb -------------------------------------------------------------------------------- /chapter-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-2/README.md -------------------------------------------------------------------------------- /chapter-3/Chapter_3_GAN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-3/Chapter_3_GAN.ipynb -------------------------------------------------------------------------------- /chapter-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-3/README.md -------------------------------------------------------------------------------- /chapter-4/Chapter_4_DCGAN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-4/Chapter_4_DCGAN.ipynb -------------------------------------------------------------------------------- /chapter-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-4/README.md -------------------------------------------------------------------------------- /chapter-6/Chapter_6_PGGAN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-6/Chapter_6_PGGAN.ipynb -------------------------------------------------------------------------------- /chapter-6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-6/README.md -------------------------------------------------------------------------------- /chapter-7/Chapter_7_SGAN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-7/Chapter_7_SGAN.ipynb -------------------------------------------------------------------------------- /chapter-7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-7/README.md -------------------------------------------------------------------------------- /chapter-8/Chapter_8_CGAN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-8/Chapter_8_CGAN.ipynb -------------------------------------------------------------------------------- /chapter-8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-8/README.md -------------------------------------------------------------------------------- /chapter-9/Chapter9_CycleGAN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-9/Chapter9_CycleGAN.ipynb -------------------------------------------------------------------------------- /chapter-9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/chapter-9/README.md -------------------------------------------------------------------------------- /img/GANs_in_Action_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/img/GANs_in_Action_cover.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GANs-in-Action/gans-in-action/HEAD/requirements.txt --------------------------------------------------------------------------------