Created
March 7, 2018 09:21
-
-
Save simoninithomas/06dcd6109aabca594da4efead09dd3c4 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
# Load the data and train the network here | |
dataset = helper.Dataset(glob(os.path.join(data_resized_dir, '*.jpg'))) | |
with tf.Graph().as_default(): | |
losses, samples = train(epochs, batch_size, z_dim, learning_rate_D, learning_rate_G, beta1, dataset.get_batches, | |
dataset.shape, dataset.image_mode, alpha) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment