README.md 2.1 KB
Newer Older
I
itminner 已提交
1 2 3 4 5
# 在线量化示例

本示例介绍如何使用在线量化接口,来对训练好的分类模型进行量化, 可以减少模型的存储空间和显存占用。

## 接口介绍
I
itminner 已提交
6

S
slf12 已提交
7
请参考 <a href='../../../paddleslim/quant/quantization_api_doc.md'>量化API文档</a>
I
itminner 已提交
8

L
Liufang Sang 已提交
9
## 分类模型的量化训练流程
I
itminner 已提交
10

L
Liufang Sang 已提交
11 12
### 准备数据

L
Liufang Sang 已提交
13
``demo``文件夹下创建``data``文件夹,将``ImageNet``数据集解压在``data``文件夹下,解压后``data/ILSVRC2012``文件夹下应包含以下文件:
L
Liufang Sang 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
- ``'train'``文件夹,训练图片
- ``'train_list.txt'``文件
- ``'val'``文件夹,验证图片
- ``'val_list.txt'``文件

### 准备需要量化的模型

使用以下命令下载训练好的模型并解压。

```
mkdir pretrain
cd pretrain
wget http://paddle-imagenet-models-name.bj.bcebos.com/MobileNetV1_pretrained.tar
tar xf MobileNetV1_pretrained.tar
cd ..
```

### 配置量化参数
I
itminner 已提交
32 33 34 35 36 37 38 39 40 41 42

```
quant_config = {
    'weight_quantize_type': 'abs_max',
    'activation_quantize_type': 'moving_average_abs_max',
    'weight_bits': 8,
    'activation_bits': 8,
    'not_quant_pattern': ['skip_quant'],
    'quantize_op_types': ['conv2d', 'depthwise_conv2d', 'mul'],
    'dtype': 'int8',
    'window_size': 10000,
43
    'moving_rate': 0.9
I
itminner 已提交
44 45 46
}
```

L
Liufang Sang 已提交
47
### 对训练和测试program插入可训练量化op
I
itminner 已提交
48 49 50 51 52 53 54

```
val_program = quant_aware(val_program, place, quant_config, scope=None, for_test=True)

compiled_train_prog = quant_aware(train_prog, place, quant_config, scope=None, for_test=False)
```

L
Liufang Sang 已提交
55
### 关掉指定build策略
I
itminner 已提交
56

I
itminner 已提交
57 58 59 60 61 62 63 64 65 66
```
build_strategy = fluid.BuildStrategy()
build_strategy.fuse_all_reduce_ops = False
build_strategy.sync_batch_norm = False
exec_strategy = fluid.ExecutionStrategy()
compiled_train_prog = compiled_train_prog.with_data_parallel(
        loss_name=avg_cost.name,
        build_strategy=build_strategy,
        exec_strategy=exec_strategy)
```
I
itminner 已提交
67 68


L
Liufang Sang 已提交
69
### 训练命令
I
itminner 已提交
70

I
itminner 已提交
71
```
L
Liufang Sang 已提交
72
python train.py --model MobileNet --pretrained_model ./pretrain/MobileNetV1_pretrained --checkpoint_dir ./output/mobilenetv1 --num_epochs 30
I
itminner 已提交
73
```
L
Liufang Sang 已提交
74
运行之后,可看到``best_model``的最后测试结果,和MobileNet量化前的精度top1=70.99%, top5=89.68%非常相近。