Tensorflow 1.5.0 release canidate includes “eager execution”
1–10 of 14 posts
Re: Tensorflow 1.5.0 release canidate includes “eager execution”
#2Re: Tensorflow 1.5.0 release canidate includes “eager execution”
#3What is eager execution?
> 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().
Re: Tensorflow 1.5.0 release canidate includes “eager execution”
#4What is eager execution?
https://github.com/tensorflow/tensorflow/tree/r1.5/tensorflo...
Re: Tensorflow 1.5.0 release canidate includes “eager execution”
#5What is eager execution?
Re: Tensorflow 1.5.0 release canidate includes “eager execution”
#6What is eager execution?
It's actually pretty clear (to anyone that has used TensorFlow)
Re: Tensorflow 1.5.0 release canidate includes “eager execution”
#7Re: Tensorflow 1.5.0 release canidate includes “eager execution”
#8What is eager execution?
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().
Re: Tensorflow 1.5.0 release canidate includes “eager execution”
#9What is eager execution?
https://research.googleblog.com/2017/10/eager-execution-impe...
Re: Tensorflow 1.5.0 release canidate includes “eager execution”
#10Earlier quoted context omitted.
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().
This sounds like it would make mucking about with TensorFlow in the REPL far easier.