Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
eab208a9
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看板
提交
eab208a9
编写于
2月 28, 2019
作者:
Z
zhengya01
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add multiview_simnet ce
上级
71614226
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
105 addition
and
0 deletion
+105
-0
fluid/PaddleRec/multiview_simnet/.run_ce.sh
fluid/PaddleRec/multiview_simnet/.run_ce.sh
+11
-0
fluid/PaddleRec/multiview_simnet/_ce.py
fluid/PaddleRec/multiview_simnet/_ce.py
+58
-0
fluid/PaddleRec/multiview_simnet/train.py
fluid/PaddleRec/multiview_simnet/train.py
+36
-0
未找到文件。
fluid/PaddleRec/multiview_simnet/.run_ce.sh
0 → 100755
浏览文件 @
eab208a9
#!/bin/bash
export
MKL_NUM_THREADS
=
1
export
OMP_NUM_THREADS
=
1
export
CPU_NUM
=
1
export
NUM_THREADS
=
1
FLAGS_benchmark
=
true
python train.py
--enable_ce
| python _ce.py
fluid/PaddleRec/multiview_simnet/_ce.py
0 → 100644
浏览文件 @
eab208a9
# 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
from
kpi
import
AccKpi
each_pass_duration_cpu1_thread1_kpi
=
DurationKpi
(
'each_pass_duration_cpu1_thread1'
,
0.08
,
0
,
actived
=
True
)
train_loss_cpu1_thread1_kpi
=
CostKpi
(
'train_loss_cpu1_thread1'
,
0.08
,
0
)
tracking_kpis
=
[
each_pass_duration_cpu1_thread1_kpi
,
train_loss_cpu1_thread1_kpi
,
]
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
)
fluid/PaddleRec/multiview_simnet/train.py
浏览文件 @
eab208a9
...
...
@@ -81,10 +81,19 @@ def parse_args():
"for index processing"
)
parser
.
add_argument
(
"--hidden_size"
,
type
=
int
,
default
=
128
,
help
=
"Hidden dim"
)
parser
.
add_argument
(
'--enable_ce'
,
action
=
'store_true'
,
help
=
'If set, run the task with continuous evaluation logs.'
)
return
parser
.
parse_args
()
def
start_train
(
args
):
if
args
.
enable_ce
:
SEED
=
102
fluid
.
default_startup_program
().
random_seed
=
SEED
fluid
.
default_startup_program
().
random_seed
=
SEED
dataset
=
reader
.
SyntheticDataset
(
args
.
sparse_feature_dim
,
args
.
query_slots
,
args
.
title_slots
)
train_reader
=
paddle
.
batch
(
...
...
@@ -115,7 +124,10 @@ def start_train(args):
exe
=
fluid
.
Executor
(
place
)
exe
.
run
(
startup_program
)
total_time
=
0
ce_info
=
[]
for
pass_id
in
range
(
args
.
epochs
):
start_time
=
time
.
time
()
for
batch_id
,
data
in
enumerate
(
train_reader
()):
loss_val
,
correct_val
=
exe
.
run
(
loop_program
,
feed
=
feeder
.
feed
(
data
),
...
...
@@ -123,10 +135,34 @@ def start_train(args):
logger
.
info
(
"TRAIN --> pass: {} batch_id: {} avg_cost: {}, acc: {}"
.
format
(
pass_id
,
batch_id
,
loss_val
,
float
(
correct_val
)
/
args
.
batch_size
))
ce_info
.
append
(
loss_val
[
0
])
end_time
=
time
.
time
()
total_time
+=
end_time
-
start_time
fluid
.
io
.
save_inference_model
(
args
.
model_output_dir
,
[
val
.
name
for
val
in
all_slots
],
[
avg_cost
,
correct
],
exe
)
# only for ce
if
args
.
enable_ce
:
threads_num
,
cpu_num
=
get_cards
(
args
)
epoch_idx
=
args
.
epochs
ce_loss
=
0
try
:
ce_loss
=
ce_info
[
-
2
]
except
:
logger
.
error
(
"ce info error"
)
print
(
"kpis
\t
each_pass_duration_cpu%s_thread%s
\t
%s"
%
(
cpu_num
,
threads_num
,
total_time
/
epoch_idx
))
print
(
"kpis
\t
train_loss_cpu%s_thread%s
\t
%s"
%
(
cpu_num
,
threads_num
,
ce_loss
))
def
get_cards
(
args
):
threads_num
=
os
.
environ
.
get
(
'NUM_THREADS'
,
1
)
cpu_num
=
os
.
environ
.
get
(
'CPU_NUM'
,
1
)
return
int
(
threads_num
),
int
(
cpu_num
)
def
main
():
args
=
parse_args
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录