Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
74c11bc8
S
Serving
项目概览
PaddlePaddle
/
Serving
大约 1 年 前同步成功
通知
185
Star
833
Fork
253
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
105
列表
看板
标记
里程碑
合并请求
10
Wiki
2
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Serving
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
105
Issue
105
列表
看板
标记
里程碑
合并请求
10
合并请求
10
Pages
分析
分析
仓库分析
DevOps
Wiki
2
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
74c11bc8
编写于
4月 06, 2021
作者:
H
HexToString
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix doc style for ocr
上级
088dc39b
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
10 addition
and
1 deletion
+10
-1
doc/COMPILE.md
doc/COMPILE.md
+1
-0
doc/COMPILE_CN.md
doc/COMPILE_CN.md
+1
-0
python/examples/ocr/README.md
python/examples/ocr/README.md
+4
-1
python/examples/ocr/README_CN.md
python/examples/ocr/README_CN.md
+4
-0
未找到文件。
doc/COMPILE.md
浏览文件 @
74c11bc8
...
...
@@ -119,6 +119,7 @@ you can execute `make install` to put targets under directory `./output`, you ne
### Compile C++ Server under the condition of WITH_OPENCV=ON
First of all , opencv library should be installed, if not, please refer to the
`Compile and install opencv`
section later in this article.
In the compile command, add
`DOPENCV_DIR=${OPENCV_DIR}`
and
`DWITH_OPENCV=ON`
,for example:
```
shell
OPENCV_DIR
=
your_opencv_dir
#`your_opencv_dir` is the installation path of OpenCV library。
...
...
doc/COMPILE_CN.md
浏览文件 @
74c11bc8
...
...
@@ -118,6 +118,7 @@ make -j10
### 开启WITH_OPENCV选项编译C++ Server
编译Serving C++ Server部分,开启WITH_OPENCV选项时,需要安装安装openCV库,若没有可参考本文档后面的说明编译安装openCV库。
在编译命令中,加入
`DOPENCV_DIR=${OPENCV_DIR}`
和
`DWITH_OPENCV=ON`
选项,例如:
```
shell
OPENCV_DIR
=
your_opencv_dir
#`your_opencv_dir`为opencv库的安装路径。
...
...
python/examples/ocr/README.md
浏览文件 @
74c11bc8
...
...
@@ -19,6 +19,7 @@ tar xf test_imgs.tar
### Start Service
Select a startup mode according to CPU / GPU device
After the -- model parameter, the folder path of multiple model files is passed in to start the prediction service of multiple model concatenation.
```
#for cpu user
...
...
@@ -28,8 +29,10 @@ python -m paddle_serving_server_gpu.serve --model ocr_det_model ocr_rec_model --
```
### Client Prediction
The pre-processing and post-processing is in the C + + server part, the image's Base64 encoded string is passed into the C + + server
The pre-processing and post-processing is in the C + + server part, the image's Base64 encoded string is passed into the C + + server.
so the value of parameter
`feed_var`
which is in the file
`ocr_det_client/serving_client_conf.prototxt`
should be changed.
for this case,
`feed_type`
should be 3(which means the data type is string),
`shape`
should be 1.
By passing in multiple client folder paths, the client can be started for multi model prediction.
...
...
python/examples/ocr/README_CN.md
浏览文件 @
74c11bc8
...
...
@@ -19,6 +19,7 @@ tar xf test_imgs.tar
### 启动服务
根据CPU/GPU设备选择一种启动方式
通过--model后,指定多个模型文件的文件夹路径来启动多模型串联的预测服务。
```
#for cpu user
...
...
@@ -29,8 +30,11 @@ python -m paddle_serving_server_gpu.serve --model ocr_det_model ocr_rec_model --
### 启动客户端
由于需要在C++Server部分进行前后处理,传入C++Server的仅仅是图片的base64编码的字符串,故第一个模型的Client配置需要修改
即
`ocr_det_client/serving_client_conf.prototxt`
中
`feed_var`
字段
对于本示例而言,
`feed_type`
应修改为3(数据类型为string),
`shape`
为1.
通过在客户端启动后加入多个client模型的client配置文件夹路径,启动client进行预测。
```
python ocr_c_client_bytes.py ocr_det_client ocr_rec_client
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录