Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
803da664
P
Paddle
项目概览
Crayon鑫
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
803da664
编写于
3月 01, 2017
作者:
H
hedaoyuan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add test
上级
1d0a8c2f
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
29 addition
and
0 deletion
+29
-0
demo/sentiment/train_v2.py
demo/sentiment/train_v2.py
+29
-0
未找到文件。
demo/sentiment/train_v2.py
浏览文件 @
803da664
...
@@ -142,6 +142,28 @@ def data_reader():
...
@@ -142,6 +142,28 @@ def data_reader():
yield
(
word_slot
,
label
)
yield
(
word_slot
,
label
)
def
test_reader
():
data_dir
=
"./data/pre-imdb"
train_file
=
"train_part_000"
test_file
=
"test_part_000"
dict_file
=
"dict.txt"
train_file
=
join_path
(
data_dir
,
train_file
)
test_file
=
join_path
(
data_dir
,
test_file
)
dict_file
=
join_path
(
data_dir
,
dict_file
)
with
open
(
dict_file
,
'r'
)
as
fdict
,
open
(
test_file
,
'r'
)
as
ftest
:
dictionary
=
dict
()
for
i
,
line
in
enumerate
(
fdict
):
dictionary
[
line
.
split
(
'
\t
'
)[
0
]]
=
i
for
line_count
,
line
in
enumerate
(
ftest
):
label
,
comment
=
line
.
strip
().
split
(
'
\t\t
'
)
label
=
int
(
label
)
words
=
comment
.
split
()
word_slot
=
[
dictionary
[
w
]
for
w
in
words
if
w
in
dictionary
]
yield
(
word_slot
,
label
)
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
data_dir
=
"./data/pre-imdb"
data_dir
=
"./data/pre-imdb"
train_list
=
"train.list"
train_list
=
"train.list"
...
@@ -170,6 +192,13 @@ if __name__ == '__main__':
...
@@ -170,6 +192,13 @@ if __name__ == '__main__':
if
event
.
batch_id
%
100
==
0
:
if
event
.
batch_id
%
100
==
0
:
print
"Pass %d, Batch %d, Cost %f, %s"
%
(
print
"Pass %d, Batch %d, Cost %f, %s"
%
(
event
.
pass_id
,
event
.
batch_id
,
event
.
cost
,
event
.
metrics
)
event
.
pass_id
,
event
.
batch_id
,
event
.
cost
,
event
.
metrics
)
if
isinstance
(
event
,
paddle
.
event
.
EndPass
):
result
=
trainer
.
test
(
reader
=
paddle
.
reader
.
batched
(
test_reader
,
batch_size
=
128
),
reader_dict
=
{
'word'
:
0
,
'label'
:
1
})
print
"Test with Pass %d, %s"
%
(
event
.
pass_id
,
result
.
metrics
)
trainer
=
paddle
.
trainer
.
SGD
(
cost
=
cost
,
trainer
=
paddle
.
trainer
.
SGD
(
cost
=
cost
,
parameters
=
parameters
,
parameters
=
parameters
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录