README.md 4.2 KB
Newer Older
W
whs 已提交
1
# PaddleSlim
W
wanghaoshuang 已提交
2

W
whs 已提交
3
中文 | [English](README_en.md)
V
vincentXiyu 已提交
4

W
whs 已提交
5 6 7
[![Documentation Status](https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat)](https://paddleslim.readthedocs.io/en/latest/)
[![Documentation Status](https://img.shields.io/badge/中文文档-最新-brightgreen.svg)](https://paddleslim.readthedocs.io/zh_CN/latest/)
[![License](https://img.shields.io/badge/license-Apache%202-blue.svg)](LICENSE)
V
vincentXiyu 已提交
8

W
whs 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21
## 简介

PaddleSlim是一个专注于深度学习模型压缩的工具库,提供**剪裁、量化、蒸馏、和模型结构搜索**等模型压缩策略,帮助用户快速实现模型的小型化。

## 版本对齐

|  PaddleSlim   | PaddlePaddle   | PaddleLite    | 备注        |
| :-----------: | :------------: | :------------:| :----------:|
| 1.0.1         | <=1.7          |       2.7     | 支持静态图  |
| 1.1.1         | 1.8            |       2.7     | 支持静态图  |
| 1.2.0         | 2.0Beta/RC     |       2.8     | 支持静态图; 新增CPU预测 |
| 2.0.0         | 2.0            |       2.8     | 支持动态图和静态图  |

V
vincentXiyu 已提交
22

23
## 安装
V
vincentXiyu 已提交
24

W
whs 已提交
25
安装最新版本:
W
whs 已提交
26
```bash
W
whs 已提交
27
pip install paddleslim -i https://pypi.tuna.tsinghua.edu.cn/simple
W
whs 已提交
28
```
29

W
whs 已提交
30
安装指定版本:
31
```bash
W
whs 已提交
32
pip install paddleslim=1.2.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
33 34
```

W
whs 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
## 最近更新

2021.2.5: 发布V2.0.0版本,新增支持动态图,新增OFA压缩功能,优化剪枝功能。

## 功能概览

PaddleSlim支持以下功能,也支持自定义量化、裁剪等功能。
<table>
<tr align="center" valign="bottom">
  <th>Quantization</th>
  <th>Pruning</th>
  <th>NAS</th>
  <th>Distilling</th>
</tr>
<tr valign="top">
  <td>
    <ul>
      <li>QAT</li>
      <li>PACT</li>
      <li>PTQ-Static</li>
      <li>PTQ-Dynamic</li>
      <li>Embedding Quant</li>
    </ul>
  </td>
  <td>
    <ul>
      <li>SensitivityPruner</li>
      <li>FPGMFilterPruner</li>
      <li>L1NormFilterPruner</li>
      <li>L2NormFilterPruner</li>
      <li>*SlimFilterPruner</li>
      <li>*OptSlimFilterPruner</li>
    </ul>
  </td>
  <td>
    <ul>
      <li>*Simulate Anneal based NAS</li>
      <li>*Reinforcement Learning based NAS</li>
      <li>**DARTS</li>
      <li>**PC-DARTS</li>
      <li>**Once-for-All</li>
      <li>*Hardware-aware Search</li>
    </ul>
  </td>

  <td>
    <ul>
      <li>*FSP</li>
      <li>*DML</li>
      <li>*DK for YOLOv3</li>
    </ul>
  </td>
</tr>
</table>
89

W
whs 已提交
90
注:*表示仅支持静态图,**表示仅支持动态图
91

W
whs 已提交
92
### 效果展示
93

W
whs 已提交
94 95 96 97 98 99
PaddleSlim在典型视觉和自然语言处理任务上做了模型压缩,并且测试了Nvidia GPU、ARM等设备上的加速情况,这里展示部分模型的压缩效果,详细方案可以参考下面CV和NLP模型压缩方案:

<p align="center">
<img src="docs/images/benchmark.png" height=185 width=849 hspace='10'/> <br />
<strong>表1: 部分模型压缩加速情况</strong>
</p>
100

W
whs 已提交
101 102 103 104
注:
- YOLOv3: 在移动端SD855上加速3.55倍。
- PP-OCR: 体积由8.9M减少到2.9M, 在SD855上加速1.27倍。
- BERT: 模型参数由110M减少到80M,精度提升的情况下,Tesla T4 GPU FP16计算加速1.47倍。
105

W
whs 已提交
106
## 文档教程
W
wanghaoshuang 已提交
107

W
whs 已提交
108
### 快速上手
W
wanghaoshuang 已提交
109

W
whs 已提交
110 111 112 113 114
- 量化训练 - [动态图]() | [静态图]()
- 离线量化 - [动态图]() | [静态图]()
- 剪裁 - [动态图]() | [静态图]()
- 蒸馏 - [动态图]() | [静态图]()
- NAS - [动态图]() | [静态图]()
W
wanghaoshuang 已提交
115

W
whs 已提交
116
### 进阶教程
W
wanghaoshuang 已提交
117

W
whs 已提交
118
#### 压缩功能详解
W
wanghaoshuang 已提交
119

W
whs 已提交
120
[量化训练]() | [离线量化]() | [剪裁]() | [蒸馏]() | [NAS]()
W
wanghaoshuang 已提交
121

W
whs 已提交
122
#### 推理部署
W
wanghaoshuang 已提交
123

W
whs 已提交
124 125 126 127 128
- [概述]()
- [PaddleInference量化部署]()
  - [Intel CPU量化部署]()
  - [GPU量化部署]()
- [PaddleLite量化部署]()
W
wanghaoshuang 已提交
129

W
whs 已提交
130
### CV模型压缩
W
wanghaoshuang 已提交
131

W
whs 已提交
132 133
- [检测模型压缩(基于PaddleDetection)]()
  - YOLOv3 3.5倍加速方案
W
wanghaoshuang 已提交
134

W
whs 已提交
135
- [分割模型压缩(基于PaddleSeg)]()
W
wanghaoshuang 已提交
136

W
whs 已提交
137 138
- [OCR模型压缩(基于PaddleOCR)]()
  - [3.5M模型压缩方案]()
W
wanghaoshuang 已提交
139

W
whs 已提交
140
### NLP模型压缩
W
wanghaoshuang 已提交
141

W
whs 已提交
142 143
- [BERT]()
- [ERNIE]()
W
wanghaoshuang 已提交
144

W
whs 已提交
145
### 通用轻量级模型
W
wanghaoshuang 已提交
146

W
whs 已提交
147 148
- 人脸模型(SlimfaceNet)
- 图像分类模型(SlimMobileNet)
W
wanghaoshuang 已提交
149

W
whs 已提交
150 151 152 153 154 155
### API文档

- 动态图
- 静态图

### [FAQ]()
W
whs 已提交
156 157 158

## 许可证书

W
whs 已提交
159 160 161
本项目的发布受[Apache 2.0 license](https://github.com/PaddlePaddle/PaddleSlim/blob/develop/LICENSE)许可认证。

## 贡献代码
W
whs 已提交
162 163

我们非常欢迎你可以为PaddleSlim提供代码,也十分感谢你的反馈。
W
whs 已提交
164 165

## 欢迎加入PaddleSlim技术交流群