-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
StatusRuntimeException: UNIMPLEMENTED #4
Comments
Yes that could be the issue. Have a look at the src/main/java/edu/usc/irds/tensorflow/grpc I think you have to generate the Stub and Inference files for the MNIST Model. |
@newyangyang this project was done more than a year ago. You can pull a docker and test it (I tested it today and it still works!): # pull and start the prebuilt container, forward port 9000
docker run -it -p 9000:9000 tgowda/inception_serving_tika
# Inside the container, start tensorflow service
root@8311ea4e8074:/# /serving/server.sh
The situation may be changed now. The server side may be more generalized to accommodate more models. I would be interested to hear if you find anything. |
FYI, The MNIST file you are looking for is here: To know how to generate Java files from proto files: https://developers.google.com/protocol-buffers/docs/reference/java-generated FYI - all those files are deleted from repository now and replaced with more generic APIs https://github.com/tensorflow/serving/tree/f8c779f6525749d5d7835b4fb8dcb6a8d80af035/tensorflow_serving/apis So, if your project depends on this, I recommend updating to current version! |
I have met the same problem and python client of inception can well call the inception serving, could you help to solve this problem? Here is the running problem: |
@jiangcore do you slove it ? |
I got error like :
Not sure whether the client side or the server side is broken. The server is running and image is ready, may be something about the protocol. Do you have a clue?
UPDATE:
I am not running inception-model but MNIST-model, did this could cause the error? If so, how can I change the code to the MNIST-model?
The text was updated successfully, but these errors were encountered: