How to add a new model in tensorflow serving

荒凉一梦 提交于 2019-12-23 02:32:27

问题


I know there could be more than one model running at a time, which you can specify in a config file, as explained here.

In my case, I want to start the server with model_A, model_B and model_C, and in a future, add a new arbitrary model_D without restarting the server (since I don't want to interrupt the service for models A, B and C).

Is there a way to achieve this requirement?


回答1:


The following commit adds this functionality (and should be in TensorFlow Serving 1.7.0 and higher:

https://github.com/tensorflow/serving/commit/79d3354cd8a408fb981670512d661c2b7e89f5bf



来源:https://stackoverflow.com/questions/50052187/how-to-add-a-new-model-in-tensorflow-serving

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!