Hacker News new | ask | show | jobs
by euphoria 3086 days ago
https://github.com/tensorflow/tensorflow/tree/r1.5/tensorflo...

> Eager execution is an experimental interface to TensorFlow that provides an imperative programming style (à la NumPy). When you enable eager execution, TensorFlow operations execute immediately; you do not execute a pre-constructed graph with Session.run().

2 comments

This sounds like it would make mucking about with TensorFlow in the REPL far easier.
And debuging. Usually with tensorflow project I found my self at debuging hell where I really dont have any clue where the buggy line is.
This is great! No more constant `eval` spam :)