Correct the learning rate as per the code snippet

This commit is contained in:
Rishabh Patel 2017-06-21 19:42:58 -07:00 committed by GitHub
parent af0cbace1d
commit 90c4406b7d

View File

@ -367,7 +367,7 @@ train_step = tf.train.GradientDescentOptimizer(0.05).minimize(cross_entropy)
In this case, we ask TensorFlow to minimize `cross_entropy` using the
[gradient descent algorithm](https://en.wikipedia.org/wiki/Gradient_descent)
with a learning rate of 0.5. Gradient descent is a simple procedure, where
with a learning rate of 0.05. Gradient descent is a simple procedure, where
TensorFlow simply shifts each variable a little bit in the direction that
reduces the cost. But TensorFlow also provides
@{$python/train#Optimizers$many other optimization algorithms}: