Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
b2273c5e
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看板
提交
b2273c5e
编写于
3月 15, 2019
作者:
Z
zhengya01
提交者:
Yibing Liu
3月 15, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Ce chinese ner (#1890)
* add chinese_ner ce * add chinese_ner ce
上级
b9c32c77
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
132 addition
and
1 deletion
+132
-1
fluid/PaddleNLP/chinese_ner/.run_ce.sh
fluid/PaddleNLP/chinese_ner/.run_ce.sh
+20
-0
fluid/PaddleNLP/chinese_ner/__init__.py
fluid/PaddleNLP/chinese_ner/__init__.py
+0
-0
fluid/PaddleNLP/chinese_ner/_ce.py
fluid/PaddleNLP/chinese_ner/_ce.py
+66
-0
fluid/PaddleNLP/chinese_ner/train.py
fluid/PaddleNLP/chinese_ner/train.py
+46
-1
未找到文件。
fluid/PaddleNLP/chinese_ner/.run_ce.sh
0 → 100755
浏览文件 @
b2273c5e
#!/bin/bash
export
MKL_NUM_THREADS
=
1
export
OMP_NUM_THREADS
=
1
cudaid
=
${
chinese_ner
:
=0
}
# use 0-th card as default
export
CUDA_VISIBLE_DEVICES
=
$cudaid
FLAGS_benchmark
=
true
python train.py
--num_passes
300
--device
GPU
--enable_ce
| python _ce.py
cudaid
=
${
chinese_ner_4
:
=0,1,2,3
}
# use 0-th card as default
export
CUDA_VISIBLE_DEVICES
=
$cudaid
FLAGS_benchmark
=
true
python train.py
--num_passes
300
--device
GPU
--parallel
True
--enable_ce
| python _ce.py
export
CPU_NUM
=
1
export
NUM_THREADS
=
1
FLAGS_benchmark
=
true
python train.py
--num_passes
300
--device
CPU
--enable_ce
| python _ce.py
fluid/PaddleNLP/chinese_ner/__init__.py
0 → 100644
浏览文件 @
b2273c5e
fluid/PaddleNLP/chinese_ner/_ce.py
0 → 100644
浏览文件 @
b2273c5e
# 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_recall_cpu1_thread1_kpi
=
AccKpi
(
'train_recall_cpu1_thread1'
,
0.08
,
0
)
each_pass_duration_gpu1_kpi
=
DurationKpi
(
'each_pass_duration_gpu1'
,
0.08
,
0
,
actived
=
True
)
train_recall_gpu1_kpi
=
AccKpi
(
'train_recall_gpu1'
,
0.08
,
0
)
each_pass_duration_gpu4_kpi
=
DurationKpi
(
'each_pass_duration_gpu4'
,
0.08
,
0
,
actived
=
True
)
train_recall_gpu4_kpi
=
AccKpi
(
'train_recall_gpu4'
,
0.08
,
0
)
tracking_kpis
=
[
each_pass_duration_cpu1_thread1_kpi
,
train_recall_cpu1_thread1_kpi
,
each_pass_duration_gpu1_kpi
,
train_recall_gpu1_kpi
,
each_pass_duration_gpu4_kpi
,
train_recall_gpu4_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/PaddleNLP/chinese_ner/train.py
浏览文件 @
b2273c5e
...
...
@@ -59,6 +59,10 @@ def parse_args():
type
=
int
,
default
=
1000
,
help
=
'The number of epochs. (default: %(default)d)'
)
parser
.
add_argument
(
'--enable_ce'
,
action
=
'store_true'
,
help
=
'If set, run the task with continuous evaluation logs.'
)
args
=
parser
.
parse_args
()
return
args
...
...
@@ -265,6 +269,10 @@ def main(args):
main
=
fluid
.
Program
()
startup
=
fluid
.
Program
()
if
args
.
enable_ce
:
SEED
=
102
main
.
random_seed
=
SEED
startup
.
random_seed
=
SEED
with
fluid
.
program_guard
(
main
,
startup
):
avg_cost
,
feature_out
,
word
,
mention
,
target
=
ner_net
(
args
.
word_dict_len
,
args
.
label_dict_len
)
...
...
@@ -313,6 +321,8 @@ def main(args):
train_exe
=
exe
test_exe
=
exe
total_time
=
0
ce_info
=
[]
batch_id
=
0
for
pass_id
in
range
(
args
.
num_passes
):
chunk_evaluator
.
reset
()
...
...
@@ -336,11 +346,13 @@ def main(args):
except
StopIteration
:
break
end_time
=
time
.
time
()
total_time
+=
end_time
-
start_time
print
(
"pass_id:"
+
str
(
pass_id
)
+
", time_cost:"
+
str
(
end_time
-
start_time
)
+
"s"
)
precision
,
recall
,
f1_score
=
chunk_evaluator
.
eval
()
print
(
"[Train] precision:"
+
str
(
precision
)
+
", recall:"
+
str
(
recall
)
+
", f1:"
+
str
(
f1_score
))
ce_info
.
append
(
recall
)
p
,
r
,
f1
=
test2
(
exe
,
chunk_evaluator
,
inference_program
,
test_reader
,
place
,
[
num_infer_chunks
,
num_label_chunks
,
num_correct_chunks
])
...
...
@@ -350,7 +362,40 @@ def main(args):
"params_pass_%d"
%
pass_id
)
fluid
.
io
.
save_inference_model
(
save_dirname
,
[
'word'
,
'mention'
],
[
crf_decode
],
exe
)
# only for ce
if
args
.
enable_ce
:
ce_recall
=
0
try
:
ce_recall
=
ce_info
[
-
2
]
except
:
print
(
"ce info error"
)
epoch_idx
=
args
.
num_passes
device
=
get_device
(
args
)
if
args
.
device
==
"GPU"
:
gpu_num
=
device
[
1
]
print
(
"kpis
\t
each_pass_duration_gpu%s
\t
%s"
%
(
gpu_num
,
total_time
/
epoch_idx
))
print
(
"kpis
\t
train_recall_gpu%s
\t
%s"
%
(
gpu_num
,
ce_recall
))
else
:
cpu_num
=
device
[
1
]
threads_num
=
device
[
2
]
print
(
"kpis
\t
each_pass_duration_cpu%s_thread%s
\t
%s"
%
(
cpu_num
,
threads_num
,
total_time
/
epoch_idx
))
print
(
"kpis
\t
train_recall_cpu%s_thread%s
\t
%s"
%
(
cpu_num
,
threads_num
,
ce_recall
))
def
get_device
(
args
):
if
args
.
device
==
"GPU"
:
gpus
=
os
.
environ
.
get
(
"CUDA_VISIBLE_DEVICES"
,
""
)
gpu_num
=
len
(
gpus
.
split
(
','
))
return
"gpu"
,
gpu_num
else
:
threads_num
=
os
.
environ
.
get
(
'NUM_THREADS'
,
1
)
cpu_num
=
os
.
environ
.
get
(
'CPU_NUM'
,
1
)
return
"cpu"
,
int
(
cpu_num
),
int
(
threads_num
)
if
__name__
==
"__main__"
:
args
=
parse_args
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录