From 90fdd6c37cb0a73b36f6d7339708b2c193a0adee Mon Sep 17 00:00:00 2001 From: HexToString <506181616@qq.com> Date: Wed, 2 Mar 2022 17:26:32 +0800 Subject: [PATCH] fix doc --- doc/C++_Serving/2+_model.md | 2 +- doc/C++_Serving/DAG_CN.md | 2 +- doc/C++_Serving/DAG_EN.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/C++_Serving/2+_model.md b/doc/C++_Serving/2+_model.md index 226f4973..25065b81 100755 --- a/doc/C++_Serving/2+_model.md +++ b/doc/C++_Serving/2+_model.md @@ -220,4 +220,4 @@ python3 自定义.py ocr_det_client ocr_rec_client #ocr_det_client为第一个模型的Client端proto文件夹的相对路径 #ocr_rec_client为第二个模型的Client端proto文件夹的相对路径 ``` -此时,对于Server端而言,输入的数据的格式与`第一个模型的Client端proto格式`定义的一致,输出的数据格式与`最后一个模型的Client端proto`文件一致。一般情况下您无须关注此事,当您需要了解详细的[proto的定义,请参考此处](./Serving_Configure_CN.md)。 +此时,对于Server端而言,输入的数据的格式与`第一个模型的Client端proto格式`定义的一致,输出的数据格式与`最后一个模型的Client端proto`文件一致。一般情况下您无须关注此事,当您需要了解详细的[proto的定义,请参考此处](../Serving_Configure_CN.md)。 diff --git a/doc/C++_Serving/DAG_CN.md b/doc/C++_Serving/DAG_CN.md index fd4d043b..d97bd5dc 100755 --- a/doc/C++_Serving/DAG_CN.md +++ b/doc/C++_Serving/DAG_CN.md @@ -40,7 +40,7 @@ op_seq_maker.add_op(general_infer_op) op_seq_maker.add_op(general_response_op) ``` -如果使用`命令行 + 配置文件的方式启动C++Server`只需[修改配置文件]((./Serving_Configure_CN.md))即可,无须修改👆的代码。 +如果使用`命令行 + 配置文件的方式启动C++Server`只需[修改配置文件]((../Serving_Configure_CN.md))即可,无须修改👆的代码。 对于简单的串联逻辑,我们将其简化为`Sequence`,使用`OpSeqMaker`进行构建。用户可以不指定每个节点的前继,默认按加入`OpSeqMaker`的顺序来确定前继。 diff --git a/doc/C++_Serving/DAG_EN.md b/doc/C++_Serving/DAG_EN.md index 6f8b9c25..a4570734 100755 --- a/doc/C++_Serving/DAG_EN.md +++ b/doc/C++_Serving/DAG_EN.md @@ -39,7 +39,7 @@ op_seq_maker.add_op(general_infer_op) op_seq_maker.add_op(general_response_op) ``` -If you use `the command line + configuration file method to start C++ server`, you only need to modify [the configuration file](./Serving_Configure_CN.md), don`t need to change any line of 👆 code. +If you use `the command line + configuration file method to start C++ server`, you only need to modify [the configuration file](../Serving_Configure_CN.md), don`t need to change any line of 👆 code. For simple series logic, we simplify it and build it with `OpSeqMaker`. You can determine the successor by default according to the order of joining `OpSeqMaker` without specifying the successor of each node. -- GitLab