Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
6c5d1ebc
P
PaddleClas
项目概览
PaddlePaddle
/
PaddleClas
大约 1 年 前同步成功
通知
115
Star
4999
Fork
1114
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
19
列表
看板
标记
里程碑
合并请求
6
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleClas
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
19
Issue
19
列表
看板
标记
里程碑
合并请求
6
合并请求
6
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
6c5d1ebc
编写于
12月 09, 2021
作者:
W
weishengyu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add pruner and quanter for theseus
上级
0c8a082d
变更
7
显示空白变更内容
内联
并排
Showing
7 changed file
with
31 addition
and
28 deletion
+31
-28
ppcls/arch/__init__.py
ppcls/arch/__init__.py
+9
-4
ppcls/arch/backbone/base/theseus_layer.py
ppcls/arch/backbone/base/theseus_layer.py
+2
-0
ppcls/engine/engine.py
ppcls/engine/engine.py
+5
-8
ppcls/engine/slim/__init__.py
ppcls/engine/slim/__init__.py
+2
-2
ppcls/engine/slim/prune.py
ppcls/engine/slim/prune.py
+7
-8
ppcls/engine/slim/quant.py
ppcls/engine/slim/quant.py
+5
-5
ppcls/static/program.py
ppcls/static/program.py
+1
-1
未找到文件。
ppcls/arch/__init__.py
浏览文件 @
6c5d1ebc
...
...
@@ -26,15 +26,20 @@ from .utils import *
from
ppcls.arch.backbone.base.theseus_layer
import
TheseusLayer
from
ppcls.utils
import
logger
from
ppcls.utils.save_load
import
load_dygraph_pretrain
from
ppcls.engine.slim
import
prune_model
,
quantize_model
__all__
=
[
"build_model"
,
"RecModel"
,
"DistillationModel"
]
def
build_model
(
config
):
config
=
copy
.
deepcopy
(
config
)
model_type
=
config
.
pop
(
"name"
)
arch_config
=
copy
.
deepcopy
(
config
[
"Arch"
]
)
model_type
=
arch_
config
.
pop
(
"name"
)
mod
=
importlib
.
import_module
(
__name__
)
arch
=
getattr
(
mod
,
model_type
)(
**
config
)
arch
=
getattr
(
mod
,
model_type
)(
**
arch_config
)
if
isinstance
(
arch
,
TheseusLayer
):
prune_model
(
config
,
arch
)
quantize_model
(
config
,
arch
)
return
arch
...
...
@@ -51,7 +56,7 @@ def apply_to_static(config, model):
return
model
class
RecModel
(
nn
.
Layer
):
class
RecModel
(
Theseus
Layer
):
def
__init__
(
self
,
**
config
):
super
().
__init__
()
backbone_config
=
config
[
"Backbone"
]
...
...
ppcls/arch/backbone/base/theseus_layer.py
浏览文件 @
6c5d1ebc
...
...
@@ -16,6 +16,8 @@ class TheseusLayer(nn.Layer):
super
(
TheseusLayer
,
self
).
__init__
()
self
.
res_dict
=
{}
self
.
res_name
=
self
.
full_name
()
self
.
pruner
=
None
self
.
quanter
=
None
# stop doesn't work when stop layer has a parallel branch.
def
stop_after
(
self
,
stop_layer_name
:
str
):
...
...
ppcls/engine/engine.py
浏览文件 @
6c5d1ebc
...
...
@@ -44,7 +44,6 @@ from ppcls.data import create_operators
from
ppcls.engine.train
import
train_epoch
from
ppcls.engine
import
evaluation
from
ppcls.arch.gears.identity_head
import
IdentityHead
from
ppcls.engine.slim
import
get_pruner
,
get_quaner
class
Engine
(
object
):
...
...
@@ -186,14 +185,12 @@ class Engine(object):
self
.
eval_metric_func
=
None
# build model
self
.
model
=
build_model
(
self
.
config
[
"Arch"
])
self
.
model
=
build_model
(
self
.
config
)
self
.
quanted
=
self
.
config
.
get
(
"Slim"
,
{}).
get
(
"quant"
,
False
)
self
.
pruned
=
self
.
config
.
get
(
"Slim"
,
{}).
get
(
"prune"
,
False
)
# set @to_static for benchmark, skip this by default.
apply_to_static
(
self
.
config
,
self
.
model
)
# for slim
self
.
pruner
=
get_pruner
(
self
.
config
,
self
.
model
)
self
.
quanter
=
get_quaner
(
self
.
config
,
self
.
model
)
# load_pretrain
if
self
.
config
[
"Global"
][
"pretrained_model"
]
is
not
None
:
if
self
.
config
[
"Global"
][
"pretrained_model"
].
startswith
(
"http"
):
...
...
@@ -371,8 +368,8 @@ class Engine(object):
model
.
eval
()
save_path
=
os
.
path
.
join
(
self
.
config
[
"Global"
][
"save_inference_dir"
],
"inference"
)
if
self
.
quante
r
:
self
.
quanter
.
save_quantized_model
(
if
self
.
quante
d
:
model
.
quanter
.
save_quantized_model
(
model
.
base_model
,
save_path
,
input_spec
=
[
...
...
ppcls/engine/slim/__init__.py
浏览文件 @
6c5d1ebc
...
...
@@ -12,5 +12,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from
ppcls.engine.slim.prune
import
get_pruner
from
ppcls.engine.slim.quant
import
get_quaner
from
ppcls.engine.slim.prune
import
prune_model
from
ppcls.engine.slim.quant
import
quantize_model
ppcls/engine/slim/prune.py
浏览文件 @
6c5d1ebc
...
...
@@ -17,7 +17,7 @@ import paddle
from
ppcls.utils
import
logger
def
get_pruner
(
config
,
model
):
def
prune_model
(
config
,
model
):
if
config
.
get
(
"Slim"
,
False
)
and
config
[
"Slim"
].
get
(
"prune"
,
False
):
import
paddleslim
prune_method_name
=
config
[
"Slim"
][
"prune"
][
"name"
].
lower
()
...
...
@@ -25,21 +25,20 @@ def get_pruner(config, model):
"fpgm"
,
"l1_norm"
],
"The prune methods only support 'fpgm' and 'l1_norm'"
if
prune_method_name
==
"fpgm"
:
pruner
=
paddleslim
.
dygraph
.
FPGMFilterPruner
(
model
.
pruner
=
paddleslim
.
dygraph
.
FPGMFilterPruner
(
model
,
[
1
]
+
config
[
"Global"
][
"image_shape"
])
else
:
pruner
=
paddleslim
.
dygraph
.
L1NormFilterPruner
(
model
.
pruner
=
paddleslim
.
dygraph
.
L1NormFilterPruner
(
model
,
[
1
]
+
config
[
"Global"
][
"image_shape"
])
# prune model
_prune_model
(
pruner
,
config
,
model
)
_prune_model
(
config
,
model
)
else
:
pruner
=
None
model
.
pruner
=
None
return
pruner
def
_prune_model
(
pruner
,
config
,
model
):
def
_prune_model
(
config
,
model
):
from
paddleslim.analysis
import
dygraph_flops
as
flops
logger
.
info
(
"FLOPs before pruning: {}GFLOPs"
.
format
(
flops
(
model
,
[
1
]
+
config
[
"Global"
][
"image_shape"
])
/
1e9
))
...
...
@@ -53,7 +52,7 @@ def _prune_model(pruner, config, model):
ratios
=
{}
for
param
in
params
:
ratios
[
param
]
=
config
[
"Slim"
][
"prune"
][
"pruned_ratio"
]
plan
=
pruner
.
prune_vars
(
ratios
,
[
0
])
plan
=
model
.
pruner
.
prune_vars
(
ratios
,
[
0
])
logger
.
info
(
"FLOPs after pruning: {}GFLOPs; pruned ratio: {}"
.
format
(
flops
(
model
,
[
1
]
+
config
[
"Global"
][
"image_shape"
])
/
1e9
,
...
...
ppcls/engine/slim/quant.py
浏览文件 @
6c5d1ebc
...
...
@@ -40,16 +40,16 @@ QUANT_CONFIG = {
}
def
get_quaner
(
config
,
model
):
def
quantize_model
(
config
,
model
):
if
config
.
get
(
"Slim"
,
False
)
and
config
[
"Slim"
].
get
(
"quant"
,
False
):
from
paddleslim.dygraph.quant
import
QAT
assert
config
[
"Slim"
][
"quant"
][
"name"
].
lower
(
)
==
'pact'
,
'Only PACT quantization method is supported now'
QUANT_CONFIG
[
"activation_preprocess_type"
]
=
"PACT"
quanter
=
QAT
(
config
=
QUANT_CONFIG
)
quanter
.
quantize
(
model
)
model
.
quanted
=
QAT
(
config
=
QUANT_CONFIG
)
model
.
quanted
.
quantize_model
(
model
)
logger
.
info
(
"QAT model summary:"
)
paddle
.
summary
(
model
,
(
1
,
3
,
224
,
224
))
else
:
quanter
=
None
return
quanter
model
.
quanted
=
None
return
model
.
quanted
ppcls/static/program.py
浏览文件 @
6c5d1ebc
...
...
@@ -259,7 +259,7 @@ def build(config,
# data_format should be assigned in arch-dict
input_image_channel
=
config
[
"Global"
][
"image_shape"
][
0
]
# default as [3, 224, 224]
model
=
build_model
(
config
[
"Arch"
]
)
model
=
build_model
(
config
)
out
=
model
(
feeds
[
"data"
])
# end of build model
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录