浏览代码

fix typo: reccurent -> recurrent

Yunfeng Wang 8 年之前
父节点
当前提交
c6d8d68589
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      examples/3_NeuralNetworks/recurrent_network.py

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

@@ -1,5 +1,5 @@
 '''
-A Reccurent Neural Network (LSTM) implementation example using TensorFlow library.
+A Recurrent Neural Network (LSTM) implementation example using TensorFlow library.
 This example is using the MNIST database of handwritten digits (http://yann.lecun.com/exdb/mnist/)
 Long Short Term Memory paper: http://deeplearning.cs.cmu.edu/pdfs/Hochreiter97_lstm.pdf
 
@@ -18,7 +18,7 @@ from tensorflow.examples.tutorials.mnist import input_data
 mnist = input_data.read_data_sets("/tmp/data/", one_hot=True)
 
 '''
-To classify images using a reccurent neural network, we consider every image
+To classify images using a recurrent neural network, we consider every image
 row as a sequence of pixels. Because MNIST image shape is 28*28px, we will then
 handle 28 sequences of 28 steps for every sample.
 '''