• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Eager execution
2
3Eager execution is a feature that makes TensorFlow execute operations
4immediately: concrete values are returned, instead of creating a computational
5graph that is executed later.
6
7A user guide is available: https://www.tensorflow.org/guide/eager
8([source file](../../../../docs_src/guide/eager.md))
9
10We welcome feedback through [GitHub issues](https://github.com/tensorflow/tensorflow/labels/comp:eager).
11
12Sample code is available, including benchmarks for some:
13
14- [Linear Regression](https://www.tensorflow.org/code/tensorflow/contrib/eager/python/examples/linear_regression)
15- [MNIST handwritten digit classifier](https://www.tensorflow.org/code/tensorflow/contrib/eager/python/examples/mnist)
16- [ResNet50 image classification](https://www.tensorflow.org/code/tensorflow/contrib/eager/python/examples/resnet50)
17- [RNN to generate colors](https://www.tensorflow.org/code/tensorflow/contrib/eager/python/examples/rnn_colorbot)
18- [RNN language model](https://www.tensorflow.org/code/tensorflow/contrib/eager/python/examples/rnn_ptb)
19