Tensorflow 2.0 Beta 0
github.com
Tensorflow 2.0 Beta 0
1–10 of 44 posts
Re: Tensorflow 2.0 Beta 0
#2Re: Tensorflow 2.0 Beta 0
#3Re: Tensorflow 2.0 Beta 0
#4Might give it another try, but my latest incursion in the Tensorflow universe did not end pleasantly. I ended up recoding everything in Pytorch, took me less than a day to do the stuff that took me more than a week in TF. One problem is that there are too many ways to do the same thing in TF and it's hard to transition from one to the other.
Re: Tensorflow 2.0 Beta 0
#5Might give it another try, but my latest incursion in the Tensorflow universe did not end pleasantly. I ended up recoding everything in Pytorch, took me less than a day to do the stuff that took me more than a week in TF. One problem is that there are too many ways to do the same thing in TF and it's hard to transition from one to the other.
https://medium.com/tensorflow/standardizing-on-keras-guidanc...
Re: Tensorflow 2.0 Beta 0
#6Might give it another try, but my latest incursion in the Tensorflow universe did not end pleasantly. I ended up recoding everything in Pytorch, took me less than a day to do the stuff that took me more than a week in TF. One problem is that there are too many ways to do the same thing in TF and it's hard to transition from one to the other.
Yeah, the only reason to use TF is really its deployment friendliness. If PyTorch addressed that more comprehensively, there'd be no good reason to use TF at all. For research PyTorch blows TF out of the water completely, and it's been that way for years, ever since it came out.
Re: Tensorflow 2.0 Beta 0
#7Earlier quoted context omitted.
Yeah, the only reason to use TF is really its deployment friendliness. If PyTorch addressed that more comprehensively, there'd be no good reason to use TF at all. For research PyTorch blows TF out of the water completely, and it's been that way for years, ever since it came out.
What are you looking for in deployment friendliness? There's TorchScript to run your code faster (which is a work in progress)
AFAIK, This is still being worked on PyTorch via XLA, but not quite there yet.
Re: Tensorflow 2.0 Beta 0
#8Earlier quoted context omitted.
Yeah, the only reason to use TF is really its deployment friendliness. If PyTorch addressed that more comprehensively, there'd be no good reason to use TF at all. For research PyTorch blows TF out of the water completely, and it's been that way for years, ever since it came out.
What are you looking for in deployment friendliness? There's TorchScript to run your code faster (which is a work in progress)
Specifically, my life would be a lot easier if I could save a mobilenet-style model to e.g. ONNX or some other static graph format that does not require model code in order to load weights. I would like then to be able to load this saved model directly into something on Android and iOS that can use GPU and DSP present on the chip, with minimal extra futzing.
Re: Tensorflow 2.0 Beta 0
#9Might give it another try, but my latest incursion in the Tensorflow universe did not end pleasantly. I ended up recoding everything in Pytorch, took me less than a day to do the stuff that took me more than a week in TF. One problem is that there are too many ways to do the same thing in TF and it's hard to transition from one to the other.
What do you think of Keras in this space ? Because TF 2.0 is entirely keras based. https://medium.com/tensorflow/standardizing-on-keras-guidanc...