Skip to content

Commit

Permalink
Correct the learning rate as per the code snippet
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishabh Patel authored Jun 22, 2017
1 parent af0cbac commit 90c4406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow/docs_src/get_started/mnist/beginners.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}:
Expand Down

0 comments on commit 90c4406

Please sign in to comment.