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.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DCGAN and CGAN suffer from mode collapse

kunwardeeps opened this issue · comments

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.

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