Skip to content

Commit 313b8f2

Browse files
authored
Merge pull request tensorflow#10965 from patelrishabh/patch-1
Correct the learning rate as per the code snippet
2 parents 3c19462 + 90c4406 commit 313b8f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorflow/docs_src/get_started/mnist/beginners.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ train_step = tf.train.GradientDescentOptimizer(0.05).minimize(cross_entropy)
367367

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

0 commit comments

Comments
 (0)