README_CN.md 8.8 KB
Newer Older
L
LDOUBLEV 已提交
1 2 3 4
# PPOCR 服务化部署

([English](./README.md)|简体中文)

L
LDOUBLEV 已提交
5 6 7 8 9 10
PaddleOCR提供2种服务部署方式:
- 基于PaddleHub Serving的部署:代码路径为"`./deploy/hubserving`",使用方法参考[文档](../../deploy/hubserving/readme.md)
- 基于PaddleServing的部署:代码路径为"`./deploy/pdserving`",按照本教程使用。

# 基于PaddleServing的服务部署

L
LDOUBLEV 已提交
11 12 13
本文档将介绍如何使用[PaddleServing](https://github.com/PaddlePaddle/Serving/blob/develop/README_CN.md)工具部署PPOCR
动态图模型的pipeline在线服务。

L
LDOUBLEV 已提交
14 15 16 17
相比较于hubserving部署,PaddleServing具备以下优点:
- 支持客户端和服务端之间高并发和高效通信
- 支持 工业级的服务能力 例如模型管理,在线加载,在线A/B测试等
- 支持 多种编程语言 开发客户端,例如C++, Python和Java
L
LDOUBLEV 已提交
18

L
LDOUBLEV 已提交
19
更多有关PaddleServing服务化部署框架介绍和使用教程参考[文档](https://github.com/PaddlePaddle/Serving/blob/develop/README_CN.md)
L
LDOUBLEV 已提交
20

L
LDOUBLEV 已提交
21 22 23 24 25
## 目录
- [环境准备](#环境准备)
- [模型转换](#模型转换)
- [Paddle Serving pipeline部署](#部署)
- [FAQ](#FAQ)
L
LDOUBLEV 已提交
26

L
LDOUBLEV 已提交
27
<a name="环境准备"></a>
L
LDOUBLEV 已提交
28 29 30 31
## 环境准备

需要准备PaddleOCR的运行环境和Paddle Serving的运行环境。

T
tink2123 已提交
32
- 准备PaddleOCR的运行环境[链接](../../doc/doc_ch/installation.md)
T
tink2123 已提交
33
  根据环境下载对应的paddle whl包,推荐安装2.0.1版本
L
LDOUBLEV 已提交
34

L
LDOUBLEV 已提交
35
- 准备PaddleServing的运行环境,步骤如下
L
LDOUBLEV 已提交
36

L
LDOUBLEV 已提交
37 38
1. 安装serving,用于启动服务
    ```
T
Thomas Young 已提交
39 40
    pip3 install paddle-serving-server==0.6.1 # for CPU
    pip3 install paddle-serving-server-gpu==0.6.1 # for GPU
L
LDOUBLEV 已提交
41
    # 其他GPU环境需要确认环境再选择执行如下命令
T
Thomas Young 已提交
42 43
    pip3 install paddle-serving-server-gpu==0.6.1.post101 # GPU with CUDA10.1 + TensorRT6
    pip3 install paddle-serving-server-gpu==0.6.1.post11 # GPU with CUDA11 + TensorRT7
L
LDOUBLEV 已提交
44
    ```
L
LDOUBLEV 已提交
45 46

2. 安装client,用于向服务发送请求
T
tink2123 已提交
47
[下载链接](https://github.com/PaddlePaddle/Serving/blob/v0.6.3/doc/LATEST_PACKAGES.md)中找到对应python版本的client安装包,这里推荐python3.7版本:
L
LDOUBLEV 已提交
48

T
tink2123 已提交
49
    ```
X
xiaoting 已提交
50
    pip3 install paddle-serving-client==0.6.3
L
LDOUBLEV 已提交
51
    ```
L
LDOUBLEV 已提交
52 53

3. 安装serving-app
L
LDOUBLEV 已提交
54
    ```
X
xiaoting 已提交
55
    pip3 install paddle-serving-app==0.6.3
L
LDOUBLEV 已提交
56 57 58
    ```

<a name="模型转换"></a>
L
LDOUBLEV 已提交
59
## 模型转换
L
LDOUBLEV 已提交
60

L
LDOUBLEV 已提交
61 62 63 64 65
使用PaddleServing做服务化部署时,需要将保存的inference模型转换为serving易于部署的模型。

首先,下载PPOCR的[inference模型](https://github.com/PaddlePaddle/PaddleOCR#pp-ocr-20-series-model-listupdate-on-dec-15)
```
# 下载并解压 OCR 文本检测模型
T
add qps  
tink2123 已提交
66
wget https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_infer.tar && tar xf ch_ppocr_mobile_v2.0_det_infer.tar
L
LDOUBLEV 已提交
67
# 下载并解压 OCR 文本识别模型
T
add qps  
tink2123 已提交
68
wget https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_infer.tar && tar xf ch_ppocr_mobile_v2.0_rec_infer.tar
L
LDOUBLEV 已提交
69 70 71
```

接下来,用安装的paddle_serving_client把下载的inference模型转换成易于server部署的模型格式。
L
LDOUBLEV 已提交
72

L
LDOUBLEV 已提交
73
```
L
LDOUBLEV 已提交
74
# 转换检测模型
T
add qps  
tink2123 已提交
75
python3 -m paddle_serving_client.convert --dirname ./ch_ppocr_mobile_v2.0_det_infer/ \
L
LDOUBLEV 已提交
76 77
                                         --model_filename inference.pdmodel          \
                                         --params_filename inference.pdiparams       \
T
add qps  
tink2123 已提交
78 79
                                         --serving_server ./ppocr_det_mobile_2.0_serving/ \
                                         --serving_client ./ppocr_det_mobile_2.0_client/
L
LDOUBLEV 已提交
80 81

# 转换识别模型
T
add qps  
tink2123 已提交
82
python3 -m paddle_serving_client.convert --dirname ./ch_ppocr_mobile_v2.0_rec_infer/ \
L
LDOUBLEV 已提交
83 84
                                         --model_filename inference.pdmodel          \
                                         --params_filename inference.pdiparams       \
T
add qps  
tink2123 已提交
85 86
                                         --serving_server ./ppocr_rec_mobile_2.0_serving/  \
                                         --serving_client ./ppocr_rec_mobile_2.0_client/
L
LDOUBLEV 已提交
87 88
```

T
add qps  
tink2123 已提交
89
检测模型转换完成后,会在当前文件夹多出`ppocr_det_mobile_2.0_serving``ppocr_det_mobile_2.0_client`的文件夹,具备如下格式:
L
LDOUBLEV 已提交
90
```
T
add qps  
tink2123 已提交
91
|- ppocr_det_mobile_2.0_serving/
L
LDOUBLEV 已提交
92 93 94 95 96
  |- __model__  
  |- __params__
  |- serving_server_conf.prototxt  
  |- serving_server_conf.stream.prototxt

T
add qps  
tink2123 已提交
97
|- ppocr_det_mobile_2.0_client
L
LDOUBLEV 已提交
98 99 100 101 102 103
  |- serving_client_conf.prototxt  
  |- serving_client_conf.stream.prototxt

```
识别模型同理。

L
LDOUBLEV 已提交
104
<a name="部署"></a>
L
LDOUBLEV 已提交
105 106
## Paddle Serving pipeline部署

L
LDOUBLEV 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
1. 下载PaddleOCR代码,若已下载可跳过此步骤
    ```
    git clone https://github.com/PaddlePaddle/PaddleOCR

    # 进入到工作目录
    cd PaddleOCR/deploy/pdserver/
    ```
    pdserver目录包含启动pipeline服务和发送预测请求的代码,包括:
    ```
    __init__.py
    config.yml            # 启动服务的配置文件
    ocr_reader.py         # OCR模型预处理和后处理的代码实现
    pipeline_http_client.py   # 发送pipeline预测请求的脚本
    web_service.py        # 启动pipeline服务端的脚本
    ```

2. 启动服务可运行如下命令:
    ```
    # 启动服务,运行日志保存在log.txt
    python3 web_service.py &>log.txt &
    ```
    成功启动服务后,log.txt中会打印类似如下日志
    ![](./imgs/start_server.png)

3. 发送服务请求:
    ```
    python3 pipeline_http_client.py
    ```
    成功运行后,模型预测的结果会打印在cmd窗口中,结果示例为:
    ![](./imgs/results.png)

T
add qps  
tink2123 已提交
138 139 140 141 142 143 144 145 146 147 148 149 150
    调整 config.yml 中的并发个数获得最大的QPS, 一般检测和识别的并发数为2:1
    ```
    det:
        #并发数,is_thread_op=True时,为线程并发;否则为进程并发
        concurrency: 8
        ...
    rec:
        #并发数,is_thread_op=True时,为线程并发;否则为进程并发
        concurrency: 4
        ...
    ```
    有需要的话可以同时发送多个服务请求

T
add qps  
tink2123 已提交
151 152
    预测性能数据会被自动写入 `PipelineServingLogs/pipeline.tracer` 文件中。

T
add qps  
tink2123 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
    在200张真实图片上测试,把检测长边限制为960。T4 GPU 上 QPS 均值可达到23左右:

    ```
    2021-05-13 03:42:36,895 ==================== TRACER ======================
    2021-05-13 03:42:36,975 Op(rec):
    2021-05-13 03:42:36,976         in[14.472382882882883 ms]
    2021-05-13 03:42:36,976         prep[9.556855855855856 ms]
    2021-05-13 03:42:36,976         midp[59.921905405405404 ms]
    2021-05-13 03:42:36,976         postp[15.345945945945946 ms]
    2021-05-13 03:42:36,976         out[1.9921216216216215 ms]
    2021-05-13 03:42:36,976         idle[0.16254943864471572]
    2021-05-13 03:42:36,976 Op(det):
    2021-05-13 03:42:36,976         in[315.4468035714286 ms]
    2021-05-13 03:42:36,976         prep[69.5980625 ms]
    2021-05-13 03:42:36,976         midp[18.989535714285715 ms]
    2021-05-13 03:42:36,976         postp[18.857803571428573 ms]
    2021-05-13 03:42:36,977         out[3.1337544642857145 ms]
    2021-05-13 03:42:36,977         idle[0.7477961159203756]
    2021-05-13 03:42:36,977 DAGExecutor:
    2021-05-13 03:42:36,977         Query count[224]
    2021-05-13 03:42:36,977         QPS[22.4 q/s]
    2021-05-13 03:42:36,977         Succ[0.9910714285714286]
    2021-05-13 03:42:36,977         Error req[169, 170]
    2021-05-13 03:42:36,977         Latency:
    2021-05-13 03:42:36,977                 ave[535.1678348214285 ms]
    2021-05-13 03:42:36,977                 .50[172.651 ms]
    2021-05-13 03:42:36,977                 .60[187.904 ms]
    2021-05-13 03:42:36,977                 .70[245.675 ms]
    2021-05-13 03:42:36,977                 .80[526.684 ms]
    2021-05-13 03:42:36,977                 .90[854.596 ms]
    2021-05-13 03:42:36,977                 .95[1722.728 ms]
    2021-05-13 03:42:36,977                 .99[3990.292 ms]
    2021-05-13 03:42:36,978 Channel (server worker num[10]):
    2021-05-13 03:42:36,978         chl0(In: ['@DAGExecutor'], Out: ['det']) size[0/0]
    2021-05-13 03:42:36,979         chl1(In: ['det'], Out: ['rec']) size[6/0]
    2021-05-13 03:42:36,979         chl2(In: ['rec'], Out: ['@DAGExecutor']) size[0/0]
T
add qps  
tink2123 已提交
189
    ```
L
LDOUBLEV 已提交
190

B
win doc  
bjjwwang 已提交
191 192
## WINDOWS用户

T
tink2123 已提交
193
Windows用户不能使用上述的启动方式,需要使用Web Service,详情参见[Windows平台使用Paddle Serving指导](https://github.com/PaddlePaddle/Serving/blob/v0.6.3/doc/WINDOWS_TUTORIAL_CN.md)
B
win doc  
bjjwwang 已提交
194

B
bjjwwang 已提交
195 196 197 198
**WINDOWS只能使用0.5.0版本的CPU模式**

准备阶段:
```
B
bjjwwang 已提交
199
pip3 install paddle-serving-server==0.5.0
B
bjjwwang 已提交
200 201
pip3 install paddle-serving-app==0.3.1
```
B
win doc  
bjjwwang 已提交
202 203 204 205

1. 启动服务端程序

```
T
tink2123 已提交
206
cd win
T
Thomas Young 已提交
207 208
python3 ocr_web_server.py gpu(使用gpu方式)
或者
T
fix doc  
Thomas Young 已提交
209
python3 ocr_web_server.py cpu(使用cpu方式)
B
win doc  
bjjwwang 已提交
210 211 212 213 214 215 216
```

2. 发送服务请求

```
python3 ocr_web_client.py
```
T
add qps  
tink2123 已提交
217 218


L
LDOUBLEV 已提交
219
<a name="FAQ"></a>
L
LDOUBLEV 已提交
220
## FAQ
M
MissPenguin 已提交
221
**Q1**: 发送请求后没有结果返回或者提示输出解码报错
L
LDOUBLEV 已提交
222

M
MissPenguin 已提交
223
**A1**: 启动服务和发送请求时不要设置代理,可以在启动服务前和发送请求前关闭代理,关闭代理的命令是:
L
LDOUBLEV 已提交
224 225 226 227
```
unset https_proxy
unset http_proxy
```