Backprop Workshop in Tensorflow

Backprop Workshop in Tensorflow

Tensorflow Autodiff (Eager Mode)

TensorFlow’s eager execution is an imperative programming environment that evaluates operations immediately, without building graphs. We are usually using the computational graph in production environments. So eager is the way to do TF since 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. To follow along with this guide, run the code samples below in an interactive python interpreter.

To be able to follow the notebook you need to make sure you have reviewed first the following notebooks.

How to Run: Click the yellow button found under the title “Run in Google Colab”.

TF Graphs