Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
cbbd8144
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看板
未验证
提交
cbbd8144
编写于
12月 28, 2020
作者:
W
wawltor
提交者:
GitHub
12月 28, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add the suport the log format for the benchmark (#5153)
add the suport the log format for the benchmark
上级
f3bd2194
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
22 addition
and
7 deletion
+22
-7
PaddleNLP/benchmark/bert/README.md
PaddleNLP/benchmark/bert/README.md
+1
-1
PaddleNLP/benchmark/bert/run_pretrain_single.py
PaddleNLP/benchmark/bert/run_pretrain_single.py
+21
-6
未找到文件。
PaddleNLP/benchmark/bert/README.md
浏览文件 @
cbbd8144
...
...
@@ -20,7 +20,7 @@ export DATA_DIR=${HOME}/bert_data/wikicorpus_en
### 运行模型训练脚本
```
shell
1. 如果是需要
多
单机多卡/多机多卡训练,则使用下面的命令进行训练
1. 如果是需要单机多卡/多机多卡训练,则使用下面的命令进行训练
unset
CUDA_VISIBLE_DEVICES
fleetrun
--gpus
0,1,2,3 ./run_pretrain.py
\
--model_type
bert
\
...
...
PaddleNLP/benchmark/bert/run_pretrain_single.py
浏览文件 @
cbbd8144
...
...
@@ -266,21 +266,34 @@ def do_train(args):
for
f_id
in
range
(
0
,
len
(
files
)):
train_data_loader
,
_
=
create_pretraining_dataset
(
files
[
f_id
],
args
.
max_predictions_per_seq
,
args
,
data_holders
)
train_reader_cost
=
0.0
train_run_cost
=
0.0
total_samples
=
0
reader_start
=
time
.
time
()
for
step
,
batch
in
enumerate
(
train_data_loader
):
train_reader_cost
+=
time
.
time
()
-
reader_start
global_step
+=
1
train_start
=
time
.
time
()
loss_return
=
exe
.
run
(
main_program
,
\
feed
=
batch
,
fetch_list
=
[
loss
])
train_run_cost
+=
time
.
time
()
-
train_start
total_samples
+=
args
.
batch_size
# In the new 2.0 api, must call this function to change the learning_rate
lr_scheduler
.
step
()
if
global_step
%
args
.
logging_steps
==
0
:
time_cost
=
time
.
time
()
-
tic_train
print
(
"global step %d, epoch: %d, batch: %d, loss: %f, speed: %.2f step/s, ips: %.2f sequences/s"
%
(
global_step
,
epoch
,
step
,
loss_return
[
0
],
args
.
logging_steps
/
time_cost
,
args
.
logging_steps
*
args
.
batch_size
/
time_cost
))
tic_train
=
time
.
time
()
"global step: %d, epoch: %d, batch: %d, loss: %f, "
"avg_reader_cost: %.5f sec, avg_batch_cost: %.5f sec, avg_samples: %.5f, ips: %.5f sequences/sec"
%
(
global_step
,
epoch
,
step
,
loss_return
[
0
],
train_reader_cost
/
args
.
logging_steps
,
(
train_reader_cost
+
train_run_cost
)
/
args
.
logging_steps
,
total_samples
/
args
.
logging_steps
,
total_samples
/
(
train_reader_cost
+
train_run_cost
)))
train_reader_cost
=
0.0
train_run_cost
=
0.0
total_samples
=
0
if
global_step
%
args
.
save_steps
==
0
:
output_dir
=
os
.
path
.
join
(
args
.
output_dir
,
"model_%d"
%
global_step
)
...
...
@@ -290,8 +303,10 @@ def do_train(args):
paddle
.
fluid
.
io
.
save_params
(
exe
,
output_dir
)
tokenizer
.
save_pretrained
(
output_dir
)
if
global_step
>=
args
.
max_steps
:
reader_start
=
time
.
time
()
del
train_data_loader
return
reader_start
=
time
.
time
()
del
train_data_loader
epoch
+=
1
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录