简体   繁体   中英

Serving Univeral Sentence Encoder Model using tensorflow serving and docker

I have universal sentence encoder model saved on my local drive. I am trying to serve the model on docker container using tensorflow serving.

Command:

sudo docker run -p 8502:8502 --name tf-serve -v /home/ubuntu/first/models:/models -t tensorflow/serving --model_base_path=/models/test

where /home/ubuntu/first/models is the folder path to my model files.

After running initially it is going into an infinite loop.

What is happening here?. Any help will be appreciated.

edit your command like this:

sudo docker run -p 8502:8502 --name tf-serve -v /home/ubuntu/first/models:/models/test -t tensorflow/serving --model_base_path=/models/test

your --model_base_path is /models/test so you need to copy the files into that folder in your -v

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM