Live data from Hacker News

TensorFlow – Consise Examples for Beginners

github.com

31–32 of 32 posts

Re: TensorFlow – Consise Examples for Beginners

#31
post #28

I'm totally new to TensorFlow and ML in general, but I've been curious about how this could fit into a system. Say you need a CNN text classifier algorithm to categorize simple single page documents. So you set one up via TensorFlow, train it with a big dataset, and get it outputting categories with decent accuracy. Could you then use some type of API and query it from a (low traffic) production web app? Or is it mor…

Yes, you could totally do that. Consider that the google translate app packages their trained network into the app itself, so it can do offline translation directly on the phone itself

Re: TensorFlow – Consise Examples for Beginners

#32
post #28

I'm totally new to TensorFlow and ML in general, but I've been curious about how this could fit into a system. Say you need a CNN text classifier algorithm to categorize simple single page documents. So you set one up via TensorFlow, train it with a big dataset, and get it outputting categories with decent accuracy. Could you then use some type of API and query it from a (low traffic) production web app? Or is it mor…

Take a look at https://tensorflow.github.io/serving/serving_basic and https://tensorflow.github.io/serving/serving_advanced
Post reply on HN