-
Notifications
You must be signed in to change notification settings - Fork 339
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What are the training parameters for pre-trained networks? #16
Comments
first off - try horizontally mirroring the images to get more data. your network is spitting out the same images over and over (or variants of them) - which usually means that the generator has outsmarted the discriminator. try either reducing the number of filters in the generator, or increasing the ones in the discriminator. |
or - use a pre-trained network (like the landscapes one) - and train that on cubism for a few epochs. you will definitely get more stable results that way. |
I've been training for
cubism
style with500
images (I know I should have around ~3k but there's not enough sample) withnz=300 ndf=20 ngf=100
(if I make them higher D or G would fixate on 0) and here are my results after 750, 1500 and 2250 iterations respectively:Any suggestions for parameter tuning?
The text was updated successfully, but these errors were encountered: