Skip to content

Commit

Permalink
FIX: typo gradiend -> gradient
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleabeauchamp committed Jun 1, 2019
1 parent a5952bc commit 34e3fe2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion site/en/r2/tutorials/text/text_generation.ipynb
Expand Up @@ -1643,7 +1643,7 @@
"\n",
"So now that you've seen how to run the model manually let's unpack the training loop, and implement it ourselves. This gives a starting point if, for example, to implement _curriculum learning_ to help stabilize the model's open-loop output.\n",
"\n",
"We will use `tf.GradientTape` to track the gradiends. You can learn more about this approach by reading the [eager execution guide](https://www.tensorflow.org/guide/eager).\n",
"We will use `tf.GradientTape` to track the gradients. You can learn more about this approach by reading the [eager execution guide](https://www.tensorflow.org/guide/eager).\n",
"\n",
"The procedure works as follows:\n",
"\n",
Expand Down
2 changes: 1 addition & 1 deletion site/en/tutorials/sequences/text_generation.ipynb
Expand Up @@ -1145,7 +1145,7 @@
"\n",
"So now that you've seen how to run the model manually let's unpack the training loop, and implement it ourselves. This gives a starting point if, for example, to implement _curriculum learning_ to help stabilize the model's open-loop output.\n",
"\n",
"We will use `tf.GradientTape` to track the gradiends. You can learn more about this approach by reading the [eager execution guide](https://www.tensorflow.org/guide/eager).\n",
"We will use `tf.GradientTape` to track the gradients. You can learn more about this approach by reading the [eager execution guide](https://www.tensorflow.org/guide/eager).\n",
"\n",
"The procedure works as follows:\n",
"\n",
Expand Down

0 comments on commit 34e3fe2

Please sign in to comment.