whl_deploy.md 9.0 KB
Newer Older
1 2 3 4 5 6
# PaddleClas Whl 使用说明

PaddleClas 支持 Python Whl 包方式进行预测,目前 Whl 包方式仅支持图像分类,暂不支持主体检测、特征提取及向量检索。

---

C
cuicheng01 已提交
7 8
## 目录

S
sibo2rr 已提交
9 10 11 12
- [1. 安装 paddleclas](#1)
- [2. 快速开始](#2)
- [3. 参数解释](#3)
- [4. 使用示例](#4)
C
cuicheng01 已提交
13
   - [4.1 查看帮助信息](#4.1)
S
sibo2rr 已提交
14
   - [4.2 使用 PaddleClas 提供的预训练模型进行预测](#4.2)
C
cuicheng01 已提交
15 16 17
   - [4.3 使用本地模型文件预测](#4.3)
   - [4.4 批量预测](#4.4)
   - [4.5 对网络图片进行预测](#4.5)
18
   - [4.6 对 `NumPy.ndarray` 格式数据进行预测](#4.6)
C
cuicheng01 已提交
19
   - [4.7 保存预测结果](#4.7)
S
sibo2rr 已提交
20
   - [4.8 指定 label name](#4.8)
C
cuicheng01 已提交
21
   
S
sibo2rr 已提交
22

C
cuicheng01 已提交
23
<a name="1"></a>
S
sibo2rr 已提交
24
## 1. 安装 paddleclas
25

S
sibo2rr 已提交
26
* pip 安装
27 28 29 30 31 32 33 34 35 36 37 38

```bash
pip3 install paddleclas==2.2.1
```

* 本地构建并安装

```bash
python3 setup.py bdist_wheel
pip3 install dist/*
```

C
cuicheng01 已提交
39
<a name="2"></a>
S
sibo2rr 已提交
40
## 2. 快速开始
41
* 使用 `ResNet50` 模型,以下图(`PaddleClas/docs/images/inference_deployment/whl_demo.jpg`)为例进行说明。
42

S
sibo2rr 已提交
43
![](../../images/inference_deployment/whl_demo.jpg)
44 45


S
sibo2rr 已提交
46
* 在 Python 代码中使用
47 48 49
```python
from paddleclas import PaddleClas
clas = PaddleClas(model_name='ResNet50')
G
gaotingquan 已提交
50
infer_imgs='docs/images/inference_deployment/whl_demo.jpg'
51 52 53 54 55 56 57 58 59 60 61 62 63
result=clas.predict(infer_imgs)
print(next(result))
```

**注意**`PaddleClas.predict()` 为可迭代对象(`generator`),因此需要使用 `next()` 函数或 `for` 循环对其迭代调用。每次调用将以 `batch_size` 为单位进行一次预测,并返回预测结果。返回结果示例如下:

```
>>> result
[{'class_ids': [8, 7, 136, 80, 84], 'scores': [0.79368, 0.16329, 0.01853, 0.00959, 0.00239], 'label_names': ['hen', 'cock', 'European gallinule, Porphyrio porphyrio', 'black grouse', 'peacock']}]
```

* 在命令行中使用
```bash
G
gaotingquan 已提交
64
paddleclas --model_name=ResNet50  --infer_imgs="docs/images/inference_deployment/whl_demo.jpg"
65 66 67 68
```

```
>>> result
G
gaotingquan 已提交
69
filename: docs/images/inference_deployment/whl_demo.jpg, top-5, class_ids: [8, 7, 136, 80, 84], scores: [0.79368, 0.16329, 0.01853, 0.00959, 0.00239], label_names: ['hen', 'cock', 'European gallinule, Porphyrio porphyrio', 'black grouse', 'peacock']
70 71 72
Predict complete!
```

C
cuicheng01 已提交
73
<a name="3"></a>
S
sibo2rr 已提交
74 75 76
## 3. 参数解释
以下参数可在命令行方式使用中通过参数指定,或在 Python 代码中实例化 PaddleClas 对象时作为构造函数的参数使用。
* model_name(str): 模型名称,使用 PaddleClas 提供的基于 ImageNet1k 的预训练模型。
77
* inference_model_dir(str): 本地模型文件目录,当未指定 `model_name` 时该参数有效。该目录下需包含 `inference.pdmodel``inference.pdiparams` 两个模型文件。
S
sibo2rr 已提交
78 79 80 81 82 83 84
* infer_imgs(str): 待预测图片文件路径,或包含图片文件的目录,或网络图片的 URL。
* use_gpu(bool): 是否使用 GPU,默认为 `True`
* gpu_mem(int): 使用的 GPU 显存大小,当 `use_gpu``True` 时有效,默认为 8000。
* use_tensorrt(bool): 是否开启 TensorRT 预测,可提升 GPU 预测性能,需要使用带 TensorRT 的预测库,默认为 `False`
* enable_mkldnn(bool): 是否开启 MKLDNN,当 `use_gpu``False` 时有效,默认 `False`
* cpu_num_threads(int): CPU 预测时的线程数,当 `use_gpu``False``enable_mkldnn``True` 时有效,默认值为 `10`
* batch_size(int): 预测时每个 batch 的样本数量,默认为 `1`
85 86 87 88 89 90
* resize_short(int): 按图像较短边进行等比例缩放,默认为 `256`
* crop_size(int): 将图像裁剪到指定大小,默认为 `224`
* topk(int): 打印(返回)预测结果的前 `topk` 个类别和对应的分类概率,默认为 `5`
* class_id_map_file(str): `class id``label` 的映射关系文件。默认使用 `ImageNet1K` 数据集的映射关系。
* save_dir(str): 将预测结果作为预标注数据保存的路径,默认为 `None`,即不保存。

91
**注意**: 如果使用 `Transformer` 系列模型,如 `DeiT_***_384`, `ViT_***_384` 等,请注意模型的输入数据尺寸,需要设置参数 `resize_short=384`, `crop_size=384`,如下所示。
92 93 94 95

* 命令行中
```bash
from paddleclas import PaddleClas, get_default_confg
G
gaotingquan 已提交
96
paddleclas --model_name=ViT_base_patch16_384 --infer_imgs='docs/images/inference_deployment/whl_demo.jpg' --resize_short=384 --crop_size=384
97 98
```

S
sibo2rr 已提交
99
* Python 代码中
100 101 102 103 104
```python
from paddleclas import PaddleClas
clas = PaddleClas(model_name='ViT_base_patch16_384', resize_short=384, crop_size=384)
```

C
cuicheng01 已提交
105
<a name="4"></a>
S
sibo2rr 已提交
106
## 4. 使用示例
107

S
sibo2rr 已提交
108 109
PaddleClas 提供两种使用方式:
1. Python 代码中使用;
110 111
2. 命令行中使用。

C
cuicheng01 已提交
112
<a name="4.1"></a>
113 114 115 116 117 118 119
### 4.1 查看帮助信息

* CLI
```bash
paddleclas -h
```

C
cuicheng01 已提交
120
<a name="4.2"></a>
S
sibo2rr 已提交
121
### 4.2 使用 PaddleClas 提供的预训练模型进行预测
122
可以使用 PaddleClas 提供的预训练模型来预测,并通过参数 `model_name` 指定。此时 PaddleClas 会根据 `model_name` 自动下载指定模型,并保存在目录`~/.paddleclas/`下。
123 124 125 126 127

* Python
```python
from paddleclas import PaddleClas
clas = PaddleClas(model_name='ResNet50')
G
gaotingquan 已提交
128
infer_imgs = 'docs/images/inference_deployment/whl_demo.jpg'
129 130 131 132 133 134
result=clas.predict(infer_imgs)
print(next(result))
```

* CLI
```bash
G
gaotingquan 已提交
135
paddleclas --model_name='ResNet50' --infer_imgs='docs/images/inference_deployment/whl_demo.jpg'
136 137
```

C
cuicheng01 已提交
138
<a name="4.3"></a>
139
### 4.3 使用本地模型文件预测
140
可以使用本地的模型文件进行预测,通过参数 `inference_model_dir` 指定模型文件目录即可。需要注意,模型文件目录下必须包含 `inference.pdmodel``inference.pdiparams` 两个文件。
141 142 143 144 145

* Python
```python
from paddleclas import PaddleClas
clas = PaddleClas(inference_model_dir='./inference/')
G
gaotingquan 已提交
146
infer_imgs = 'docs/images/inference_deployment/whl_demo.jpg'
147 148 149 150 151 152
result=clas.predict(infer_imgs)
print(next(result))
```

* CLI
```bash
G
gaotingquan 已提交
153
paddleclas --inference_model_dir='./inference/' --infer_imgs='docs/images/inference_deployment/whl_demo.jpg'
154 155
```

C
cuicheng01 已提交
156
<a name="4.4"></a>
157
### 4.4 批量预测
S
sibo2rr 已提交
158
当参数 `infer_imgs` 为包含图片文件的目录时,可以对图片进行批量预测,只需通过参数 `batch_size` 指定 batch 大小。
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174

* Python
```python
from paddleclas import PaddleClas
clas = PaddleClas(model_name='ResNet50', batch_size=2)
infer_imgs = 'docs/images/'
result=clas.predict(infer_imgs)
for r in result:
    print(r)
```

* CLI
```bash
paddleclas --model_name='ResNet50' --infer_imgs='docs/images/' --batch_size 2
```

C
cuicheng01 已提交
175
<a name="4.5"></a>
176
### 4.5 对网络图片进行预测
177
可以对网络图片进行预测,只需通过参数 `infer_imgs` 指定图片 `url`。此时图片会下载并保存在`~/.paddleclas/images/`目录下。
178 179 180 181 182

* Python
```python
from paddleclas import PaddleClas
clas = PaddleClas(model_name='ResNet50')
G
gaotingquan 已提交
183
infer_imgs = 'https://raw.githubusercontent.com/paddlepaddle/paddleclas/release/2.2/docs/images/inference_deployment/whl_demo.jpg'
184 185 186 187 188 189
result=clas.predict(infer_imgs)
print(next(result))
```

* CLI
```bash
G
gaotingquan 已提交
190
paddleclas --model_name='ResNet50' --infer_imgs='https://raw.githubusercontent.com/paddlepaddle/paddleclas/release/2.2/docs/images/inference_deployment/whl_demo.jpg'
191 192
```

C
cuicheng01 已提交
193
<a name="4.6"></a>
194 195
### 4.6 对 `NumPy.ndarray` 格式数据进行预测
在 Python 中,可以对 `Numpy.ndarray` 格式的图像数据进行预测,只需通过参数 `infer_imgs` 指定即可。注意该图像数据必须为三通道图像数据。
196 197 198 199 200 201

* python
```python
import cv2
from paddleclas import PaddleClas
clas = PaddleClas(model_name='ResNet50')
G
gaotingquan 已提交
202
infer_imgs = cv2.imread("docs/images/inference_deployment/whl_demo.jpg")
203 204 205 206
result=clas.predict(infer_imgs)
print(next(result))
```

C
cuicheng01 已提交
207
<a name="4.7"></a>
208
### 4.7 保存预测结果
209
可以指定参数 `pre_label_out_dir='./output_pre_label/'`,将图片按其 top1 预测结果保存到 `pre_label_out_dir` 目录下对应类别的文件夹中。
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224

* python
```python
from paddleclas import PaddleClas
clas = PaddleClas(model_name='ResNet50', save_dir='./output_pre_label/')
infer_imgs = 'docs/images/whl/' # it can be infer_imgs folder path which contains all of images you want to predict.
result=clas.predict(infer_imgs)
print(next(result))
```

* CLI
```bash
paddleclas --model_name='ResNet50' --infer_imgs='docs/images/whl/' --save_dir='./output_pre_label/'
```

C
cuicheng01 已提交
225
<a name="4.8"></a>
S
sibo2rr 已提交
226
### 4.8 指定 label name
227
可以通过参数 `class_id_map_file` 指定 `class id``lable` 的对应关系。PaddleClas 默认使用 ImageNet1K 的 label_name(`ppcls/utils/imagenet1k_label_list.txt`)。
228

229
`class_id_map_file` 文件内容格式应为:
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247

```
class_id<space>class_name<\n>
```

例如:

```
0 tench, Tinca tinca
1 goldfish, Carassius auratus
2 great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias
......
```

* Python
```python
from paddleclas import PaddleClas
clas = PaddleClas(model_name='ResNet50', class_id_map_file='./ppcls/utils/imagenet1k_label_list.txt')
G
gaotingquan 已提交
248
infer_imgs = 'docs/images/inference_deployment/whl_demo.jpg'
249 250 251 252 253 254
result=clas.predict(infer_imgs)
print(next(result))
```

* CLI
```bash
G
gaotingquan 已提交
255
paddleclas --model_name='ResNet50' --infer_imgs='docs/images/inference_deployment/whl_demo.jpg' --class_id_map_file='./ppcls/utils/imagenet1k_label_list.txt'
256
```