From f5121d0b7be5b638148e72c67a28543c35b3501c Mon Sep 17 00:00:00 2001 From: Mark Daoust Date: Fri, 25 May 2018 10:45:27 -0700 Subject: [PATCH] Link to tf.estimator docs for premade estimators. PiperOrigin-RevId: 198070157 --- tensorflow/docs_src/programmers_guide/premade_estimators.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tensorflow/docs_src/programmers_guide/premade_estimators.md b/tensorflow/docs_src/programmers_guide/premade_estimators.md index e5eca44..f6dd75e 100644 --- a/tensorflow/docs_src/programmers_guide/premade_estimators.md +++ b/tensorflow/docs_src/programmers_guide/premade_estimators.md @@ -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: -- 2.7.4