sequence_nest_layer_group.conf 2.6 KB
Newer Older
Z
zhangjinchao01 已提交
1
#!/usr/bin/env python
2
# Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved
Z
zhangjinchao01 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from paddle.trainer_config_helpers import *

######################## data source ################################
X
Xin Pan 已提交
19
dict_path = 'legacy/gserver/tests/Sequence/tour_dict_phrase.dict'
Z
zhangjinchao01 已提交
20 21 22 23
dict_file = dict()
for line_count, line in enumerate(open(dict_path, "r")):
    dict_file[line.strip()] = line_count

24
define_py_data_sources2(
X
Xin Pan 已提交
25
    train_list='legacy/gserver/tests/Sequence/train.list.nest',
26 27 28 29
    test_list=None,
    module='sequenceGen',
    obj='process2',
    args={"dict_file": dict_file})
Z
zhangjinchao01 已提交
30 31 32

settings(batch_size=2)
######################## network configure ################################
33
dict_dim = len(open(dict_path, 'r').readlines())
Z
zhangjinchao01 已提交
34 35 36 37 38 39 40 41
word_dim = 128
hidden_dim = 256
label_dim = 3

data = data_layer(name="word", size=dict_dim)

emb_group = embedding_layer(input=data, size=word_dim)

42

Z
zhangjinchao01 已提交
43 44
# (lstm_input + lstm) is equal to lstmemory 
def lstm_group(lstm_group_input):
45 46
    with mixed_layer(size=hidden_dim * 4) as group_input:
        group_input += full_matrix_projection(input=lstm_group_input)
Z
zhangjinchao01 已提交
47

48 49 50 51 52 53
    lstm_output = lstmemory_group(
        input=group_input,
        name="lstm_group",
        size=hidden_dim,
        act=TanhActivation(),
        gate_act=SigmoidActivation(),
Y
Yu Yang 已提交
54
        state_act=TanhActivation())
Z
zhangjinchao01 已提交
55 56
    return lstm_output

57 58 59

lstm_nest_group = recurrent_group(
    input=SubsequenceInput(emb_group), step=lstm_group, name="lstm_nest_group")
Z
zhangjinchao01 已提交
60
# hasSubseq ->(seqlastins) seq
61
lstm_last = last_seq(
L
Luo Tao 已提交
62
    input=lstm_nest_group, agg_level=AggregateLevel.TO_SEQUENCE)
Z
zhangjinchao01 已提交
63 64

# seq ->(expand) hasSubseq
65 66 67 68
lstm_expand = expand_layer(
    input=lstm_last,
    expand_as=emb_group,
    expand_level=ExpandLevel.FROM_SEQUENCE)
Z
zhangjinchao01 已提交
69 70

# hasSubseq ->(average) seq
71 72 73
lstm_average = pooling_layer(
    input=lstm_expand,
    pooling_type=AvgPooling(),
L
Luo Tao 已提交
74
    agg_level=AggregateLevel.TO_SEQUENCE)
Z
zhangjinchao01 已提交
75

76 77
with mixed_layer(
        size=label_dim, act=SoftmaxActivation(), bias_attr=True) as output:
Z
zhangjinchao01 已提交
78 79
    output += full_matrix_projection(input=lstm_average)

80 81 82 83
outputs(
    classification_cost(
        input=output, label=data_layer(
            name="label", size=1)))