Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
cdb8e50a
M
models
项目概览
PaddlePaddle
/
models
大约 1 年 前同步成功
通知
222
Star
6828
Fork
2962
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
602
列表
看板
标记
里程碑
合并请求
255
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
models
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
602
Issue
602
列表
看板
标记
里程碑
合并请求
255
合并请求
255
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
cdb8e50a
编写于
2月 04, 2021
作者:
G
Guo Sheng
提交者:
GitHub
2月 04, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add amp support for BERT. (#5198)
上级
98683b59
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
61 addition
and
20 deletion
+61
-20
PaddleNLP/examples/language_model/bert/README.md
PaddleNLP/examples/language_model/bert/README.md
+8
-4
PaddleNLP/examples/language_model/bert/run_glue.py
PaddleNLP/examples/language_model/bert/run_glue.py
+23
-4
PaddleNLP/examples/language_model/bert/run_pretrain.py
PaddleNLP/examples/language_model/bert/run_pretrain.py
+30
-12
未找到文件。
PaddleNLP/examples/language_model/bert/README.md
浏览文件 @
cdb8e50a
...
...
@@ -74,7 +74,8 @@ python -u ./run_pretrain.py \
--logging_steps
1
\
--save_steps
20000
\
--max_steps
1000000
\
--n_cards
1
--n_cards
1
\
--use_amp
False
```
其中参数释义如下:
...
...
@@ -92,7 +93,8 @@ python -u ./run_pretrain.py \
-
`logging_steps`
表示日志打印间隔。
-
`save_steps`
表示模型保存及评估间隔。
-
`max_steps`
表示最大训练步数。若训练
`num_train_epochs`
轮包含的训练步数大于该值,则达到
`max_steps`
后就提前结束。
-
`n_gpu`
表示使用的 GPU 卡数。若希望使用多卡训练,将其设置为指定数目即可;若为0,则使用CPU。
-
`n_cards`
表示使用的 GPU 卡数。若希望使用多卡训练,将其设置为指定数目即可。
-
`use_amp`
指示是否启用自动混合精度训练。
### 执行Fine-tunning
...
...
@@ -110,7 +112,8 @@ python -u ./run_glue.py \
--logging_steps
1
\
--save_steps
500
\
--output_dir
./tmp/
\
--n_cards
1
--n_cards
1
\
--use_amp
False
```
其中参数释义如下:
...
...
@@ -124,7 +127,8 @@ python -u ./run_glue.py \
-
`logging_steps`
表示日志打印间隔。
-
`save_steps`
表示模型保存及评估间隔。
-
`output_dir`
表示模型保存路径。
-
`n_gpu`
表示使用的 GPU 卡数。若希望使用多卡训练,将其设置为指定数目即可;若为0,则使用CPU。
-
`n_cards`
表示使用的 GPU 卡数。若希望使用多卡训练,将其设置为指定数目即可。
-
`use_amp`
指示是否启用自动混合精度训练。
基于
`bert-base-uncased`
在GLUE各评测任务上Fine-tuning后,在验证集上有如下结果:
...
...
PaddleNLP/examples/language_model/bert/run_glue.py
浏览文件 @
cdb8e50a
...
...
@@ -19,6 +19,7 @@ import sys
import
random
import
time
import
math
import
distutils.util
from
functools
import
partial
import
numpy
as
np
...
...
@@ -161,6 +162,14 @@ def parse_args():
type
=
str
,
default
=
"gpu"
,
help
=
"Device for selecting for the training."
)
parser
.
add_argument
(
"--use_amp"
,
type
=
distutils
.
util
.
strtobool
,
default
=
False
,
help
=
"Enable mixed precision training."
)
parser
.
add_argument
(
"--scale_loss"
,
type
=
float
,
default
=
2
**
15
,
help
=
"The value of scale_loss for fp16."
)
args
=
parser
.
parse_args
()
return
args
...
...
@@ -380,16 +389,26 @@ def do_train(args):
metric
=
metric_class
()
if
args
.
use_amp
:
scaler
=
paddle
.
amp
.
GradScaler
(
init_loss_scaling
=
args
.
scale_loss
)
global_step
=
0
tic_train
=
time
.
time
()
for
epoch
in
range
(
args
.
num_train_epochs
):
for
step
,
batch
in
enumerate
(
train_data_loader
):
global_step
+=
1
input_ids
,
segment_ids
,
labels
=
batch
logits
=
model
(
input_ids
,
segment_ids
)
loss
=
loss_fct
(
logits
,
labels
)
loss
.
backward
()
optimizer
.
step
()
with
paddle
.
amp
.
auto_cast
(
args
.
use_amp
,
custom_white_list
=
[
"layer_norm"
,
"softmax"
,
"gelu"
]):
logits
=
model
(
input_ids
,
segment_ids
)
loss
=
loss_fct
(
logits
,
labels
)
if
args
.
use_amp
:
scaler
.
scale
(
loss
).
backward
()
scaler
.
minimize
(
optimizer
,
loss
)
else
:
loss
.
backward
()
optimizer
.
step
()
lr_scheduler
.
step
()
optimizer
.
clear_gradients
()
if
global_step
%
args
.
logging_steps
==
0
:
...
...
PaddleNLP/examples/language_model/bert/run_pretrain.py
浏览文件 @
cdb8e50a
...
...
@@ -20,6 +20,7 @@ import os
import
random
import
time
import
h5py
import
distutils.util
from
functools
import
partial
from
concurrent.futures
import
ThreadPoolExecutor
...
...
@@ -146,6 +147,14 @@ def parse_args():
type
=
str
,
default
=
"gpu"
,
help
=
"Device for selecting for the training."
)
parser
.
add_argument
(
"--use_amp"
,
type
=
distutils
.
util
.
strtobool
,
default
=
False
,
help
=
"Enable mixed precision training."
)
parser
.
add_argument
(
"--scale_loss"
,
type
=
float
,
default
=
2
**
15
,
help
=
"The value of scale_loss for fp16."
)
args
=
parser
.
parse_args
()
return
args
...
...
@@ -313,6 +322,8 @@ def do_train(args):
p
.
name
for
n
,
p
in
model
.
named_parameters
()
if
not
any
(
nd
in
n
for
nd
in
[
"bias"
,
"norm"
])
])
if
args
.
use_amp
:
scaler
=
paddle
.
amp
.
GradScaler
(
init_loss_scaling
=
args
.
scale_loss
)
pool
=
ThreadPoolExecutor
(
1
)
global_step
=
0
...
...
@@ -370,14 +381,25 @@ def do_train(args):
(
input_ids
,
segment_ids
,
input_mask
,
masked_lm_positions
,
masked_lm_labels
,
next_sentence_labels
,
masked_lm_scale
)
=
batch
prediction_scores
,
seq_relationship_score
=
model
(
input_ids
=
input_ids
,
token_type_ids
=
segment_ids
,
attention_mask
=
input_mask
,
masked_positions
=
masked_lm_positions
)
loss
=
criterion
(
prediction_scores
,
seq_relationship_score
,
masked_lm_labels
,
next_sentence_labels
,
masked_lm_scale
)
with
paddle
.
amp
.
auto_cast
(
args
.
use_amp
,
custom_white_list
=
[
"layer_norm"
,
"softmax"
,
"gelu"
]):
prediction_scores
,
seq_relationship_score
=
model
(
input_ids
=
input_ids
,
token_type_ids
=
segment_ids
,
attention_mask
=
input_mask
,
masked_positions
=
masked_lm_positions
)
loss
=
criterion
(
prediction_scores
,
seq_relationship_score
,
masked_lm_labels
,
next_sentence_labels
,
masked_lm_scale
)
if
args
.
use_amp
:
scaler
.
scale
(
loss
).
backward
()
scaler
.
minimize
(
optimizer
,
loss
)
else
:
loss
.
backward
()
optimizer
.
step
()
lr_scheduler
.
step
()
optimizer
.
clear_gradients
()
if
global_step
%
args
.
logging_steps
==
0
:
if
(
not
args
.
n_cards
>
1
)
or
paddle
.
distributed
.
get_rank
()
==
0
:
...
...
@@ -386,10 +408,6 @@ def do_train(args):
%
(
global_step
,
epoch
,
step
,
loss
,
args
.
logging_steps
/
(
time
.
time
()
-
tic_train
)))
tic_train
=
time
.
time
()
loss
.
backward
()
optimizer
.
step
()
lr_scheduler
.
step
()
optimizer
.
clear_gradients
()
if
global_step
%
args
.
save_steps
==
0
:
if
(
not
args
.
n_cards
>
1
)
or
paddle
.
distributed
.
get_rank
()
==
0
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录