Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some minor typos in get_started docs to keep consistent #17357

Merged
merged 1 commit into from
Mar 1, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions tensorflow/docs_src/get_started/checkpoints.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ classifier = tf.estimator.DNNClassifier(

The first time you call an Estimator's `train` method, TensorFlow saves a
checkpoint to the `model_dir`. Each subsequent call to the Estimator's
`train`, `eval`, or `predict` method causes the following:
`train`, `evaluate`, or `predict` method causes the following:

1. The Estimator builds the model's
[graph](https://developers.google.com/machine-learning/glossary/#graph)
Expand Down Expand Up @@ -222,7 +222,7 @@ does not match the shape stored in checkpoint: [20]

To run experiments in which you train and compare slightly different
versions of a model, save a copy of the code that created each
`model-dir`, possibly by creating a separate git branch for each version.
`model_dir`, possibly by creating a separate git branch for each version.
This separation will keep your checkpoints recoverable.

## Summary
Expand Down