aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/eager/python/g3doc/guide.md
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/eager/python/g3doc/guide.md')
-rw-r--r--tensorflow/contrib/eager/python/g3doc/guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/eager/python/g3doc/guide.md b/tensorflow/contrib/eager/python/g3doc/guide.md
index 0095ffa0db..7eea93ce1f 100644
--- a/tensorflow/contrib/eager/python/g3doc/guide.md
+++ b/tensorflow/contrib/eager/python/g3doc/guide.md
@@ -292,7 +292,7 @@ def loss(weight, bias):
error = prediction(training_inputs, weight, bias) - training_outputs
return tf.reduce_mean(tf.square(error))
-# Function that returns the the derivative of loss with respect to
+# Function that returns the derivative of loss with respect to
# weight and bias
grad = tfe.gradients_function(loss)