mafda/generative_adversarial_networks_101

DCGAN and CGAN suffer from mode collapse

kunwardeeps opened this issue · 1 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.

mafda commented

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