Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
book
提交
ce9bf2fd
B
book
项目概览
PaddlePaddle
/
book
通知
16
Star
4
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
40
列表
看板
标记
里程碑
合并请求
37
Wiki
5
Wiki
分析
仓库
DevOps
项目成员
Pages
B
book
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
40
Issue
40
列表
看板
标记
里程碑
合并请求
37
合并请求
37
Pages
分析
分析
仓库分析
DevOps
Wiki
5
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
ce9bf2fd
编写于
9月 13, 2017
作者:
F
fengjiayi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update train.py of chapter 6
上级
1270d481
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
14 addition
and
9 deletion
+14
-9
06.understand_sentiment/train.py
06.understand_sentiment/train.py
+14
-9
未找到文件。
06.understand_sentiment/train.py
浏览文件 @
ce9bf2fd
...
@@ -28,7 +28,7 @@ def convolution_net(input_dim, class_dim=2, emb_dim=128, hid_dim=128):
...
@@ -28,7 +28,7 @@ def convolution_net(input_dim, class_dim=2, emb_dim=128, hid_dim=128):
input
=
[
conv_3
,
conv_4
],
size
=
class_dim
,
act
=
paddle
.
activation
.
Softmax
())
input
=
[
conv_3
,
conv_4
],
size
=
class_dim
,
act
=
paddle
.
activation
.
Softmax
())
lbl
=
paddle
.
layer
.
data
(
"label"
,
paddle
.
data_type
.
integer_value
(
2
))
lbl
=
paddle
.
layer
.
data
(
"label"
,
paddle
.
data_type
.
integer_value
(
2
))
cost
=
paddle
.
layer
.
classification_cost
(
input
=
output
,
label
=
lbl
)
cost
=
paddle
.
layer
.
classification_cost
(
input
=
output
,
label
=
lbl
)
return
cost
return
cost
,
output
def
stacked_lstm_net
(
input_dim
,
def
stacked_lstm_net
(
input_dim
,
...
@@ -51,7 +51,6 @@ def stacked_lstm_net(input_dim,
...
@@ -51,7 +51,6 @@ def stacked_lstm_net(input_dim,
"""
"""
assert
stacked_num
%
2
==
1
assert
stacked_num
%
2
==
1
layer_attr
=
paddle
.
attr
.
Extra
(
drop_rate
=
0.5
)
fc_para_attr
=
paddle
.
attr
.
Param
(
learning_rate
=
1e-3
)
fc_para_attr
=
paddle
.
attr
.
Param
(
learning_rate
=
1e-3
)
lstm_para_attr
=
paddle
.
attr
.
Param
(
initial_std
=
0.
,
learning_rate
=
1.
)
lstm_para_attr
=
paddle
.
attr
.
Param
(
initial_std
=
0.
,
learning_rate
=
1.
)
para_attr
=
[
fc_para_attr
,
lstm_para_attr
]
para_attr
=
[
fc_para_attr
,
lstm_para_attr
]
...
@@ -66,7 +65,7 @@ def stacked_lstm_net(input_dim,
...
@@ -66,7 +65,7 @@ def stacked_lstm_net(input_dim,
fc1
=
paddle
.
layer
.
fc
(
fc1
=
paddle
.
layer
.
fc
(
input
=
emb
,
size
=
hid_dim
,
act
=
linear
,
bias_attr
=
bias_attr
)
input
=
emb
,
size
=
hid_dim
,
act
=
linear
,
bias_attr
=
bias_attr
)
lstm1
=
paddle
.
layer
.
lstmemory
(
lstm1
=
paddle
.
layer
.
lstmemory
(
input
=
fc1
,
act
=
relu
,
bias_attr
=
bias_attr
,
layer_attr
=
layer_attr
)
input
=
fc1
,
act
=
relu
,
bias_attr
=
bias_attr
)
inputs
=
[
fc1
,
lstm1
]
inputs
=
[
fc1
,
lstm1
]
for
i
in
range
(
2
,
stacked_num
+
1
):
for
i
in
range
(
2
,
stacked_num
+
1
):
...
@@ -80,8 +79,7 @@ def stacked_lstm_net(input_dim,
...
@@ -80,8 +79,7 @@ def stacked_lstm_net(input_dim,
input
=
fc
,
input
=
fc
,
reverse
=
(
i
%
2
)
==
0
,
reverse
=
(
i
%
2
)
==
0
,
act
=
relu
,
act
=
relu
,
bias_attr
=
bias_attr
,
bias_attr
=
bias_attr
)
layer_attr
=
layer_attr
)
inputs
=
[
fc
,
lstm
]
inputs
=
[
fc
,
lstm
]
fc_last
=
paddle
.
layer
.
pooling
(
fc_last
=
paddle
.
layer
.
pooling
(
...
@@ -97,7 +95,7 @@ def stacked_lstm_net(input_dim,
...
@@ -97,7 +95,7 @@ def stacked_lstm_net(input_dim,
lbl
=
paddle
.
layer
.
data
(
"label"
,
paddle
.
data_type
.
integer_value
(
2
))
lbl
=
paddle
.
layer
.
data
(
"label"
,
paddle
.
data_type
.
integer_value
(
2
))
cost
=
paddle
.
layer
.
classification_cost
(
input
=
output
,
label
=
lbl
)
cost
=
paddle
.
layer
.
classification_cost
(
input
=
output
,
label
=
lbl
)
return
cost
return
cost
,
output
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
...
@@ -121,8 +119,8 @@ if __name__ == '__main__':
...
@@ -121,8 +119,8 @@ if __name__ == '__main__':
# network config
# network config
# Please choose the way to build the network
# Please choose the way to build the network
# by uncommenting the corresponding line.
# by uncommenting the corresponding line.
cost
=
convolution_net
(
dict_dim
,
class_dim
=
class_dim
)
[
cost
,
output
]
=
convolution_net
(
dict_dim
,
class_dim
=
class_dim
)
#
cost
= stacked_lstm_net(dict_dim, class_dim=class_dim, stacked_num=3)
#
[cost, output]
= stacked_lstm_net(dict_dim, class_dim=class_dim, stacked_num=3)
# create parameters
# create parameters
parameters
=
paddle
.
parameters
.
create
(
cost
)
parameters
=
paddle
.
parameters
.
create
(
cost
)
...
@@ -143,15 +141,22 @@ if __name__ == '__main__':
...
@@ -143,15 +141,22 @@ if __name__ == '__main__':
sys
.
stdout
.
write
(
'.'
)
sys
.
stdout
.
write
(
'.'
)
sys
.
stdout
.
flush
()
sys
.
stdout
.
flush
()
if
isinstance
(
event
,
paddle
.
event
.
EndPass
):
if
isinstance
(
event
,
paddle
.
event
.
EndPass
):
with
open
(
'./params_pass_%d.tar'
%
event
.
pass_id
,
'w'
)
as
f
:
parameters
.
to_tar
(
f
)
result
=
trainer
.
test
(
reader
=
test_reader
,
feeding
=
feeding
)
result
=
trainer
.
test
(
reader
=
test_reader
,
feeding
=
feeding
)
print
"
\n
Test with Pass %d, %s"
%
(
event
.
pass_id
,
result
.
metrics
)
print
"
\n
Test with Pass %d, %s"
%
(
event
.
pass_id
,
result
.
metrics
)
# create trainer
# create trainer
trainer
=
paddle
.
trainer
.
SGD
(
trainer
=
paddle
.
trainer
.
SGD
(
cost
=
cost
,
parameters
=
parameters
,
update_equation
=
adam_optimizer
)
cost
=
cost
,
parameters
=
parameters
,
update_equation
=
adam_optimizer
)
# Save the inference topology to protobuf.
inference_topology
=
paddle
.
topology
.
Topology
(
layers
=
output
)
with
open
(
"./inference_topology.pkl"
,
'wb'
)
as
f
:
inference_topology
.
serialize_for_inference
(
f
)
trainer
.
train
(
trainer
.
train
(
reader
=
train_reader
,
reader
=
train_reader
,
event_handler
=
event_handler
,
event_handler
=
event_handler
,
feeding
=
feeding
,
feeding
=
feeding
,
num_passes
=
2
)
num_passes
=
2
0
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录