paddle_serving_deploy.md 11.6 KB
Newer Older
S
sibo2rr 已提交
1 2
# 模型服务化部署
--------
S
sibo2rr 已提交
3
## 目录
S
sibo2rr 已提交
4 5 6 7 8
- [1. 简介](#1)
- [2. Serving 安装](#2)
- [3. 图像分类服务部署](#3)
    - [3.1 模型转换](#3.1)
    - [3.2 服务部署和请求](#3.2)
S
stephon 已提交
9 10
        - [3.2.1 Python Serving](#3.2.1)
        - [3.2.2 C++ Serving](#3.2.2)
S
sibo2rr 已提交
11 12 13
- [4. 图像识别服务部署](#4)
  - [4.1 模型转换](#4.1)
  - [4.2 服务部署和请求](#4.2)
B
Bin Lu 已提交
14 15
       - [4.2.1 Python Serving](#4.2.1)
       - [4.2.2 C++ Serving](#4.2.2)
S
sibo2rr 已提交
16 17 18
- [5. FAQ](#5)

<a name="1"></a>
19 20 21
## 1. 简介
[Paddle Serving](https://github.com/PaddlePaddle/Serving) 旨在帮助深度学习开发者轻松部署在线预测服务,支持一键部署工业级的服务能力、客户端和服务端之间高并发和高效通信、并支持多种编程语言开发客户端。

B
Bin Lu 已提交
22
该部分以 HTTP 预测服务部署为例,介绍怎样在 PaddleClas 中使用 PaddleServing 部署模型服务。目前只支持 Linux 平台部署,暂不支持 Windows 平台。
23

S
sibo2rr 已提交
24 25
<a name="2"></a>
## 2. Serving 安装
26 27 28
Serving 官网推荐使用 docker 安装并部署 Serving 环境。首先需要拉取 docker 环境并创建基于 Serving 的 docker。

```shell
S
stephon 已提交
29
# 启动GPU docker
S
stephon 已提交
30 31
docker pull paddlepaddle/serving:0.7.0-cuda10.2-cudnn7-devel
nvidia-docker run -p 9292:9292 --name test -dit paddlepaddle/serving:0.7.0-cuda10.2-cudnn7-devel bash
32
nvidia-docker exec -it test bash
S
stephon 已提交
33 34 35 36 37

# 启动CPU docker
docker pull paddlepaddle/serving:0.7.0-devel
docker run -p 9292:9292 --name test -dit paddlepaddle/serving:0.7.0-devel bash
docker exec -it test bash
38 39 40 41
```

进入 docker 后,需要安装 Serving 相关的 python 包。
```shell
S
stephon 已提交
42 43
pip3 install paddle-serving-client==0.7.0
pip3 install paddle-serving-app==0.7.0
B
Bin Lu 已提交
44
pip3 install faiss-cpu==1.7.1post2
S
stephon 已提交
45 46 47 48 49 50 51 52 53 54

#若为CPU部署环境:
pip3 install paddle-serving-server==0.7.0 # CPU
pip3 install paddlepaddle==2.2.0          # CPU

#若为GPU部署环境
pip3 install paddle-serving-server-gpu==0.7.0.post102 # GPU with CUDA10.2 + TensorRT6
pip3 install paddlepaddle-gpu==2.2.0     # GPU with CUDA10.2

#其他GPU环境需要确认环境再选择执行哪一条
S
stephon 已提交
55 56
pip3 install paddle-serving-server-gpu==0.7.0.post101 # GPU with CUDA10.1 + TensorRT6
pip3 install paddle-serving-server-gpu==0.7.0.post112 # GPU with CUDA11.2 + TensorRT8
57 58 59
```

* 如果安装速度太慢,可以通过 `-i https://pypi.tuna.tsinghua.edu.cn/simple` 更换源,加速安装过程。
S
stephon 已提交
60
* 其他环境配置安装请参考: [使用Docker安装Paddle Serving](https://github.com/PaddlePaddle/Serving/blob/v0.7.0/doc/Install_CN.md)
61

S
sibo2rr 已提交
62
<a name="3"></a>
W
Wu Sibo 已提交
63

S
stephon 已提交
64
## 3. 图像分类服务部署
S
sibo2rr 已提交
65
<a name="3.1"></a>
S
stephon 已提交
66
### 3.1 模型转换
S
sibo2rr 已提交
67
使用 PaddleServing 做服务化部署时,需要将保存的 inference 模型转换为 Serving 模型。下面以经典的 ResNet50_vd 模型为例,介绍如何部署图像分类服务。
B
Bin Lu 已提交
68
- 进入工作目录:
69
```shell
S
stephon 已提交
70
cd deploy/paddleserving
71
```
S
sibo2rr 已提交
72
- 下载 ResNet50_vd 的 inference 模型:
73
```shell
S
sibo2rr 已提交
74
# 下载并解压 ResNet50_vd 模型
S
stephon 已提交
75
wget https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/inference/ResNet50_vd_infer.tar && tar xf ResNet50_vd_infer.tar
76
```
S
sibo2rr 已提交
77
- 用 paddle_serving_client 把下载的 inference 模型转换成易于 Server 部署的模型格式:
S
stephon 已提交
78
```
S
sibo2rr 已提交
79
# 转换 ResNet50_vd 模型
S
stephon 已提交
80 81 82 83 84 85
python3 -m paddle_serving_client.convert --dirname ./ResNet50_vd_infer/ \
                                         --model_filename inference.pdmodel  \
                                         --params_filename inference.pdiparams \
                                         --serving_server ./ResNet50_vd_serving/ \
                                         --serving_client ./ResNet50_vd_client/
```
S
sibo2rr 已提交
86
ResNet50_vd 推理模型转换完成后,会在当前文件夹多出 `ResNet50_vd_serving``ResNet50_vd_client` 的文件夹,具备如下格式:
S
stephon 已提交
87
```
L
lubin 已提交
88
|- ResNet50_vd_serving/
S
stephon 已提交
89 90
  |- inference.pdiparams
  |- inference.pdmodel
S
stephon 已提交
91 92 93 94 95 96
  |- serving_server_conf.prototxt  
  |- serving_server_conf.stream.prototxt
|- ResNet50_vd_client
  |- serving_client_conf.prototxt  
  |- serving_client_conf.stream.prototxt
```
L
lubin 已提交
97
得到模型文件之后,需要分别修改 `ResNet50_vd_serving``ResNet50_vd_client` 下文件 `serving_server_conf.prototxt` 中的 alias 名字:将 `fetch_var` 中的 `alias_name` 改为 `prediction`
B
Bin Lu 已提交
98

S
sibo2rr 已提交
99 100
**备注**:  Serving 为了兼容不同模型的部署,提供了输入输出重命名的功能。这样,不同的模型在推理部署时,只需要修改配置文件的 alias_name 即可,无需修改代码即可完成推理部署。
修改后的 serving_server_conf.prototxt 如下所示:
S
stephon 已提交
101 102 103
```
feed_var {
  name: "inputs"
S
stephon 已提交
104
  alias_name: "inputs"
S
stephon 已提交
105 106 107 108 109 110 111 112 113
  is_lod_tensor: false
  feed_type: 1
  shape: 3
  shape: 224
  shape: 224
}
fetch_var {
  name: "save_infer_model/scale_0.tmp_1"
  alias_name: "prediction"
S
stephon 已提交
114
  is_lod_tensor: false
S
stephon 已提交
115
  fetch_type: 1
S
stephon 已提交
116
  shape: 1000
S
stephon 已提交
117 118
}
```
S
sibo2rr 已提交
119
<a name="3.2"></a>
S
stephon 已提交
120
### 3.2 服务部署和请求
S
stephon 已提交
121
paddleserving 目录包含了启动 pipeline 服务、C++ serving服务和发送预测请求的代码,包括:
S
stephon 已提交
122 123
```shell
__init__.py
S
stephon 已提交
124
config.yml                 # 启动pipeline服务的配置文件
S
stephon 已提交
125 126 127
pipeline_http_client.py    # http方式发送pipeline预测请求的脚本
pipeline_rpc_client.py     # rpc方式发送pipeline预测请求的脚本
classification_web_service.py    # 启动pipeline服务端的脚本
S
stephon 已提交
128 129
run_cpp_serving.sh         # 启动C++ Serving部署的脚本
test_cpp_serving_client.py # rpc方式发送C++ serving预测请求的脚本
130
```
S
stephon 已提交
131 132
<a name="3.2.1"></a>
#### 3.2.1 Python Serving
S
stephon 已提交
133 134
- 启动服务:
```shell
S
sibo2rr 已提交
135
# 启动服务,运行日志保存在 log.txt
S
stephon 已提交
136 137
python3 classification_web_service.py &>log.txt &
```
B
Bin Lu 已提交
138

B
Bin Lu 已提交
139
- 发送请求:
S
stephon 已提交
140 141 142
```shell
# 发送服务请求
python3 pipeline_http_client.py
143
```
S
stephon 已提交
144 145 146 147
成功运行后,模型预测的结果会打印在 cmd 窗口中,结果如下:
```
{'err_no': 0, 'err_msg': '', 'key': ['label', 'prob'], 'value': ["['daisy']", '[0.9341402053833008]'], 'tensors': []}
```
148

S
stephon 已提交
149 150 151 152 153 154 155 156 157 158 159 160 161
<a name="3.2.2"></a>
#### 3.2.2 C++ Serving
- 启动服务:
```shell
# 启动服务, 服务在后台运行,运行日志保存在 nohup.txt
sh run_cpp_serving.sh
```

- 发送请求:
```shell
# 发送服务请求
python3 test_cpp_serving_client.py
```
S
stephon 已提交
162 163 164 165
成功运行后,模型预测的结果会打印在 cmd 窗口中,结果如下:
```
prediction: daisy, probability: 0.9341399073600769
```
166

S
sibo2rr 已提交
167
<a name="4"></a>
B
Bin Lu 已提交
168
## 4.图像识别服务部署
S
sibo2rr 已提交
169 170
使用 PaddleServing 做服务化部署时,需要将保存的 inference 模型转换为 Serving 模型。 下面以 PP-ShiTu 中的超轻量图像识别模型为例,介绍图像识别服务的部署。
<a name="4.1"></a>
B
Bin Lu 已提交
171
## 4.1 模型转换
S
sibo2rr 已提交
172
- 下载通用检测 inference 模型和通用识别 inference 模型
B
Bin Lu 已提交
173 174
```
cd deploy
B
Bin Lu 已提交
175
# 下载并解压通用识别模型
B
Bin Lu 已提交
176 177 178
wget -P models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/rec/models/inference/general_PPLCNet_x2_5_lite_v1.0_infer.tar
cd models
tar -xf general_PPLCNet_x2_5_lite_v1.0_infer.tar
B
Bin Lu 已提交
179
# 下载并解压通用检测模型
B
Bin Lu 已提交
180 181 182
wget https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/rec/models/inference/picodet_PPLCNet_x2_5_mainbody_lite_v1.0_infer.tar
tar -xf picodet_PPLCNet_x2_5_mainbody_lite_v1.0_infer.tar
```
S
sibo2rr 已提交
183
- 转换识别 inference 模型为 Serving 模型:
B
Bin Lu 已提交
184
```
B
Bin Lu 已提交
185
# 转换识别模型
B
Bin Lu 已提交
186 187 188 189 190 191
python3 -m paddle_serving_client.convert --dirname ./general_PPLCNet_x2_5_lite_v1.0_infer/ \
                                         --model_filename inference.pdmodel  \
                                         --params_filename inference.pdiparams \
                                         --serving_server ./general_PPLCNet_x2_5_lite_v1.0_serving/ \
                                         --serving_client ./general_PPLCNet_x2_5_lite_v1.0_client/
```
L
lubin 已提交
192
识别推理模型转换完成后,会在当前文件夹多出 `general_PPLCNet_x2_5_lite_v1.0_serving/``general_PPLCNet_x2_5_lite_v1.0_client/` 的文件夹。分别修改 `general_PPLCNet_x2_5_lite_v1.0_serving/``general_PPLCNet_x2_5_lite_v1.0_client/` 目录下的 serving_server_conf.prototxt 中的 alias 名字: 将 `fetch_var` 中的 `alias_name` 改为 `features`
S
sibo2rr 已提交
193
修改后的 serving_server_conf.prototxt 内容如下:
B
Bin Lu 已提交
194 195 196 197 198 199 200 201 202 203 204 205 206
```
feed_var {
  name: "x"
  alias_name: "x"
  is_lod_tensor: false
  feed_type: 1
  shape: 3
  shape: 224
  shape: 224
}
fetch_var {
  name: "save_infer_model/scale_0.tmp_1"
  alias_name: "features"
S
stephon 已提交
207
  is_lod_tensor: false
B
Bin Lu 已提交
208
  fetch_type: 1
S
stephon 已提交
209
  shape: 512
B
Bin Lu 已提交
210 211
}
```
S
sibo2rr 已提交
212
- 转换通用检测 inference 模型为 Serving 模型:
B
Bin Lu 已提交
213 214 215 216 217 218 219 220
```
# 转换通用检测模型
python3 -m paddle_serving_client.convert --dirname ./picodet_PPLCNet_x2_5_mainbody_lite_v1.0_infer/ \
                                         --model_filename inference.pdmodel  \
                                         --params_filename inference.pdiparams \
                                         --serving_server ./picodet_PPLCNet_x2_5_mainbody_lite_v1.0_serving/ \
                                         --serving_client ./picodet_PPLCNet_x2_5_mainbody_lite_v1.0_client/
```
221
检测 inference 模型转换完成后,会在当前文件夹多出 `picodet_PPLCNet_x2_5_mainbody_lite_v1.0_serving/``picodet_PPLCNet_x2_5_mainbody_lite_v1.0_client/` 的文件夹。
B
Bin Lu 已提交
222

223
**注意:** 此处不需要修改 `picodet_PPLCNet_x2_5_mainbody_lite_v1.0_serving/` 目录下的 serving_server_conf.prototxt 中的 alias 名字。
B
Bin Lu 已提交
224

S
sibo2rr 已提交
225
- 下载并解压已经构建后的检索库 index
B
Bin Lu 已提交
226 227 228 229
```
cd ../
wget https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/rec/data/drink_dataset_v1.0.tar && tar -xf drink_dataset_v1.0.tar
```
S
sibo2rr 已提交
230
<a name="4.2"></a>
B
Bin Lu 已提交
231
## 4.2 服务部署和请求
S
sibo2rr 已提交
232
**注意:** 识别服务涉及到多个模型,出于性能考虑采用 PipeLine 部署方式。Pipeline 部署方式当前不支持 windows 平台。
B
Bin Lu 已提交
233 234 235 236
- 进入到工作目录
```shell
cd ./deploy/paddleserving/recognition
```
S
stephon 已提交
237
paddleserving 目录包含启动 Python Pipeline 服务、C++ Serving 服务和发送预测请求的代码,包括:
B
Bin Lu 已提交
238 239
```
__init__.py
S
stephon 已提交
240
config.yml                    # 启动python pipeline服务的配置文件
B
Bin Lu 已提交
241 242 243
pipeline_http_client.py       # http方式发送pipeline预测请求的脚本
pipeline_rpc_client.py        # rpc方式发送pipeline预测请求的脚本
recognition_web_service.py    # 启动pipeline服务端的脚本
S
stephon 已提交
244 245
run_cpp_serving.sh            # 启动C++ Pipeline Serving部署的脚本
test_cpp_serving_client.py    # rpc方式发送C++ Pipeline serving预测请求的脚本
B
Bin Lu 已提交
246
```
S
stephon 已提交
247 248 249

<a name="4.2.1"></a>
#### 4.2.1 Python Serving
B
Bin Lu 已提交
250 251
- 启动服务:
```
S
sibo2rr 已提交
252
# 启动服务,运行日志保存在 log.txt
B
Bin Lu 已提交
253 254 255 256 257 258 259
python3 recognition_web_service.py &>log.txt &
```

- 发送请求:
```
python3 pipeline_http_client.py
```
S
stephon 已提交
260 261 262 263
成功运行后,模型预测的结果会打印在 cmd 窗口中,结果如下:
```
{'err_no': 0, 'err_msg': '', 'key': ['result'], 'value': ["[{'bbox': [345, 95, 524, 576], 'rec_docs': '红牛-强化型', 'rec_scores': 0.79903316}]"], 'tensors': []}
```
B
Bin Lu 已提交
264

S
stephon 已提交
265 266 267 268 269 270 271 272 273 274 275 276 277 278
<a name="4.2.2"></a>
#### 4.2.2 C++ Serving
- 启动服务:
```shell
# 启动服务: 此处会在后台同时启动主体检测和特征提取服务,端口号分别为9293和9294;
# 运行日志分别保存在 log_mainbody_detection.txt 和 log_feature_extraction.txt中
sh run_cpp_serving.sh
```

- 发送请求:
```shell
# 发送服务请求
python3 test_cpp_serving_client.py
```
S
stephon 已提交
279 280 281 282
成功运行后,模型预测的结果会打印在 cmd 窗口中,结果如下所示:
```
[{'bbox': [345, 95, 524, 586], 'rec_docs': '红牛-强化型', 'rec_scores': 0.8016462}]
```
B
Bin Lu 已提交
283

S
sibo2rr 已提交
284
<a name="5"></a>
B
Bin Lu 已提交
285 286 287 288 289 290 291 292 293
## 5.FAQ
**Q1**: 发送请求后没有结果返回或者提示输出解码报错

**A1**: 启动服务和发送请求时不要设置代理,可以在启动服务前和发送请求前关闭代理,关闭代理的命令是:
```
unset https_proxy
unset http_proxy
```

S
stephon 已提交
294
更多的服务部署类型,如 `RPC 预测服务` 等,可以参考 Serving 的[github 官网](https://github.com/PaddlePaddle/Serving/tree/v0.7.0/examples)