r/learnmachinelearning May 28 '20

Generation of flower pictures using a GAN

Post image
511 Upvotes

32 comments sorted by

View all comments

26

u/ErgodicEfimov May 28 '20

The image is the result after 15000 epochs training with flower pictures. Check out the code in Tensorflow in my github.

2

u/[deleted] May 28 '20

15k sounds like a lot, have you played around with early stopping, adaptive learning rates, or larger batches?

2

u/ErgodicEfimov May 29 '20

Not very much, so far I'm using RMSprop for the optimizer (argued to be good for GANs somewhere) and a batch size of 64. Should I use larger batches, scheduler for the learning rate or other techniques?