We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ef1c6c commit c6d8d68Copy full SHA for c6d8d68
1 file changed
examples/3_NeuralNetworks/recurrent_network.py
@@ -1,5 +1,5 @@
1
'''
2
-A Reccurent Neural Network (LSTM) implementation example using TensorFlow library.
+A Recurrent Neural Network (LSTM) implementation example using TensorFlow library.
3
This example is using the MNIST database of handwritten digits (http://yann.lecun.com/exdb/mnist/)
4
Long Short Term Memory paper: http://deeplearning.cs.cmu.edu/pdfs/Hochreiter97_lstm.pdf
5
@@ -18,7 +18,7 @@
18
mnist = input_data.read_data_sets("/tmp/data/", one_hot=True)
19
20
21
-To classify images using a reccurent neural network, we consider every image
+To classify images using a recurrent neural network, we consider every image
22
row as a sequence of pixels. Because MNIST image shape is 28*28px, we will then
23
handle 28 sequences of 28 steps for every sample.
24
0 commit comments