Skip to content

Commit

Permalink
Update train_variational_autoencoder_tensorflow.py
Browse files Browse the repository at this point in the history
  • Loading branch information
modanesh authored Mar 23, 2020
1 parent 526d716 commit 898ffd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion train_variational_autoencoder_tensorflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def train():
sess = tfc.InteractiveSession()
sess.run(init_op)

mnist_data = tfds.load(name='binarized_mnist', split='train', shuffle_files=False)
mnist_data = tfds.load(name='binary_mnist', split='train', shuffle_files=False)
dataset = mnist_data.repeat().shuffle(buffer_size=1024).batch(FLAGS.batch_size)

print('Saving TensorBoard summaries and images to: %s' % FLAGS.logdir)
Expand Down

0 comments on commit 898ffd0

Please sign in to comment.