Skip to content

Commit c6d8d68

Browse files
author
Yunfeng Wang
committed
fix typo: reccurent -> recurrent
1 parent 2ef1c6c commit c6d8d68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/3_NeuralNetworks/recurrent_network.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'''
2-
A Reccurent Neural Network (LSTM) implementation example using TensorFlow library.
2+
A Recurrent Neural Network (LSTM) implementation example using TensorFlow library.
33
This example is using the MNIST database of handwritten digits (http://yann.lecun.com/exdb/mnist/)
44
Long Short Term Memory paper: http://deeplearning.cs.cmu.edu/pdfs/Hochreiter97_lstm.pdf
55
@@ -18,7 +18,7 @@
1818
mnist = input_data.read_data_sets("/tmp/data/", one_hot=True)
1919

2020
'''
21-
To classify images using a reccurent neural network, we consider every image
21+
To classify images using a recurrent neural network, we consider every image
2222
row as a sequence of pixels. Because MNIST image shape is 28*28px, we will then
2323
handle 28 sequences of 28 steps for every sample.
2424
'''

0 commit comments

Comments
 (0)