Live data from Hacker News

Tensorflow 1.5.0 release canidate includes “eager execution”

github.com

1–10 of 14 posts

Re: Tensorflow 1.5.0 release canidate includes “eager execution”

#3
post #2

What 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”

#4
post #2

What 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().

https://github.com/tensorflow/tensorflow/tree/r1.5/tensorflo...

Re: Tensorflow 1.5.0 release canidate includes “eager execution”

#8
post #3
post #2

What 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().

This sounds like it would make mucking about with TensorFlow in the REPL far easier.

Re: Tensorflow 1.5.0 release canidate includes “eager execution”

#10
post #3

Earlier 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.

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.
Post reply on HN