TensorFlow.jl icon indicating copy to clipboard operation
TensorFlow.jl copied to clipboard

Support eager execution

Open mihirparadkar opened this issue 7 years ago • 1 comments

AFAIK, only python currently supports tensorflow eager execution. This would make prototyping and designing dynamic graphs much easier, and would really leverage Julia's strengths in low-overhead loops and function calls.

mihirparadkar avatar Jul 26 '18 18:07 mihirparadkar

I briefly look into this. Most of the magic that makes this go is in python, not libtensorflow. So we can't just call the back-end functions. So it is hard for us to implement in julia.

If someone who really gets how that stuff worked wants to make a PR, i'ld happily review, but I don't have time right now.

If one really wants to take advantage of julia for this kinda thing, i'ld recommend Flux, or another eager pure Julia NN library.

oxinabox avatar Jul 27 '18 01:07 oxinabox