multilabel.md 2.3 KB
Newer Older
Y
yaohai 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
# 多标签分类quick start

基于[NUS-WIDE-SCENE](https://lms.comp.nus.edu.sg/wp-content/uploads/2019/research/nuswide/NUS-WIDE.html)数据集,体验多标签分类的训练、评估、预测的过程,该数据集是NUS-WIDE数据集的一个子集。请事先参考[安装指南](install.md)配置运行环境和克隆PaddleClas代码。

## 一、数据和模型准备

* 进入PaddleClas目录。

```
cd path_to_PaddleClas
```

* 创建并进入`dataset/NUS-WIDE-SCENE`目录,下载并解压NUS-WIDE-SCENE数据集。

```shell
mkdir dataset/NUS-WIDE-SCENE
cd dataset/NUS-WIDE-SCENE
wget https://paddle-imagenet-models-name.bj.bcebos.com/data/NUS-SCENE-dataset.tar
tar -xf NUS-SCENE-dataset.tar
```

* 返回`PaddleClas`根目录

```
cd ../../
```

C
cuicheng01 已提交
28
## 二、模型训练
Y
yaohai 已提交
29

C
cuicheng01 已提交
30 31 32 33 34 35 36 37 38
```shell
export CUDA_VISIBLE_DEVICES=0,1,2,3
python3 -m paddle.distributed.launch \
    --gpus="0,1,2,3" \
    tools/train.py \
        -c ./ppcls/configs/quick_start/professional/MobileNetV1_multilabel.yaml
```

训练10epoch之后,验证集最好的正确率应该在0.95左右。
Y
yaohai 已提交
39

C
cuicheng01 已提交
40
## 三、模型评估
Y
yaohai 已提交
41 42

```bash
C
cuicheng01 已提交
43 44 45
python3 tools/eval.py \
    -c ./ppcls/configs/quick_start/professional/MobileNetV1_multilabel.yaml \
    -o Arch.pretrained="./output/MobileNetV1/best_model"
Y
yaohai 已提交
46 47
```

C
cuicheng01 已提交
48
## 四、模型预测
Y
yaohai 已提交
49

C
cuicheng01 已提交
50 51 52 53 54 55 56 57 58
```bash
python3 tools/infer.py \
    -c ./ppcls/configs/quick_start/professional/MobileNetV1_multilabel.yaml \
    -o Arch.pretrained="./output/MobileNetV1/best_model"
```

得到类似下面的输出:
```  
[{'class_ids': [6, 13, 17, 23, 26, 30], 'scores': [0.95683, 0.5567, 0.55211, 0.99088, 0.5943, 0.78767], 'file_name': './deploy/images/0517_2715693311.jpg', 'label_names': []}]
Y
yaohai 已提交
59 60
```

C
cuicheng01 已提交
61
## 五、基于预测引擎预测
Y
yaohai 已提交
62

C
cuicheng01 已提交
63
### 5.1 导出inference model
Y
yaohai 已提交
64 65

```bash
C
cuicheng01 已提交
66 67 68
python3 tools/export_model.py \
    -c ./ppcls/configs/quick_start/professional/MobileNetV1_multilabel.yaml \
    -o Arch.pretrained="./output/MobileNetV1/best_model"
Y
yaohai 已提交
69
```
C
cuicheng01 已提交
70
inference model的路径默认在当前路径下`./inference`
Y
yaohai 已提交
71

C
cuicheng01 已提交
72
### 5.2 基于预测引擎预测
Y
yaohai 已提交
73

C
cuicheng01 已提交
74
首先进入deploy目录下:
Y
yaohai 已提交
75 76

```bash
C
cuicheng01 已提交
77 78 79 80 81 82 83 84
cd ./deploy
```

通过预测引擎推理预测:

```
python3 python/predict_cls.py \
     -c configs/inference_multilabel_cls.yaml
Y
yaohai 已提交
85 86 87
```

得到类似下面的输出:
C
cuicheng01 已提交
88 89 90
```
0517_2715693311.jpg:    class id(s): [6, 13, 17, 23, 26, 30], score(s): [0.96, 0.56, 0.55, 0.99, 0.59, 0.79], label_name(s): []
```