Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

tensorflow-serving-apis - cannot find python documentation

Tags:

I have been trying to use tensorflow serving to serve a model and utilize tensorflow-serving-api as mentioned here: https://github.com/tensorflow/serving/tree/master/tensorflow_serving/apis Im using python and try as I might, I could not find the documentation for the package. The pypi page redirects here (tensorflow serving) which does not contain documentation of the python client wrapper. Neither does this place https://www.tensorflow.org/serving/api_docs/cc/

Can anyone point me in the right direction?

like image 506
nsof Avatar asked Jan 01 '19 06:01

nsof


1 Answers

Tensorflow serving API for python is not documented that well. Easiest solution is to go throgh the examples they provide for serving below. The code is pretty simple

https://github.com/tensorflow/serving/tree/master/tensorflow_serving/example

Also you can checkout below blogs that explain serving very well through gRCP.

https://medium.freecodecamp.org/how-to-deploy-tensorflow-models-to-production-using-tf-serving-4b4b78d41700

like image 108
Ankit Goyal Avatar answered Dec 13 '22 22:12

Ankit Goyal