mirror of
https://github.com/PaddlePaddle/PaddleOCR.git
synced 2025-06-03 21:53:39 +08:00
refine server readme
This commit is contained in:
parent
90c3304c0b
commit
7ec717544c
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
(English|[简体中文](./README_CN.md))
|
(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 **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.
|
- Based on **PaddleServing**: Code path is "`./deploy/pdserving`". Please follow this tutorial.
|
||||||
|
|
||||||
@ -27,11 +27,11 @@ The introduction and tutorial of Paddle Serving service deployment framework ref
|
|||||||
<a name="environmental-preparation"></a>
|
<a name="environmental-preparation"></a>
|
||||||
## Environmental preparation
|
## 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
|
Install serving which used to start the service
|
||||||
```
|
```
|
||||||
@ -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
|
# 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
|
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
|
# Detection model conversion
|
||||||
python3 -m paddle_serving_client.convert --dirname ./ch_ppocr_server_v2.0_det_infer/ \
|
python3 -m paddle_serving_client.convert --dirname ./ch_ppocr_server_v2.0_det_infer/ \
|
||||||
--model_filename inference.pdmodel \
|
--model_filename inference.pdmodel \
|
||||||
|
@ -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
|
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 文本识别模型
|
# 下载并解压 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
|
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/ \
|
python3 -m paddle_serving_client.convert --dirname ./ch_ppocr_server_v2.0_det_infer/ \
|
||||||
--model_filename inference.pdmodel \
|
--model_filename inference.pdmodel \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user