Created
March 7, 2018 09:19
-
-
Save simoninithomas/2f32a3bfad399e485d2da05b7ff00a67 to your computer and use it in GitHub Desktop.
Cat DCGAN
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Size input image for discriminator | |
real_size = (128,128,3) | |
# Size of latent vector to generator | |
z_dim = 100 | |
learning_rate_D = .00005 # Thanks to Alexia Jolicoeur Martineau https://ajolicoeur.wordpress.com/cats/ | |
learning_rate_G = 2e-4 # Thanks to Alexia Jolicoeur Martineau https://ajolicoeur.wordpress.com/cats/ | |
batch_size = 64 | |
epochs = 215 | |
alpha = 0.2 | |
beta1 = 0.5 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment