Skip to content

Instantly share code, notes, and snippets.

@simoninithomas
Created March 7, 2018 09:19
Show Gist options
  • Save simoninithomas/2f32a3bfad399e485d2da05b7ff00a67 to your computer and use it in GitHub Desktop.
Save simoninithomas/2f32a3bfad399e485d2da05b7ff00a67 to your computer and use it in GitHub Desktop.
Cat DCGAN
# 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