mafda / generative_adversarial_networks_101

Keras implementations of Generative Adversarial Networks. GANs, DCGAN, CGAN, CCGAN, WGAN and LSGAN models with MNIST and CIFAR-10 datasets.
MIT License
204 stars 79 forks source link

DCGAN and CGAN suffer from mode collapse #3

Closed kunwardeeps closed 5 years ago

kunwardeeps commented 5 years ago

After training for 200 epochs with the CIFAR 10 dataset, I found that the DCGAN and CGAN generated images do not have enough variety. Most likely a mode collapse happening.

mafda commented 5 years ago

Regards,

Mode collapse is one of the main problems that occur during GANs training, which means that the generator produces limited varieties of samples.

In recent work, researchers have presented some studies that suggest some methods to reduce the problem of mode collapse, such as:

For more information, these works are recommended:

Thanks