aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/docs_src/get_started/custom_estimators.md
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/docs_src/get_started/custom_estimators.md')
-rw-r--r--tensorflow/docs_src/get_started/custom_estimators.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/docs_src/get_started/custom_estimators.md b/tensorflow/docs_src/get_started/custom_estimators.md
index 6343cc4ee4..42a246678a 100644
--- a/tensorflow/docs_src/get_started/custom_estimators.md
+++ b/tensorflow/docs_src/get_started/custom_estimators.md
@@ -15,7 +15,7 @@ git clone https://github.com/tensorflow/models/
cd models/samples/core/get_started
```
-In this document we wil be looking at
+In this document we will be looking at
[`custom_estimator.py`](https://github.com/tensorflow/models/blob/master/samples/core/get_started/custom_estimator.py).
You can run it with the following command:
@@ -161,7 +161,7 @@ classifier = tf.estimator.Estimator(
To implement a typical model function, you must do the following:
-* (Define the model)[#define_the_model].
+* [Define the model](#define_the_model).
* Specify additional calculations for each of
the [three different modes](#modes):
* [Predict](#predict)