Link to tf.estimator docs for premade estimators.
authorMark Daoust <markdaoust@google.com>
Fri, 25 May 2018 17:45:27 +0000 (10:45 -0700)
committerTensorFlower Gardener <gardener@tensorflow.org>
Fri, 25 May 2018 17:48:25 +0000 (10:48 -0700)
PiperOrigin-RevId: 198070157

tensorflow/docs_src/programmers_guide/premade_estimators.md

index e5eca44..f6dd75e 100644 (file)
@@ -177,13 +177,11 @@ other features so you can concentrate on your model. For more details see
 
 An Estimator is any class derived from @{tf.estimator.Estimator}. TensorFlow
 provides a collection of
-[pre-made Estimators](https://developers.google.com/machine-learning/glossary/#pre-made_Estimator)
+@{tf.estimator$pre-made Estimators}
 (for example, `LinearRegressor`) to implement common ML algorithms. Beyond
 those, you may write your own
-[custom Estimators](https://developers.google.com/machine-learning/glossary/#custom_Estimator).
-We recommend using pre-made Estimators when just getting started with
-TensorFlow. After gaining expertise with the pre-made Estimators, we recommend
-optimizing your model by creating your own custom Estimators.
+@{$custom_estimators$custom Estimators}.
+We recommend using pre-made Estimators when just getting started.
 
 To write a TensorFlow program based on pre-made Estimators, you must perform the
 following tasks: