• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Estimator Examples
2
3TensorFlow Estimators are a high-level API for TensorFlow that allows you to
4create, train, and use deep learning models easily.
5
6See the [Quickstart tutorial](https://www.tensorflow.org/get_started/estimator)
7for an introduction to the API.
8
9## Basics
10
11* [Building a Custom Model](https://www.tensorflow.org/code/tensorflow/examples/learn/iris_custom_model.py)
12
13## Techniques
14
15* [Deep Neural Network with Customized Decay Function](https://www.tensorflow.org/code/tensorflow/examples/learn/iris_custom_decay_dnn.py)
16
17