Anyone has any opinions on TF2.0? They've released it recently, and it seems like it should be much closer to PyTorch now, but I don't know enough to evaluate it properly. https://www.youtube.com/watch?v=EqWsPO8DVXk
TF2.0 (and in particular their recommended tf.keras) is simply a clone of the Pytorch API in most respects. There is no reason to use it vs just using Pytorch, especially as Pytorch now support easy model exporting for running in production.
The State of Machine Learning Frameworks
101–110 of 201 posts
Re: The State of Machine Learning Frameworks
#102We are considering to move to PyTorch, we really dislike how the Tensorflow 1.x -> 2.0 transition is handled. For years a lot of stuff has been added to tf.contrib , some things were only in tf.contrib and now that it's dropped in TF a lot of project (including ours) have to do quite large rewrites. Since the last few 1.x iterations, Tensorflow has been complaining that the older RNN layers are deprecated and that we…
that’s what we did. We had a popular open source project using TF 1.x For it’s successor we chose Pytorch instead of TF 2 and have been very happy with this decision
Re: The State of Machine Learning Frameworks
#103Re: The State of Machine Learning Frameworks
#104Re: The State of Machine Learning Frameworks
#105I think tensorflow dominates industry purely because of its capability of exporting the model into a coreml Android model or easy of moving it to production in a GCP environment or in whatever form. Pytorch might have to build a good production pipeline around it to catch up in this game. With fastai module that's built on Pytorch learning and developing Deep Learning solutions have become a lot easier. So there's a…
You can do the same with PyTorch, right? Just export the model as .onnx and import it with whatever inference engine you like.
Re: The State of Machine Learning Frameworks
#106* Automatic differentiation of higher-order differentiation being important, and how there's clearly room to disrupt there
* Increasing hardware diversity seems to mean that both frameworks will run into a brick wall as-is
Exciting space. It'll be fascinating to see how dramatically, or not, things change in the coming years.
Re: The State of Machine Learning Frameworks
#107Earlier quoted context omitted.
RHEL is popular for solutions like running a datacenter mostly because it has a nice enterprise support story. It's what the E in that acronym is for, after all. Ubuntu, meanwhile, is quite popular among us mere mortals who have to fix our own boxen. Debian is popular for Docker images exactly because many of the people trying Docker were already familiar with Ubuntu. Those users quickly ended up wanting smaller imag…
> Ubuntu fought a sea of distros and came out as what's very nearly an industry standard, if not an official one. I think you may be living in a bubble. I've been running devops for various shops for half a decade and I've only once used Ubuntu, because it was already being used by an acquisition. I won't deny that Ubuntu is popular. It's certainly got the lions share of the desktop market. But there is no such conse…
Re: The State of Machine Learning Frameworks
#108Earlier quoted context omitted.
TF2.0 (and in particular their recommended tf.keras) is simply a clone of the Pytorch API in most respects. There is no reason to use it vs just using Pytorch, especially as Pytorch now support easy model exporting for running in production.
Uhm I would think that the tf.keras API is a clone of Keras (I mean, Keras was made by a Google Engineer!!)... which came before Pytorch
Re: The State of Machine Learning Frameworks
#109I’m working in a Go code base and I’m thinking of using it instead of creating a separate service in Python.