Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleSlim
提交
b6bffc2c
P
PaddleSlim
项目概览
PaddlePaddle
/
PaddleSlim
1 年多 前同步成功
通知
51
Star
1434
Fork
344
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
53
列表
看板
标记
里程碑
合并请求
16
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleSlim
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
53
Issue
53
列表
看板
标记
里程碑
合并请求
16
合并请求
16
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
b6bffc2c
编写于
2月 24, 2021
作者:
C
ceci3
提交者:
GitHub
2月 24, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix bert docs (#666)
* fix docs * update
上级
c701d2b8
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
16 addition
and
11 deletion
+16
-11
demo/ofa/bert/README.md
demo/ofa/bert/README.md
+5
-4
demo/ofa/ernie/README.md
demo/ofa/ernie/README.md
+3
-1
demo/ofa/ernie/ernie_supernet/importance.py
demo/ofa/ernie/ernie_supernet/importance.py
+2
-1
paddleslim/nas/ofa/get_sub_model.py
paddleslim/nas/ofa/get_sub_model.py
+4
-3
paddleslim/nas/ofa/layers_old.py
paddleslim/nas/ofa/layers_old.py
+2
-2
未找到文件。
demo/ofa/bert/README.md
浏览文件 @
b6bffc2c
# OFA压缩PaddleNLP-BERT模型
BERT-base模型是一个迁移能力很强的通用语义表示模型,但是模型中也有一些参数冗余。本教程将介绍如何使用PaddleSlim对
[
PaddleNLP
](
https://github.com/PaddlePaddle/models/tree/develop/PaddleNLP/
)
中BERT-base模型进行压缩。
BERT-base模型是一个迁移能力很强的通用语义表示模型,但是模型中也有一些参数冗余。本教程将介绍如何使用PaddleSlim对
[
PaddleNLP
](
https://github.com/PaddlePaddle/models/tree/develop/PaddleNLP/
)
中BERT-base模型进行压缩。
本教程只会演示如何快速启动相应训练,详细教程请参考:
[
BERT
](
https://github.com/PaddlePaddle/PaddleSlim/blob/release/2.0.0/docs/zh_cn/nlp/paddlenlp_slim_ofa_tutorial.md
)
## 1. 压缩结果
...
...
@@ -82,7 +83,7 @@ BERT-base模型是一个迁移能力很强的通用语义表示模型,但是
<td
rowspan=
2
align=
center
>
V100
</td>
<td
rowspan=
2
align=
center
>
16
</td>
<td
style=
"text-align:center"
>
<span
style=
"font-size:18px;"
>
BERT
</span>
<span
style=
"font-size:18px;"
align=
center
>
BERT
</span>
</td>
<td
style=
"text-align:center"
>
<span
style=
"font-size:18px"
>
N
</span>
...
...
@@ -106,7 +107,7 @@ BERT-base模型是一个迁移能力很强的通用语义表示模型,但是
<td rowspan=2 align=center> Intel(R) Xeon(R) Gold 5117 CPU @ 2.00GHz </td>
<td
rowspan=
2
align=
center
>
16
</td>
<td
style=
"text-align:center"
>
<span
style=
"font-size:18px;"
>
BERT
</span>
<span
style=
"font-size:18px;"
align=
center
>
BERT
</span>
</td>
<td
style=
"text-align:center"
>
<span
style=
"font-size:18px"
>
N
</span>
...
...
@@ -184,7 +185,7 @@ python -u ./run_glue_ofa.py --model_type bert \
压缩训练之后在dev上的结果如表1-1中『Result with PaddleSlim』列所示,延时情况如表1-2所示。
## 3. OFA接口介绍
OFA API介绍参考
[
API
](
https://github.com/PaddlePaddle/PaddleSlim/blob/
develop/docs/zh_cn/api_cn
/ofa_api.rst
)
OFA API介绍参考
[
API
](
https://github.com/PaddlePaddle/PaddleSlim/blob/
release/2.0.0/docs/zh_cn/api_cn/dygraph/ofa
/ofa_api.rst
)
# 基于本代码对TinyBERT(L=4, D=312)进行压缩
下游任务模型是从TinyBERT官方repo转换得到。
...
...
demo/ofa/ernie/README.md
浏览文件 @
b6bffc2c
...
...
@@ -2,6 +2,8 @@
ERNIE是百度开创性提出的基于知识增强的持续学习语义理解框架,该框架将大数据预训练与多源丰富知识相结合,通过持续学习技术,不断吸收海量文本数据中词汇、结构、语义等方面的知识,实现模型效果不断进化。本教程讲介绍如何使用PaddleSlim对
[
ERNIE
](
https://github.com/PaddlePaddle/ERNIE
)
模型进行压缩。
本教程只会演示如何快速启动相应训练,详细教程请参考:
[
ERNIE
](
https://github.com/PaddlePaddle/PaddleSlim/blob/release/2.0.0/docs/zh_cn/nlp/ernie_slim_ofa_tutorial.md
)
使用本教程压缩算法可以在精度无损的情况下,对原始Tiny-ERNIE模型进行40%的加速。
## 1. 快速开始
...
...
@@ -41,4 +43,4 @@ python ./ofa_ernie.py \
-
`depth_mult_list`
表示压缩训练过程中,模型包含的Transformer Block数量的选择的范围。
## 2. OFA接口介绍
TODO
OFA API介绍参考
[
API
](
https://github.com/PaddlePaddle/PaddleSlim/blob/release/2.0.0/docs/zh_cn/api_cn/dygraph/ofa/ofa_api.rst
)
demo/ofa/ernie/ernie_supernet/importance.py
浏览文件 @
b6bffc2c
...
...
@@ -52,12 +52,13 @@ def compute_neuron_head_importance(args, model, dev_ds, place, model_cfg):
for
eval_task
in
eval_task_names
:
for
batch
in
dev_ds
.
start
(
place
):
ids
,
sids
,
label
=
batch
loss
,
_
,
_
=
model
(
out
=
model
(
ids
,
sids
,
labels
=
label
,
head_mask
=
head_mask
,
num_layers
=
model_cfg
[
'num_hidden_layers'
])
loss
=
out
[
0
]
loss
.
backward
()
head_importance
+=
L
.
abs
(
FD
.
to_variable
(
head_mask
.
gradient
()))
...
...
paddleslim/nas/ofa/get_sub_model.py
浏览文件 @
b6bffc2c
...
...
@@ -14,6 +14,7 @@
import
numpy
as
np
import
paddle
from
paddle.fluid
import
core
__all__
=
[
'get_prune_params_config'
,
'prune_params'
]
...
...
@@ -96,11 +97,11 @@ def prune_params(model, param_config, super_model_sd=None):
p
=
t_value
.
_place
()
if
p
.
is_cpu_place
():
place
=
paddl
e
.
CPUPlace
()
place
=
cor
e
.
CPUPlace
()
elif
p
.
is_cuda_pinned_place
():
place
=
paddl
e
.
CUDAPinnedPlace
()
place
=
cor
e
.
CUDAPinnedPlace
()
else
:
place
=
paddl
e
.
CUDAPlace
(
p
.
gpu_device_id
())
place
=
cor
e
.
CUDAPlace
(
p
.
gpu_device_id
())
t_value
.
set
(
prune_value
,
place
)
if
param
.
trainable
:
param
.
clear_gradient
()
paddleslim/nas/ofa/layers_old.py
浏览文件 @
b6bffc2c
...
...
@@ -931,10 +931,10 @@ class SuperBatchNorm(fluid.dygraph.BatchNorm):
"use_mkldnn"
,
False
,
"fuse_with_relu"
,
self
.
_fuse_with_relu
,
"use_global_stats"
,
self
.
_use_global_stats
,
'trainable_statistics'
,
self
.
_trainable_statistics
)
batch_norm_out
,
_
,
_
,
_
,
_
,
_
=
core
.
ops
.
batch_norm
(
batch_norm_out
=
core
.
ops
.
batch_norm
(
input
,
weight
,
bias
,
mean
,
variance
,
mean_out
,
variance_out
,
*
attrs
)
return
dygraph_utils
.
_append_activation_in_dygraph
(
batch_norm_out
,
act
=
self
.
_act
)
batch_norm_out
[
0
]
,
act
=
self
.
_act
)
class
SuperInstanceNorm
(
fluid
.
dygraph
.
InstanceNorm
):
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录