Take some time to reinforce your learning by undertaking the following exercises:
- What type of GAN would you use to transfer styles on an image?
- What type of GAN would you use to isolate or extract the style?
- Modify the number of critics used in the Wasserstein GAN example and see the effect it has on training.
- Modify the first GAN, the DCGAN, to improve training performance using any technique you learned in this chapter. How did you increase training performance?
- Modify the BatchNormalization momentum parameter and see what effect it has on training.
- Modify a few of the samples by changing the activation from LeakyReLU to another advanced form of activation.
- Modify the Wasserstein GAN example to use your own textures. There is a sample data loader available in the downloaded code sample for the chapter.
- Download one of the other reference GANs from https://github...