How to use tenorflow function for multiple models

How to use several models tensorflow? I use a docker container.

model_config_list: {

  config: {
    name: "model1",
    base_path: "/tmp/model",
    model_platform: "tensorflow"
  },
  config: {
     name: "model2",
     base_path: "/tmp/model2",
     model_platform: "tensorflow"
  }
}
+4
source share
1 answer

Built docker image from the official docker tensorflow serving file

Then the image is inside the docker.

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

here /serving/models.confis a file similar to yours.

+6
source

Source: https://habr.com/ru/post/1683935/


All Articles