未验证 提交 1330939e 编写于 作者: B Bin Lu 提交者: GitHub

Merge pull request #1674 from Intsigstephon/fix_release_cpp_serving_bug

fix serving doc problem
...@@ -85,7 +85,7 @@ python3 -m paddle_serving_client.convert --dirname ./ResNet50_vd_infer/ \ ...@@ -85,7 +85,7 @@ python3 -m paddle_serving_client.convert --dirname ./ResNet50_vd_infer/ \
``` ```
ResNet50_vd 推理模型转换完成后,会在当前文件夹多出 `ResNet50_vd_serving``ResNet50_vd_client` 的文件夹,具备如下格式: ResNet50_vd 推理模型转换完成后,会在当前文件夹多出 `ResNet50_vd_serving``ResNet50_vd_client` 的文件夹,具备如下格式:
``` ```
|- ResNet50_vd_server/ |- ResNet50_vd_serving/
|- inference.pdiparams |- inference.pdiparams
|- inference.pdmodel |- inference.pdmodel
|- serving_server_conf.prototxt |- serving_server_conf.prototxt
...@@ -94,7 +94,7 @@ ResNet50_vd 推理模型转换完成后,会在当前文件夹多出 `ResNet50_ ...@@ -94,7 +94,7 @@ ResNet50_vd 推理模型转换完成后,会在当前文件夹多出 `ResNet50_
|- serving_client_conf.prototxt |- serving_client_conf.prototxt
|- serving_client_conf.stream.prototxt |- serving_client_conf.stream.prototxt
``` ```
得到模型文件之后,需要分别修改 `ResNet50_vd_server``ResNet50_vd_client` 下文件 `serving_server_conf.prototxt` 中的 alias 名字:将 `fetch_var` 中的 `alias_name` 改为 `prediction` 得到模型文件之后,需要分别修改 `ResNet50_vd_serving``ResNet50_vd_client` 下文件 `serving_server_conf.prototxt` 中的 alias 名字:将 `fetch_var` 中的 `alias_name` 改为 `prediction`
**备注**: Serving 为了兼容不同模型的部署,提供了输入输出重命名的功能。这样,不同的模型在推理部署时,只需要修改配置文件的 alias_name 即可,无需修改代码即可完成推理部署。 **备注**: Serving 为了兼容不同模型的部署,提供了输入输出重命名的功能。这样,不同的模型在推理部署时,只需要修改配置文件的 alias_name 即可,无需修改代码即可完成推理部署。
修改后的 serving_server_conf.prototxt 如下所示: 修改后的 serving_server_conf.prototxt 如下所示:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册