Reputation: 133
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.
Upvotes: 8
Views: 6131
Reputation: 1285
The TensorFlow source repository includes an Android example application, Repo
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 MobileNetV2
Upvotes: 0
Reputation: 126154
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.
Upvotes: 11