dataprovider.py 2.7 KB
Newer Older
Z
zhangjinchao01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# Copyright (c) 2016 Baidu, Inc. All Rights Reserved
#
# 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.PyDataProvider2 import *

UNK_IDX = 0


Z
zhangjinchao01 已提交
20
def hook(settings, word_dict, label_dict, predicate_dict, **kwargs):
Z
zhangjinchao01 已提交
21 22
    settings.word_dict = word_dict
    settings.label_dict = label_dict
Z
zhangjinchao01 已提交
23 24
    settings.predicate_dict = predicate_dict
   
Z
zhangjinchao01 已提交
25 26
    #all inputs are integral and sequential type
    settings.slots = [
Z
zhangjinchao01 已提交
27
        integer_value_sequence(len(word_dict)),
28 29 30 31
        integer_value_sequence(len(word_dict)),
        integer_value_sequence(len(word_dict)),
        integer_value_sequence(len(word_dict)),
        integer_value_sequence(len(word_dict)),
Z
zhangjinchao01 已提交
32 33 34
        integer_value_sequence(len(word_dict)), 
        integer_value_sequence(len(predicate_dict)),
        integer_value_sequence(2),
35 36
        integer_value_sequence(len(label_dict))
    ]
Z
zhangjinchao01 已提交
37 38


Z
zhangjinchao01 已提交
39 40 41 42 43 44 45
def get_batch_size(yeild_data):
    return len(yeild_data[0])
    

@provider(init_hook=hook, should_shuffle=True, calc_batch_size=get_batch_size, 
          can_over_batch_size=False, cache=CacheType.CACHE_PASS_IN_MEM)
def process(settings, file_name):
Z
zhangjinchao01 已提交
46 47
    with open(file_name, 'r') as fdata:
        for line in fdata:
Z
zhangjinchao01 已提交
48
            sentence, predicate, ctx_n2, ctx_n1, ctx_0, ctx_p1, ctx_p2,  mark, label = \
Z
zhangjinchao01 已提交
49
                line.strip().split('\t')
Z
zhangjinchao01 已提交
50
           
Z
zhangjinchao01 已提交
51 52
            words = sentence.split()
            sen_len = len(words)
Z
zhangjinchao01 已提交
53
            word_slot = [settings.word_dict.get(w, UNK_IDX) for w in words]
Z
zhangjinchao01 已提交
54

Z
zhangjinchao01 已提交
55 56 57 58 59 60
            predicate_slot = [settings.predicate_dict.get(predicate)] * sen_len
            ctx_n2_slot = [settings.word_dict.get(ctx_n2, UNK_IDX)] * sen_len
            ctx_n1_slot = [settings.word_dict.get(ctx_n1, UNK_IDX)] * sen_len
            ctx_0_slot = [settings.word_dict.get(ctx_0, UNK_IDX)] * sen_len
            ctx_p1_slot = [settings.word_dict.get(ctx_p1, UNK_IDX)] * sen_len
            ctx_p2_slot = [settings.word_dict.get(ctx_p2, UNK_IDX)] * sen_len
Z
zhangjinchao01 已提交
61 62 63 64 65

            marks = mark.split()
            mark_slot = [int(w) for w in marks]

            label_list = label.split()
Z
zhangjinchao01 已提交
66
            label_slot = [settings.label_dict.get(w) for w in label_list]
Z
zhangjinchao01 已提交
67 68
            yield word_slot, ctx_n2_slot, ctx_n1_slot, \
                  ctx_0_slot, ctx_p1_slot, ctx_p2_slot, predicate_slot, mark_slot, label_slot