tensorflow serving多模型配置文件格式
tensorflow serving一个serving实例如何发布多个模型?
使用配置文件的方式启动即可,首先编写模型配置文件,比如命名为models.json
model_config_list: {
config: {
name: “bob”,
base_path: “/tmp/model”,
model_platform: “tensorflow”
},
config: {
name: “bob2”,
base_path: “/tmp/model2”,
model_platform: “tensorflow”
}
}
保存后,使用命令tensorflow_model_server –model_config_file=/root/models.json –port=9000
启动即可
感谢 可用