Skip to content

Latest commit

 

History

History
3 lines (2 loc) · 345 Bytes

EagerMode.md

File metadata and controls

3 lines (2 loc) · 345 Bytes

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.