我已经部署了一个模型,该模型使用 tfhub 模型来使用 docker 进行 tensorflow 服务。
这是我的模型中包含的 tfhub 模型:
https://tfhub.dev/google/universal-sentence-encoder-multilingual/1
这是运行docker的命令
docker run -t --rm -p 8501:8501 \
-v "/docker_dir/model_tf_serving:/models/mymodel" \
-e MODEL_NAME=mymodel \
tensorflow/serving &
Run Code Online (Sandbox Code Playgroud)
发生错误:
Not found: Op type not registered 'SentencepieceEncodeSparse' in binary running on c5e507bf091b. Make sure the Op and Kernel are registered in the binary running in this process. Note that if you are loading a saved graph which used ops from tf.contrib, accessing (e.g.) `tf.contrib.resampler` should be done before importing the graph, as …Run Code Online (Sandbox Code Playgroud)