Skip to content

Commit

Permalink
refine server readme
Browse files Browse the repository at this point in the history
  • Loading branch information
LDOUBLEV committed Mar 24, 2021
1 parent 90c3304 commit 7ec7175
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
11 changes: 7 additions & 4 deletions deploy/pdserving/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

PaddleOCR provides 2 service deployment methods:
PaddleOCR provides two service deployment methods:
- 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.

Expand All @@ -27,11 +27,11 @@ The introduction and tutorial of Paddle Serving service deployment framework ref
<a name="environmental-preparation"></a>
## Environmental preparation

Need to prepare PaddleOCR operating environment and Paddle Serving operating environment.
PaddleOCR operating environment and Paddle Serving operating environment are needed.

1. Prepare PaddleOCR operating environment reference [link](../../doc/doc_ch/installation.md).
1. Please prepare PaddleOCR operating environment reference [link](../../doc/doc_ch/installation.md).

2. Prepare the operating environment of PaddleServing, the steps are as follows
2. The steps of PaddleServing operating environment prepare are as follows:

Install serving which used to start the service
```
Expand Down Expand Up @@ -78,6 +78,9 @@ wget https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_in
# Download and unzip the OCR text recognition model
wget https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_infer.tar && tar xf ch_ppocr_server_v2.0_rec_infer.tar
```
Then, you can use installed paddle_serving_client tool to convert inference model to server model.
```
# Detection model conversion
python3 -m paddle_serving_client.convert --dirname ./ch_ppocr_server_v2.0_det_infer/ \
--model_filename inference.pdmodel \
Expand Down
4 changes: 4 additions & 0 deletions deploy/pdserving/README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,11 @@ PaddleOCR提供2种服务部署方式:
wget https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_det_infer.tar && tar xf ch_ppocr_server_v2.0_det_infer.tar
# 下载并解压 OCR 文本识别模型
wget https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_server_v2.0_rec_infer.tar && tar xf ch_ppocr_server_v2.0_rec_infer.tar
```

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

```
# 转换检测模型
python3 -m paddle_serving_client.convert --dirname ./ch_ppocr_server_v2.0_det_infer/ \
--model_filename inference.pdmodel \
Expand Down

0 comments on commit 7ec7175

Please sign in to comment.