Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
0beb613a
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
0beb613a
编写于
5月 14, 2019
作者:
Z
zhengya01
提交者:
kolinwei
5月 14, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add ce for deep_attention_matching (#2226)
上级
45d41e25
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
96 addition
and
2 deletion
+96
-2
PaddleNLP/dialogue_model_toolkit/deep_attention_matching/.run_ce.sh
...dialogue_model_toolkit/deep_attention_matching/.run_ce.sh
+25
-0
PaddleNLP/dialogue_model_toolkit/deep_attention_matching/__init__.py
...ialogue_model_toolkit/deep_attention_matching/__init__.py
+0
-0
PaddleNLP/dialogue_model_toolkit/deep_attention_matching/_ce.py
...NLP/dialogue_model_toolkit/deep_attention_matching/_ce.py
+60
-0
PaddleNLP/dialogue_model_toolkit/deep_attention_matching/main.py
...LP/dialogue_model_toolkit/deep_attention_matching/main.py
+11
-2
未找到文件。
PaddleNLP/dialogue_model_toolkit/deep_attention_matching/.run_ce.sh
0 → 100755
浏览文件 @
0beb613a
export
CE_MODE_X
=
ce
export
CUDA_VISIBLE_DEVICES
=
0
python
-u
main.py
\
--do_train
True
\
--use_cuda
\
--data_path
./data/ubuntu/data_small.pkl
\
--save_path
./model_files/ubuntu
\
--use_pyreader
\
--vocab_size
434512
\
--_EOS_
28270
\
--batch_size
32 | python _ce.py
export
CUDA_VISIBLE_DEVICES
=
0,1,2,3
python
-u
main.py
\
--do_train
True
\
--use_cuda
\
--data_path
./data/ubuntu/data_small.pkl
\
--save_path
./model_files/ubuntu
\
--use_pyreader
\
--vocab_size
434512
\
--_EOS_
28270
\
--batch_size
32 | python _ce.py
PaddleNLP/dialogue_model_toolkit/deep_attention_matching/__init__.py
0 → 100644
浏览文件 @
0beb613a
PaddleNLP/dialogue_model_toolkit/deep_attention_matching/_ce.py
0 → 100644
浏览文件 @
0beb613a
# this file is only used for continuous evaluation test!
import
os
import
sys
sys
.
path
.
append
(
os
.
environ
[
'ceroot'
])
from
kpi
import
CostKpi
from
kpi
import
DurationKpi
train_cost_card1
=
CostKpi
(
'train_cost_card1'
,
0.02
,
0
,
actived
=
True
)
train_cost_card4
=
CostKpi
(
'train_cost_card4'
,
0.06
,
0
,
actived
=
True
)
train_duration_card1
=
DurationKpi
(
'train_duration_card1'
,
0.01
,
0
,
actived
=
True
)
train_duration_card4
=
DurationKpi
(
'train_duration_card4'
,
0.01
,
0
,
actived
=
True
)
tracking_kpis
=
[
train_cost_card1
,
train_cost_card4
,
train_duration_card1
,
train_duration_card4
,
]
def
parse_log
(
log
):
'''
This method should be implemented by model developers.
The suggestion:
each line in the log should be key, value, for example:
"
train_cost
\t
1.0
test_cost
\t
1.0
train_cost
\t
1.0
train_cost
\t
1.0
train_acc
\t
1.2
"
'''
for
line
in
log
.
split
(
'
\n
'
):
fs
=
line
.
strip
().
split
(
'
\t
'
)
print
(
fs
)
if
len
(
fs
)
==
3
and
fs
[
0
]
==
'kpis'
:
kpi_name
=
fs
[
1
]
kpi_value
=
float
(
fs
[
2
])
yield
kpi_name
,
kpi_value
def
log_to_ce
(
log
):
kpi_tracker
=
{}
for
kpi
in
tracking_kpis
:
kpi_tracker
[
kpi
.
name
]
=
kpi
for
(
kpi_name
,
kpi_value
)
in
parse_log
(
log
):
print
(
kpi_name
,
kpi_value
)
kpi_tracker
[
kpi_name
].
add_record
(
kpi_value
)
kpi_tracker
[
kpi_name
].
persist
()
if
__name__
==
'__main__'
:
log
=
sys
.
stdin
.
read
()
log_to_ce
(
log
)
PaddleNLP/dialogue_model_toolkit/deep_attention_matching/main.py
浏览文件 @
0beb613a
...
...
@@ -336,8 +336,9 @@ def train(args):
.
format
(
epoch
,
"%2.2f sec"
%
pass_time_cost
))
# For internal continuous evaluation
if
"CE_MODE_X"
in
os
.
environ
:
print
(
"kpis train_cost %f"
%
last_cost
)
print
(
"kpis train_duration %f"
%
train_time
)
card_num
=
get_cards
()
print
(
"kpis
\t
train_cost_card%d
\t
%f"
%
(
card_num
,
last_cost
))
print
(
"kpis
\t
train_duration_card%d
\t
%f"
%
(
card_num
,
train_time
))
def
test
(
args
):
...
...
@@ -455,6 +456,14 @@ def test(args):
print
(
time
.
strftime
(
'%Y-%m-%d %H:%M:%S'
,
time
.
localtime
(
time
.
time
())))
def
get_cards
():
num
=
0
cards
=
os
.
environ
.
get
(
'CUDA_VISIBLE_DEVICES'
,
''
)
if
cards
!=
''
:
num
=
len
(
cards
.
split
(
","
))
return
num
if
__name__
==
'__main__'
:
args
=
config
.
parse_args
()
config
.
print_arguments
(
args
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录