This document discusses moving from TensorFlow's graph mode to eager execution mode. Eager execution evaluates operations immediately without first describing the execution graph. This provides an intuitive interface, fast development iterations, easier debugging, and natural control flow. The document covers best practices for data pipelines, building models, custom layers, and text classification in eager mode. Control flow can now be handled using Python control structures rather than TensorFlow control ops like tf.while_loop.
Related topics: