Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleOCR
提交
69494485
P
PaddleOCR
项目概览
PaddlePaddle
/
PaddleOCR
1 年多 前同步成功
通知
1541
Star
32964
Fork
6643
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
108
列表
看板
标记
里程碑
合并请求
7
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleOCR
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
108
Issue
108
列表
看板
标记
里程碑
合并请求
7
合并请求
7
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
69494485
编写于
6月 08, 2023
作者:
Z
Zhang Ting
提交者:
GitHub
6月 08, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
improve amp training (#10119)
上级
062e2c50
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
18 addition
and
8 deletion
+18
-8
configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_cml.yml
configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_cml.yml
+1
-1
tools/program.py
tools/program.py
+12
-5
tools/train.py
tools/train.py
+5
-2
未找到文件。
configs/det/ch_PP-OCRv2/ch_PP-OCRv2_det_cml.yml
浏览文件 @
69494485
...
...
@@ -16,7 +16,7 @@ Global:
save_res_path
:
./output/det_db/predicts_db.txt
use_amp
:
False
amp_level
:
O2
amp_
custom_black_list
:
[
'
exp'
]
amp_
dtype
:
bfloat16
Architecture
:
name
:
DistillationModel
...
...
tools/program.py
浏览文件 @
69494485
...
...
@@ -189,7 +189,8 @@ def train(config,
scaler
=
None
,
amp_level
=
'O2'
,
amp_custom_black_list
=
[],
amp_custom_white_list
=
[]):
amp_custom_white_list
=
[],
amp_dtype
=
'float16'
):
cal_metric_during_train
=
config
[
'Global'
].
get
(
'cal_metric_during_train'
,
False
)
calc_epoch_interval
=
config
[
'Global'
].
get
(
'calc_epoch_interval'
,
1
)
...
...
@@ -279,7 +280,8 @@ def train(config,
with
paddle
.
amp
.
auto_cast
(
level
=
amp_level
,
custom_black_list
=
amp_custom_black_list
,
custom_white_list
=
amp_custom_white_list
):
custom_white_list
=
amp_custom_white_list
,
dtype
=
amp_dtype
):
if
model_type
==
'table'
or
extra_input
:
preds
=
model
(
images
,
data
=
batch
[
1
:])
elif
model_type
in
[
"kie"
]:
...
...
@@ -393,7 +395,9 @@ def train(config,
extra_input
=
extra_input
,
scaler
=
scaler
,
amp_level
=
amp_level
,
amp_custom_black_list
=
amp_custom_black_list
)
amp_custom_black_list
=
amp_custom_black_list
,
amp_custom_white_list
=
amp_custom_white_list
,
amp_dtype
=
amp_dtype
)
cur_metric_str
=
'cur metric, {}'
.
format
(
', '
.
join
(
[
'{}: {}'
.
format
(
k
,
v
)
for
k
,
v
in
cur_metric
.
items
()]))
logger
.
info
(
cur_metric_str
)
...
...
@@ -486,7 +490,9 @@ def eval(model,
extra_input
=
False
,
scaler
=
None
,
amp_level
=
'O2'
,
amp_custom_black_list
=
[]):
amp_custom_black_list
=
[],
amp_custom_white_list
=
[],
amp_dtype
=
'float16'
):
model
.
eval
()
with
paddle
.
no_grad
():
total_frame
=
0.0
...
...
@@ -509,7 +515,8 @@ def eval(model,
if
scaler
:
with
paddle
.
amp
.
auto_cast
(
level
=
amp_level
,
custom_black_list
=
amp_custom_black_list
):
custom_black_list
=
amp_custom_black_list
,
dtype
=
amp_dtype
):
if
model_type
==
'table'
or
extra_input
:
preds
=
model
(
images
,
data
=
batch
[
1
:])
elif
model_type
in
[
"kie"
]:
...
...
tools/train.py
浏览文件 @
69494485
...
...
@@ -160,6 +160,7 @@ def main(config, device, logger, vdl_writer):
use_amp
=
config
[
"Global"
].
get
(
"use_amp"
,
False
)
amp_level
=
config
[
"Global"
].
get
(
"amp_level"
,
'O2'
)
amp_dtype
=
config
[
"Global"
].
get
(
"amp_dtype"
,
'float16'
)
amp_custom_black_list
=
config
[
'Global'
].
get
(
'amp_custom_black_list'
,
[])
amp_custom_white_list
=
config
[
'Global'
].
get
(
'amp_custom_white_list'
,
[])
if
use_amp
:
...
...
@@ -181,7 +182,8 @@ def main(config, device, logger, vdl_writer):
models
=
model
,
optimizers
=
optimizer
,
level
=
amp_level
,
master_weight
=
True
)
master_weight
=
True
,
dtype
=
amp_dtype
)
else
:
scaler
=
None
...
...
@@ -195,7 +197,8 @@ def main(config, device, logger, vdl_writer):
program
.
train
(
config
,
train_dataloader
,
valid_dataloader
,
device
,
model
,
loss_class
,
optimizer
,
lr_scheduler
,
post_process_class
,
eval_class
,
pre_best_model_dict
,
logger
,
vdl_writer
,
scaler
,
amp_level
,
amp_custom_black_list
,
amp_custom_white_list
)
amp_level
,
amp_custom_black_list
,
amp_custom_white_list
,
amp_dtype
)
def
test_reader
(
config
,
device
,
logger
):
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录