aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/docs_src/get_started/estimator.md
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/docs_src/get_started/estimator.md')
-rw-r--r--tensorflow/docs_src/get_started/estimator.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/docs_src/get_started/estimator.md b/tensorflow/docs_src/get_started/estimator.md
index 790de6679b..f5a8419d2f 100644
--- a/tensorflow/docs_src/get_started/estimator.md
+++ b/tensorflow/docs_src/get_started/estimator.md
@@ -232,10 +232,10 @@ data and target values for the training set, respectively, and `test_set.data`
and `test_set.target` contain feature data and target values for the test set.
Later on, in
-["Fit the DNNClassifier to the Iris Training Data,"](#fit-dnnclassifier)
+["Fit the DNNClassifier to the Iris Training Data,"](#fit_the_dnnclassifier_to_the_iris_training_data)
you'll use `training_set.data` and
`training_set.target` to train your model, and in
-["Evaluate Model Accuracy,"](#evaluate-accuracy) you'll use `test_set.data` and
+["Evaluate Model Accuracy,"](#evaluate_model_accuracy) you'll use `test_set.data` and
`test_set.target`. But first, you'll construct your model in the next section.
## Construct a Deep Neural Network Classifier