Skip to content

Latest commit

 

History

History
3 lines (2 loc) · 356 Bytes

File metadata and controls

3 lines (2 loc) · 356 Bytes

Chapter 4. Eager Mode

TensorFlow's eager execution is an imperative programming environment that evaluates operations immediately, without building graphs: operations return concrete values instead of constructing a computational graph to run later. This makes it easy to get started with TensorFlow and debug models, and it reduces boilerplate as well.