Browse Source

MINST -> MNIST

Bastiaan Quast 8 years ago
parent
commit
a9674aae96
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/3_NeuralNetworks/recurrent_network.py

+ 1 - 1
examples/3_NeuralNetworks/recurrent_network.py

@@ -11,7 +11,7 @@ import tensorflow as tf
 from tensorflow.python.ops import rnn, rnn_cell
 import numpy as np
 
-# Import MINST data
+# Import MNIST data
 from tensorflow.examples.tutorials.mnist import input_data
 mnist = input_data.read_data_sets("/tmp/data/", one_hot=True)