Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
bb48a52c
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看板
提交
bb48a52c
编写于
11月 20, 2019
作者:
H
hysunflower
提交者:
Jinhua Liang
11月 20, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add maxiter and profiler for padding models (#3947)
* add profiler and max_iter for paddingrnn * add profiler for paddingrnn
上级
097bad64
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
18 addition
and
3 deletion
+18
-3
PaddleNLP/language_model/args.py
PaddleNLP/language_model/args.py
+3
-0
PaddleNLP/language_model/train.py
PaddleNLP/language_model/train.py
+15
-3
未找到文件。
PaddleNLP/language_model/args.py
浏览文件 @
bb48a52c
...
...
@@ -80,5 +80,8 @@ def parse_args():
parser
.
add_argument
(
'--enable_ce'
,
action
=
'store_true'
)
parser
.
add_argument
(
'--batch_size'
,
type
=
int
,
default
=
0
,
help
=
'batch size'
)
parser
.
add_argument
(
'--max_epoch'
,
type
=
int
,
default
=
0
,
help
=
'max epoch'
)
# NOTE: args for profiler, used for benchmark
parser
.
add_argument
(
'--profiler_path'
,
type
=
str
,
default
=
'/tmp/paddingrnn.profile'
,
help
=
'the profiler output file path. used for benchmark'
)
args
=
parser
.
parse_args
()
return
args
PaddleNLP/language_model/train.py
浏览文件 @
bb48a52c
...
...
@@ -25,6 +25,7 @@ import contextlib
from
distutils.dir_util
import
mkpath
import
paddle
import
paddle.fluid
as
fluid
from
paddle.fluid
import
profiler
import
paddle.fluid.framework
as
framework
import
paddle.fluid.profiler
as
profiler
from
paddle.fluid.executor
import
Executor
...
...
@@ -50,9 +51,9 @@ SEED = 123
@
contextlib
.
contextmanager
def
profile_context
(
profile
=
True
):
def
profile_context
(
profile
=
True
,
profiler_path
=
'/tmp/paddingrnn.profile'
):
if
profile
:
with
profiler
.
profiler
(
'All'
,
'total'
,
'/tmp/paddingrnn.profile'
):
with
profiler
.
profiler
(
'All'
,
'total'
,
profiler_path
):
yield
else
:
yield
...
...
@@ -318,6 +319,12 @@ def main():
print
(
"-- Epoch:[%d]; Batch:[%d]; Time: %.5f s; ppl: %.5f, lr: %.5f"
%
(
epoch_id
,
batch_id
,
batch_time
,
ppl
[
0
],
lr
[
0
]))
# profiler tools for benchmark
if
args
.
profile
and
batch_id
==
log_interval
:
profiler
.
reset_profiler
()
elif
args
.
profile
and
batch_id
==
(
log_interval
+
5
):
break
ppl
=
np
.
exp
(
total_loss
/
iters
)
return
ppl
...
...
@@ -371,6 +378,11 @@ def main():
%
(
epoch_id
,
batch_id
,
batch_time
,
ppl
[
0
],
lr
[
0
]))
batch_id
+=
1
# profiler tools for benchmark
if
args
.
profile
and
batch_id
==
log_interval
:
profiler
.
reset_profiler
()
elif
args
.
profile
and
batch_id
==
(
log_interval
+
5
):
break
except
fluid
.
core
.
EOFException
:
dataloader
.
reset
()
...
...
@@ -455,7 +467,7 @@ def main():
fluid
.
save
(
main_program
,
save_model_dir
)
print
(
"Saved model to: %s.
\n
"
%
save_model_dir
)
with
profile_context
(
args
.
profile
):
with
profile_context
(
args
.
profile
,
args
.
profiler_path
):
train
()
test_ppl
=
eval
(
test_data
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录