Skip to content

Commit 9ac723a

Browse files
committed
upload tf21 autoencoder
1 parent 9ed5356 commit 9ac723a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorflowTUT/tf21_autoencoder/for_practicing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def decoder(x):
9393

9494
# # Applying encode and decode over test set
9595
encode_decode = sess.run(
96-
y_pred, feed_dict={X: mnist.test.images[:examples_to_show]})
96+
y_pred, feed_dict={X: mnist.test.images[:examples_to_show] })
9797
# Compare original images with their reconstructions
9898
f, a = plt.subplots(2, 10, figsize=(10, 2))
9999
for i in range(examples_to_show):

0 commit comments

Comments
 (0)