How can I use tensorflow serving for multiple models

前端 未结 1 1877
谎友^
谎友^ 2020-12-24 00:11

How can I use multiple tensorflow models? I use docker container.

model_config_list: {

  config: {
    name: \"model1\",
    base_path: \"/tmp         


        
相关标签:
1条回答
  • 2020-12-24 00:46

    Built a docker image from official tensorflow serving docker file

    Then inside docker image.

    /usr/local/bin/tensorflow_model_server --port=9000 --model_config_file=/serving/models.conf
    

    here /serving/models.conf is a similar file as yours.

    0 讨论(0)
提交回复
热议问题