Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
59a3dcfc
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看板
未验证
提交
59a3dcfc
编写于
4月 25, 2022
作者:
G
gaotingquan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: amp eval
上级
fea9522a
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
21 addition
and
20 deletion
+21
-20
ppcls/engine/engine.py
ppcls/engine/engine.py
+10
-9
ppcls/engine/evaluation/classification.py
ppcls/engine/evaluation/classification.py
+11
-11
未找到文件。
ppcls/engine/engine.py
浏览文件 @
59a3dcfc
...
...
@@ -99,8 +99,8 @@ class Engine(object):
paddle
.
__version__
,
self
.
device
))
# AMP training and evaluating
self
.
amp
=
"AMP"
in
self
.
config
if
self
.
amp
and
self
.
config
[
"AMP"
]
is
not
None
:
self
.
amp
=
"AMP"
in
self
.
config
and
self
.
config
[
"AMP"
]
is
not
None
if
self
.
amp
:
self
.
scale_loss
=
self
.
config
[
"AMP"
].
get
(
"scale_loss"
,
1.0
)
self
.
use_dynamic_loss_scaling
=
self
.
config
[
"AMP"
].
get
(
"use_dynamic_loss_scaling"
,
False
)
...
...
@@ -228,7 +228,7 @@ class Engine(object):
len
(
self
.
train_dataloader
),
[
self
.
model
,
self
.
train_loss_func
])
# for amp
training
# for amp
if
self
.
amp
:
self
.
scaler
=
paddle
.
amp
.
GradScaler
(
init_loss_scaling
=
self
.
scale_loss
,
...
...
@@ -239,12 +239,13 @@ class Engine(object):
logger
.
warning
(
msg
)
self
.
config
[
'AMP'
][
"level"
]
=
"O1"
amp_level
=
"O1"
self
.
model
,
self
.
optimizer
=
paddle
.
amp
.
decorate
(
models
=
self
.
model
,
optimizers
=
self
.
optimizer
,
level
=
amp_level
,
save_dtype
=
'float32'
)
if
len
(
self
.
train_loss_func
.
parameters
())
>
0
:
self
.
model
=
paddle
.
amp
.
decorate
(
models
=
self
.
model
,
level
=
amp_level
,
save_dtype
=
'float32'
)
# TODO(gaotingquan): to compatible with Paddle develop and 2.2
if
isinstance
(
self
.
model
,
tuple
):
self
.
model
=
self
.
model
[
0
]
if
self
.
mode
==
"train"
and
len
(
self
.
train_loss_func
.
parameters
(
))
>
0
:
self
.
train_loss_func
=
paddle
.
amp
.
decorate
(
models
=
self
.
train_loss_func
,
level
=
amp_level
,
...
...
ppcls/engine/evaluation/classification.py
浏览文件 @
59a3dcfc
...
...
@@ -32,6 +32,15 @@ def classification_eval(engine, epoch_id=0):
}
print_batch_step
=
engine
.
config
[
"Global"
][
"print_batch_step"
]
if
engine
.
amp
:
amp_level
=
engine
.
config
[
'AMP'
].
get
(
"level"
,
"O1"
).
upper
()
if
amp_level
==
"O2"
and
engine
.
config
[
"AMP"
].
get
(
"use_fp16_test"
,
False
):
engine
.
config
[
"AMP"
][
"use_fp16_test"
]
=
True
msg
=
"Only support FP16 evaluation when AMP O2 is enabled."
logger
.
warning
(
msg
)
amp_eval
=
engine
.
config
[
"AMP"
].
get
(
"use_fp16_test"
,
False
)
metric_key
=
None
tic
=
time
.
time
()
accum_samples
=
0
...
...
@@ -58,15 +67,7 @@ def classification_eval(engine, epoch_id=0):
batch
[
1
]
=
batch
[
1
].
reshape
([
-
1
,
1
]).
astype
(
"int64"
)
# image input
if
engine
.
amp
and
(
engine
.
config
[
'AMP'
].
get
(
"level"
,
"O1"
).
upper
()
==
"O2"
or
engine
.
config
[
"AMP"
].
get
(
"use_fp16_test"
,
False
)):
amp_level
=
engine
.
config
[
'AMP'
].
get
(
"level"
,
"O1"
).
upper
()
if
amp_level
==
"O2"
:
msg
=
"Only support FP16 evaluation when AMP O2 is enabled."
logger
.
warning
(
msg
)
if
engine
.
amp
and
amp_eval
:
with
paddle
.
amp
.
auto_cast
(
custom_black_list
=
{
"flatten_contiguous_range"
,
"greater_than"
...
...
@@ -119,8 +120,7 @@ def classification_eval(engine, epoch_id=0):
# calc loss
if
engine
.
eval_loss_func
is
not
None
:
if
engine
.
amp
and
engine
.
config
[
"AMP"
].
get
(
"use_fp16_test"
,
False
):
amp_level
=
engine
.
config
[
'AMP'
].
get
(
"level"
,
"O1"
).
upper
()
if
engine
.
amp
and
amp_eval
:
with
paddle
.
amp
.
auto_cast
(
custom_black_list
=
{
"flatten_contiguous_range"
,
"greater_than"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录