Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to work with Tensorflow on Android platform?

Google has made the TENSORFLOW open source for developers..

Is there any way out for using this on android?

The link is here TensorFlow.

I would love to have some directions to work on this API.

like image 456
RUTURAJ Raval Avatar asked Nov 25 '15 17:11

RUTURAJ Raval


1 Answers

The TensorFlow source repository includes an Android example application, with some documentation.

The Android example includes a pre-trained model for image classification, and uses this to classify images captured by the camera. Typically you would build and train a model using the Python API; generate a serialised version of the model as a GraphDef protocol buffer (and possibly a checkpoint of the model parameters); and then load that and run inference steps using the C++ API.

like image 116
mrry Avatar answered Oct 29 '22 22:10

mrry