6 ms·
https://github.com/tensorflow/tensorflow/tree/r1.5/tensorflow/contrib/eager https://github.com/tensorflow/tensorflow/tree/r1.5/tensorflo... > Eager execution i
by euphoria 9y ago
https://github.com/tensorflow/tensorflow/tree/r1.5/tensorflow/contrib/eager 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().
- Waterluvian 9y agoThis sounds like it would make mucking about with TensorFlow in the REPL far easier.
- atupis 9y agoAnd debuging. Usually with tensorflow project I found my self at debuging hell where I really dont have any clue where the buggy line is.
- CardenB 9y agoThis is great! No more constant `eval` spam :)