README.md 9.5 KB
Newer Older
L
LDOUBLEV 已提交
1 2 3 4
# OCR Pipeline WebService

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

L
LDOUBLEV 已提交
5
PaddleOCR provides two service deployment methods:
L
LDOUBLEV 已提交
6 7
- Based on **PaddleHub Serving**: Code path is "`./deploy/hubserving`". Please refer to the [tutorial](../../deploy/hubserving/readme_en.md)
- Based on **PaddleServing**: Code path is "`./deploy/pdserving`". Please follow this tutorial.
L
LDOUBLEV 已提交
8

L
LDOUBLEV 已提交
9 10 11 12 13 14 15 16 17 18
# Service deployment based on PaddleServing  

This document will introduce how to use the [PaddleServing](https://github.com/PaddlePaddle/Serving/blob/develop/README.md) to deploy the PPOCR dynamic graph model as a pipeline online service.

Some Key Features of Paddle Serving:
- Integrate with Paddle training pipeline seamlessly, most paddle models can be deployed with one line command.
- Industrial serving features supported, such as models management, online loading, online A/B testing etc.
- Highly concurrent and efficient communication between clients and servers supported.

The introduction and tutorial of Paddle Serving service deployment framework reference [document](https://github.com/PaddlePaddle/Serving/blob/develop/README.md).
L
LDOUBLEV 已提交
19 20 21


## Contents
L
LDOUBLEV 已提交
22 23 24 25
- [Environmental preparation](#environmental-preparation)
- [Model conversion](#model-conversion)
- [Paddle Serving pipeline deployment](#paddle-serving-pipeline-deployment)
- [FAQ](#faq)
L
LDOUBLEV 已提交
26

L
LDOUBLEV 已提交
27
<a name="environmental-preparation"></a>
L
LDOUBLEV 已提交
28 29
## Environmental preparation

L
LDOUBLEV 已提交
30
PaddleOCR operating environment and Paddle Serving operating environment are needed.
L
LDOUBLEV 已提交
31

L
LDOUBLEV 已提交
32
1. Please prepare PaddleOCR operating environment reference [link](../../doc/doc_ch/installation.md).
T
tink2123 已提交
33 34
   Download the corresponding paddle whl package according to the environment, it is recommended to install version 2.0.1.

L
LDOUBLEV 已提交
35

L
LDOUBLEV 已提交
36
2. The steps of PaddleServing operating environment prepare are as follows:
L
LDOUBLEV 已提交
37

L
LDOUBLEV 已提交
38 39
    Install serving which used to start the service
    ```
T
Thomas Young 已提交
40 41
    pip3 install paddle-serving-server==0.6.1 # for CPU
    pip3 install paddle-serving-server-gpu==0.6.1 # for GPU
L
LDOUBLEV 已提交
42
    # Other GPU environments need to confirm the environment and then choose to execute the following commands
T
Thomas Young 已提交
43 44
    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 已提交
45 46 47
    ```

3. Install the client to send requests to the service
T
tink2123 已提交
48
    In [download link](https://github.com/PaddlePaddle/Serving/blob/v0.6.3/doc/LATEST_PACKAGES.md) find the client installation package corresponding to the python version.
T
tink2123 已提交
49
    The python3.7 version is recommended here:
L
LDOUBLEV 已提交
50

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

4. Install serving-app
    ```
X
xiaoting 已提交
57
    pip3 install paddle-serving-app==0.6.3
L
LDOUBLEV 已提交
58 59 60 61
    ```


<a name="model-conversion"></a>
L
LDOUBLEV 已提交
62 63 64
## Model conversion
When using PaddleServing for service deployment, you need to convert the saved inference model into a serving model that is easy to deploy.

L
LDOUBLEV 已提交
65
Firstly, download the [inference model](https://github.com/PaddlePaddle/PaddleOCR#pp-ocr-20-series-model-listupdate-on-dec-15) of PPOCR
L
LDOUBLEV 已提交
66 67
```
# Download and unzip the OCR text detection model
T
add qps  
tink2123 已提交
68
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 已提交
69
# Download and unzip the OCR text recognition model
T
add qps  
tink2123 已提交
70
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 已提交
71

L
LDOUBLEV 已提交
72
```
T
add qps  
tink2123 已提交
73
Then, you can use installed paddle_serving_client tool to convert inference model to mobile model.
L
LDOUBLEV 已提交
74
```
L
LDOUBLEV 已提交
75
#  Detection model conversion
T
add qps  
tink2123 已提交
76
python3 -m paddle_serving_client.convert --dirname ./ch_ppocr_mobile_v2.0_det_infer/ \
L
LDOUBLEV 已提交
77 78
                                         --model_filename inference.pdmodel          \
                                         --params_filename inference.pdiparams       \
T
add qps  
tink2123 已提交
79 80
                                         --serving_server ./ppocr_det_mobile_2.0_serving/ \
                                         --serving_client ./ppocr_det_mobile_2.0_client/
L
LDOUBLEV 已提交
81

L
LDOUBLEV 已提交
82
#  Recognition model conversion
T
add qps  
tink2123 已提交
83
python3 -m paddle_serving_client.convert --dirname ./ch_ppocr_mobile_v2.0_rec_infer/ \
L
LDOUBLEV 已提交
84 85
                                         --model_filename inference.pdmodel          \
                                         --params_filename inference.pdiparams       \
T
add qps  
tink2123 已提交
86 87
                                         --serving_server ./ppocr_rec_mobile_2.0_serving/  \
                                         --serving_client ./ppocr_rec_mobile_2.0_client/
L
LDOUBLEV 已提交
88 89 90

```

T
add qps  
tink2123 已提交
91
After the detection model is converted, there will be additional folders of `ppocr_det_mobile_2.0_serving` and `ppocr_det_mobile_2.0_client` in the current folder, with the following format:
L
LDOUBLEV 已提交
92
```
T
add qps  
tink2123 已提交
93
|- ppocr_det_mobile_2.0_serving/
L
LDOUBLEV 已提交
94 95 96 97 98
   |- __model__
   |- __params__
   |- serving_server_conf.prototxt
   |- serving_server_conf.stream.prototxt

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

```
The recognition model is the same.

L
LDOUBLEV 已提交
106
<a name="paddle-serving-pipeline-deployment"></a>
L
LDOUBLEV 已提交
107 108 109
## Paddle Serving pipeline deployment

1. Download the PaddleOCR code, if you have already downloaded it, you can skip this step.
L
LDOUBLEV 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
    ```
    git clone https://github.com/PaddlePaddle/PaddleOCR

    # Enter the working directory  
    cd PaddleOCR/deploy/pdserver/
    ```

    The pdserver directory contains the code to start the pipeline service and send prediction requests, including:
    ```
    __init__.py
    config.yml # Start the service configuration file
    ocr_reader.py # OCR model pre-processing and post-processing code implementation
    pipeline_http_client.py # Script to send pipeline prediction request
    web_service.py # Start the script of the pipeline server
    ```
L
LDOUBLEV 已提交
125 126

2. Run the following command to start the service.
L
LDOUBLEV 已提交
127 128 129 130 131 132
    ```
    # Start the service and save the running log in log.txt
    python3 web_service.py &>log.txt &
    ```
    After the service is successfully started, a log similar to the following will be printed in log.txt
    ![](./imgs/start_server.png)
L
LDOUBLEV 已提交
133 134

3. Send service request
L
LDOUBLEV 已提交
135 136 137 138 139
    ```
    python3 pipeline_http_client.py
    ```
    After successfully running, the predicted result of the model will be printed in the cmd window. An example of the result is:
    ![](./imgs/results.png)  
L
LDOUBLEV 已提交
140

T
add qps  
tink2123 已提交
141 142 143 144 145 146 147 148 149 150 151 152 153
    Adjust the number of concurrency in config.yml to get the largest QPS. Generally, the number of concurrent detection and recognition is 2:1

    ```
    det:
        concurrency: 8
        ...
    rec:
        concurrency: 4
        ...
    ```

    Multiple service requests can be sent at the same time if necessary.

T
add qps  
tink2123 已提交
154 155
    The predicted performance data will be automatically written into the `PipelineServingLogs/pipeline.tracer` file.

T
add qps  
tink2123 已提交
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 189 190 191 192
    Tested on 200 real pictures, and limited the detection long side to 960. The average QPS on T4 GPU can reach around 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 已提交
193 194
    ```

B
win doc  
bjjwwang 已提交
195 196
## WINDOWS Users

T
tink2123 已提交
197
Windows does not support Pipeline Serving, if we want to lauch paddle serving on Windows, we should use Web Service, for more infomation please refer to [Paddle Serving for Windows Users](https://github.com/PaddlePaddle/Serving/blob/v0.6.3/doc/WINDOWS_TUTORIAL.md)
B
win doc  
bjjwwang 已提交
198 199


B
bjjwwang 已提交
200 201 202 203 204
**WINDOWS user can only use version 0.5.0 CPU Mode**

**Prepare Stage:**

```
B
bjjwwang 已提交
205
pip3 install paddle-serving-server==0.5.0
B
bjjwwang 已提交
206 207 208
pip3 install paddle-serving-app==0.3.1
```

B
win doc  
bjjwwang 已提交
209 210 211 212
1. Start Server

```
cd win
T
Thomas Young 已提交
213 214 215
python3 ocr_web_server.py gpu(for gpu user)
or
python3 ocr_web_server.py cpu(for cpu user)
B
win doc  
bjjwwang 已提交
216 217 218 219 220 221 222
```

2. Client Send Requests

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

L
LDOUBLEV 已提交
224
<a name="faq"></a>
L
LDOUBLEV 已提交
225
## FAQ
M
MissPenguin 已提交
226
**Q1**: No result return after sending the request.
L
LDOUBLEV 已提交
227

M
MissPenguin 已提交
228
**A1**: Do not set the proxy when starting the service and sending the request. You can close the proxy before starting the service and before sending the request. The command to close the proxy is:
L
LDOUBLEV 已提交
229 230 231 232
```
unset https_proxy
unset http_proxy
```