Skip to content

Implementation of DCGAN paper with bernoulli distribution used as input noise vector and slight modification to train it better and skip modal collapse. The results are taken on anime dataset generated from doonami.ru website using 21k images as test samples and training on 50 epochs with learning-rate = 0.002 . Lots of slight modifications have…

Notifications You must be signed in to change notification settings

rishabh135/DCGAN

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

DCGAN

Implementation of DCGAN paper with bernoulli distribution used as input noise vector and slight modification to train it better and skip modal collapse. The results are taken on anime dataset generated from danbooru.donmai.us website using 21k images as test samples and training on 50 epochs with learning-rate = 0.002 . Lots of slight modifications have been done to improve GANs training.

Things I've learned

  1. GANs are really hard to train and try at your own luck.
  2. DCGAN generally works well, simply adding fully-connected layers causes problems and more layers for Generator yields better images, in the sense that Generator should be more powerful than Discriminator.
  3. Add noise to Discriminator's inputs and labels helps stablize training.
  4. Usage of different input and output resolution (64x64 vs 96x96), there seems no obvious difference during training, the generated images are also very similar.
  5. Binray Noise as G's input amazingly works, but the images are not as good as those with Gussian Noise.
  6. For some additional GAN tips, see @soumith's ganhacks
  7. Credits to jayleicn and carpedm20

About

Implementation of DCGAN paper with bernoulli distribution used as input noise vector and slight modification to train it better and skip modal collapse. The results are taken on anime dataset generated from doonami.ru website using 21k images as test samples and training on 50 epochs with learning-rate = 0.002 . Lots of slight modifications have…

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages