Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
683adcda
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看板
提交
683adcda
编写于
5月 17, 2022
作者:
G
gaotingquan
提交者:
Tingquan Gao
5月 18, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: support AMP infer
上级
5f88903e
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
17 addition
and
10 deletion
+17
-10
ppcls/configs/ImageNet/ResNet/ResNet50_amp_O2_ultra.yaml
ppcls/configs/ImageNet/ResNet/ResNet50_amp_O2_ultra.yaml
+0
-2
ppcls/configs/ImageNet/SENet/SE_ResNeXt101_32x4d_amp_O2_ultra.yaml
...figs/ImageNet/SENet/SE_ResNeXt101_32x4d_amp_O2_ultra.yaml
+0
-2
ppcls/engine/engine.py
ppcls/engine/engine.py
+17
-6
未找到文件。
ppcls/configs/ImageNet/ResNet/ResNet50_amp_O2_ultra.yaml
浏览文件 @
683adcda
...
...
@@ -105,7 +105,6 @@ DataLoader:
mean
:
[
0.485
,
0.456
,
0.406
]
std
:
[
0.229
,
0.224
,
0.225
]
order
:
'
'
output_fp16
:
True
channel_num
:
*image_channel
sampler
:
name
:
DistributedBatchSampler
...
...
@@ -132,7 +131,6 @@ Infer:
mean
:
[
0.485
,
0.456
,
0.406
]
std
:
[
0.229
,
0.224
,
0.225
]
order
:
'
'
output_fp16
:
True
channel_num
:
*image_channel
-
ToCHWImage
:
PostProcess
:
...
...
ppcls/configs/ImageNet/SENet/SE_ResNeXt101_32x4d_amp_O2_ultra.yaml
浏览文件 @
683adcda
...
...
@@ -99,7 +99,6 @@ DataLoader:
mean
:
[
0.485
,
0.456
,
0.406
]
std
:
[
0.229
,
0.224
,
0.225
]
order
:
'
'
output_fp16
:
True
channel_num
:
*image_channel
sampler
:
name
:
DistributedBatchSampler
...
...
@@ -126,7 +125,6 @@ Infer:
mean
:
[
0.485
,
0.456
,
0.406
]
std
:
[
0.229
,
0.224
,
0.225
]
order
:
'
'
output_fp16
:
True
channel_num
:
*image_channel
-
ToCHWImage
:
PostProcess
:
...
...
ppcls/engine/engine.py
浏览文件 @
683adcda
...
...
@@ -239,7 +239,7 @@ class Engine(object):
self
.
amp_eval
=
self
.
config
[
"AMP"
].
get
(
"use_fp16_test"
,
False
)
# TODO(gaotingquan): Paddle not yet support FP32 evaluation when training with AMPO2
if
self
.
config
[
"Global"
].
get
(
if
self
.
mode
==
"train"
and
self
.
config
[
"Global"
].
get
(
"eval_during_train"
,
True
)
and
self
.
amp_level
==
"O2"
and
self
.
amp_eval
==
False
:
msg
=
"PaddlePaddle only support FP16 evaluation when training with AMP O2 now. "
...
...
@@ -269,10 +269,11 @@ class Engine(object):
save_dtype
=
'float32'
)
# paddle version >= 2.3.0 or develop
else
:
self
.
model
=
paddle
.
amp
.
decorate
(
models
=
self
.
model
,
level
=
self
.
amp_level
,
save_dtype
=
'float32'
)
if
self
.
mode
==
"train"
or
self
.
amp_eval
:
self
.
model
=
paddle
.
amp
.
decorate
(
models
=
self
.
model
,
level
=
self
.
amp_level
,
save_dtype
=
'float32'
)
if
self
.
mode
==
"train"
and
len
(
self
.
train_loss_func
.
parameters
(
))
>
0
:
...
...
@@ -431,7 +432,17 @@ class Engine(object):
image_file_list
.
append
(
image_file
)
if
len
(
batch_data
)
>=
batch_size
or
idx
==
len
(
image_list
)
-
1
:
batch_tensor
=
paddle
.
to_tensor
(
batch_data
)
out
=
self
.
model
(
batch_tensor
)
if
self
.
amp
and
self
.
amp_eval
:
with
paddle
.
amp
.
auto_cast
(
custom_black_list
=
{
"flatten_contiguous_range"
,
"greater_than"
},
level
=
self
.
amp_level
):
out
=
self
.
model
(
batch_tensor
)
else
:
out
=
self
.
model
(
batch_tensor
)
if
isinstance
(
out
,
list
):
out
=
out
[
0
]
if
isinstance
(
out
,
dict
)
and
"logits"
in
out
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录