Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
34a74b39
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
695
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
34a74b39
编写于
3月 07, 2022
作者:
S
shangliang Xu
提交者:
GitHub
3月 07, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refine ema_model save (#5314)
上级
c27233d3
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
48 addition
and
24 deletion
+48
-24
ppdet/engine/callbacks.py
ppdet/engine/callbacks.py
+12
-8
ppdet/optimizer.py
ppdet/optimizer.py
+1
-1
ppdet/utils/checkpoint.py
ppdet/utils/checkpoint.py
+35
-15
未找到文件。
ppdet/engine/callbacks.py
浏览文件 @
34a74b39
...
...
@@ -182,7 +182,7 @@ class Checkpointer(Callback):
)
%
self
.
model
.
cfg
.
snapshot_epoch
==
0
or
epoch_id
==
end_epoch
-
1
:
save_name
=
str
(
epoch_id
)
if
epoch_id
!=
end_epoch
-
1
else
"model_final"
weight
=
self
.
weight
weight
=
self
.
weight
.
state_dict
()
elif
mode
==
'eval'
:
if
'save_best_model'
in
status
and
status
[
'save_best_model'
]:
for
metric
in
self
.
model
.
_metrics
:
...
...
@@ -201,18 +201,22 @@ class Checkpointer(Callback):
if
map_res
[
key
][
0
]
>
self
.
best_ap
:
self
.
best_ap
=
map_res
[
key
][
0
]
save_name
=
'best_model'
weight
=
self
.
weight
weight
=
self
.
weight
.
state_dict
()
logger
.
info
(
"Best test {} ap is {:0.3f}."
.
format
(
key
,
self
.
best_ap
))
if
weight
:
if
self
.
model
.
use_ema
:
save_model
(
status
[
'weight'
],
self
.
save_dir
,
save_name
,
epoch_id
+
1
,
self
.
model
.
optimizer
)
save_model
(
weight
,
self
.
save_dir
,
'{}_ema'
.
format
(
save_name
),
epoch_id
+
1
)
# save model and ema_model
save_model
(
status
[
'weight'
],
self
.
model
.
optimizer
,
self
.
save_dir
,
save_name
,
epoch_id
+
1
,
ema_model
=
weight
)
else
:
save_model
(
weight
,
self
.
save_dir
,
save_name
,
epoch_id
+
1
,
s
elf
.
model
.
optimizer
)
save_model
(
weight
,
self
.
model
.
optimizer
,
self
.
save_dir
,
s
ave_name
,
epoch_id
+
1
)
class
WiferFaceEval
(
Callback
):
...
...
ppdet/optimizer.py
浏览文件 @
34a74b39
...
...
@@ -332,7 +332,7 @@ class ModelEMA(object):
for
k
,
v
in
self
.
state_dict
.
items
():
self
.
state_dict
[
k
]
=
paddle
.
zeros_like
(
v
)
def
resume
(
self
,
state_dict
,
step
):
def
resume
(
self
,
state_dict
,
step
=
0
):
for
k
,
v
in
state_dict
.
items
():
self
.
state_dict
[
k
]
=
v
self
.
step
=
step
...
...
ppdet/utils/checkpoint.py
浏览文件 @
34a74b39
...
...
@@ -72,7 +72,14 @@ def load_weight(model, weight, optimizer=None, ema=None):
raise
ValueError
(
"Model pretrain path {} does not "
"exists."
.
format
(
pdparam_path
))
param_state_dict
=
paddle
.
load
(
pdparam_path
)
if
ema
is
not
None
and
os
.
path
.
exists
(
path
+
'.pdema'
):
# Exchange model and ema_model to load
ema_state_dict
=
paddle
.
load
(
pdparam_path
)
param_state_dict
=
paddle
.
load
(
path
+
'.pdema'
)
else
:
ema_state_dict
=
None
param_state_dict
=
paddle
.
load
(
pdparam_path
)
model_dict
=
model
.
state_dict
()
model_weight
=
{}
incorrect_keys
=
0
...
...
@@ -102,10 +109,11 @@ def load_weight(model, weight, optimizer=None, ema=None):
last_epoch
=
optim_state_dict
.
pop
(
'last_epoch'
)
optimizer
.
set_state_dict
(
optim_state_dict
)
if
ema
is
not
None
and
os
.
path
.
exists
(
path
+
'_ema.pdparams'
):
ema_state_dict
=
paddle
.
load
(
path
+
'_ema.pdparams'
)
if
ema_state_dict
is
not
None
:
ema
.
resume
(
ema_state_dict
,
optim_state_dict
[
'LR_Scheduler'
][
'last_epoch'
])
elif
ema_state_dict
is
not
None
:
ema
.
resume
(
ema_state_dict
)
return
last_epoch
...
...
@@ -205,31 +213,43 @@ def load_pretrain_weight(model, pretrain_weight):
logger
.
info
(
'Finish loading model weights: {}'
.
format
(
weights_path
))
def
save_model
(
model
,
save_dir
,
save_name
,
last_epoch
,
optimizer
=
None
):
def
save_model
(
model
,
optimizer
,
save_dir
,
save_name
,
last_epoch
,
ema_model
=
None
):
"""
save model into disk.
Args:
model (
paddle.nn.Layer): the Layer instalce
to save parameters.
model (
dict): the model state_dict
to save parameters.
optimizer (paddle.optimizer.Optimizer): the Optimizer instance to
save optimizer states.
save_dir (str): the directory to be saved.
save_name (str): the path to be saved.
last_epoch (int): the epoch index.
ema_model (dict|None): the ema_model state_dict to save parameters.
"""
if
paddle
.
distributed
.
get_rank
()
!=
0
:
return
assert
isinstance
(
model
,
dict
),
(
"model is not a instance of dict, "
"please call model.state_dict() to get."
)
if
not
os
.
path
.
exists
(
save_dir
):
os
.
makedirs
(
save_dir
)
save_path
=
os
.
path
.
join
(
save_dir
,
save_name
)
if
isinstance
(
model
,
nn
.
Layer
):
paddle
.
save
(
model
.
state_dict
(),
save_path
+
".pdparams"
)
else
:
assert
isinstance
(
model
,
dict
),
'model is not a instance of nn.layer or dict'
# save model
if
ema_model
is
None
:
paddle
.
save
(
model
,
save_path
+
".pdparams"
)
if
optimizer
is
not
None
:
state_dict
=
optimizer
.
state_dict
()
state_dict
[
'last_epoch'
]
=
last_epoch
paddle
.
save
(
state_dict
,
save_path
+
".pdopt"
)
logger
.
info
(
"Save checkpoint: {}"
.
format
(
save_dir
))
else
:
assert
isinstance
(
ema_model
,
dict
),
(
"ema_model is not a instance of dict, "
"please call model.state_dict() to get."
)
# Exchange model and ema_model to save
paddle
.
save
(
ema_model
,
save_path
+
".pdparams"
)
paddle
.
save
(
model
,
save_path
+
".pdema"
)
# save optimizer
state_dict
=
optimizer
.
state_dict
()
state_dict
[
'last_epoch'
]
=
last_epoch
paddle
.
save
(
state_dict
,
save_path
+
".pdopt"
)
logger
.
info
(
"Save checkpoint: {}"
.
format
(
save_dir
))
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录