reader.py 6.5 KB
Newer Older
Q
Qiao Longfei 已提交
1 2 3
# -*- coding: utf-8 -*

import numpy as np
Q
Qiao Longfei 已提交
4
import preprocess
Q
Qiao Longfei 已提交
5

J
JiabinYang 已提交
6 7 8 9 10 11
import logging

logging.basicConfig(format='%(asctime)s - %(levelname)s - %(message)s')
logger = logging.getLogger("fluid")
logger.setLevel(logging.INFO)

Q
Qiao Longfei 已提交
12

J
JiabinYang 已提交
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
class NumpyRandomInt(object):
    def __init__(self, a, b, buf_size=1000):
        self.idx = 0
        self.buffer = np.random.random_integers(a, b, buf_size)
        self.a = a
        self.b = b

    def __call__(self):
        if self.idx == len(self.buffer):
            self.buffer = np.random.random_integers(self.a, self.b,
                                                    len(self.buffer))
            self.idx = 0

        result = self.buffer[self.idx]
        self.idx += 1
        return result


Q
Qiao Longfei 已提交
31
class Word2VecReader(object):
32 33 34 35 36 37 38
    def __init__(self,
                 dict_path,
                 data_path,
                 filelist,
                 trainer_id,
                 trainer_num,
                 window_size=5):
Q
Qiao Longfei 已提交
39 40
        self.window_size_ = window_size
        self.data_path_ = data_path
41
        self.filelist = filelist
42
        self.num_non_leaf = 0
Q
Qiao Longfei 已提交
43
        self.word_to_id_ = dict()
44 45 46
        self.id_to_word = dict()
        self.word_to_path = dict()
        self.word_to_code = dict()
47 48
        self.trainer_id = trainer_id
        self.trainer_num = trainer_num
Q
Qiao Longfei 已提交
49

50 51
        word_all_count = 0
        word_counts = []
Q
Qiao Longfei 已提交
52
        word_id = 0
53

Q
Qiao Longfei 已提交
54 55
        with open(dict_path, 'r') as f:
            for line in f:
56
                line = line.decode(encoding='UTF-8')
57 58
                word, count = line.split()[0], int(line.split()[1])
                self.word_to_id_[word] = word_id
59
                self.id_to_word[word_id] = word  #build id to word dict
Q
Qiao Longfei 已提交
60
                word_id += 1
61 62 63
                word_counts.append(count)
                word_all_count += count

64 65
        with open(dict_path + "_word_to_id_", 'w+') as f6:
            for k, v in self.word_to_id_.items():
66 67
                f6.write(
                    k.encode("utf-8") + " " + str(v).encode("utf-8") + '\n')
68

Q
Qiao Longfei 已提交
69
        self.dict_size = len(self.word_to_id_)
70 71 72 73 74 75 76 77
        self.word_frequencys = [
            float(count) / word_all_count for count in word_counts
        ]
        print("dict_size = " + str(
            self.dict_size)) + " word_all_count = " + str(word_all_count)

        with open(dict_path + "_ptable", 'r') as f2:
            for line in f2:
J
JiabinYang 已提交
78
                self.word_to_path[line.split('\t')[0]] = np.fromstring(
79
                    line.split('\t')[1], dtype=int, sep=' ')
80
                self.num_non_leaf = np.fromstring(
81
                    line.split('\t')[1], dtype=int, sep=' ')[0]
82 83 84 85
        print("word_ptable dict_size = " + str(len(self.word_to_path)))

        with open(dict_path + "_pcode", 'r') as f3:
            for line in f3:
86
                line = line.decode(encoding='UTF-8')
J
JiabinYang 已提交
87
                self.word_to_code[line.split('\t')[0]] = np.fromstring(
88
                    line.split('\t')[1], dtype=int, sep=' ')
89
        print("word_pcode dict_size = " + str(len(self.word_to_code)))
J
JiabinYang 已提交
90
        self.random_generator = NumpyRandomInt(1, self.window_size_ + 1)
Q
Qiao Longfei 已提交
91

J
JiabinYang 已提交
92
    def get_context_words(self, words, idx):
Q
Qiao Longfei 已提交
93 94 95 96 97 98 99
        """
        Get the context word list of target word.

        words: the words of the current line
        idx: input word index
        window_size: window size
        """
J
JiabinYang 已提交
100 101 102 103
        target_window = self.random_generator()
        start_point = idx - target_window  # if (idx - target_window) > 0 else 0
        if start_point < 0:
            start_point = 0
Q
Qiao Longfei 已提交
104
        end_point = idx + target_window
J
JiabinYang 已提交
105 106 107
        targets = words[start_point:idx] + words[idx + 1:end_point + 1]

        return set(targets)
Q
Qiao Longfei 已提交
108

109
    def train(self, with_hs):
Q
Qiao Longfei 已提交
110
        def _reader():
111 112
            for file in self.filelist:
                with open(self.data_path_ + "/" + file, 'r') as f:
J
JiabinYang 已提交
113 114
                    logger.info("running data in {}".format(self.data_path_ +
                                                            "/" + file))
115
                    count = 1
116
                    for line in f:
117
                        if self.trainer_id == count % self.trainer_num:
118
                            line = preprocess.strip_lines(line)
119 120 121 122 123 124
                            word_ids = [
                                self.word_to_id_[word] for word in line.split()
                                if word in self.word_to_id_
                            ]
                            for idx, target_id in enumerate(word_ids):
                                context_word_ids = self.get_context_words(
J
JiabinYang 已提交
125
                                    word_ids, idx)
126 127 128 129 130
                                for context_id in context_word_ids:
                                    yield [target_id], [context_id]
                        else:
                            pass
                        count += 1
Q
Qiao Longfei 已提交
131

132
        def _reader_hs():
133 134
            for file in self.filelist:
                with open(self.data_path_ + "/" + file, 'r') as f:
J
JiabinYang 已提交
135 136
                    logger.info("running data in {}".format(self.data_path_ +
                                                            "/" + file))
137
                    count = 1
138
                    for line in f:
139
                        if self.trainer_id == count % self.trainer_num:
140
                            line = preprocess.strip_lines(line)
141 142 143 144 145 146
                            word_ids = [
                                self.word_to_id_[word] for word in line.split()
                                if word in self.word_to_id_
                            ]
                            for idx, target_id in enumerate(word_ids):
                                context_word_ids = self.get_context_words(
J
JiabinYang 已提交
147
                                    word_ids, idx)
148 149
                                for context_id in context_word_ids:
                                    yield [target_id], [context_id], [
J
JiabinYang 已提交
150
                                        self.word_to_path[self.id_to_word[
J
JiabinYang 已提交
151
                                            target_id]]
152
                                    ], [
J
JiabinYang 已提交
153
                                        self.word_to_code[self.id_to_word[
J
JiabinYang 已提交
154
                                            target_id]]
155 156 157 158
                                    ]
                        else:
                            pass
                        count += 1
159 160 161 162 163

        if not with_hs:
            return _reader
        else:
            return _reader_hs
Q
Qiao Longfei 已提交
164 165 166


if __name__ == "__main__":
Q
Qiao Longfei 已提交
167
    window_size = 10
Q
Qiao Longfei 已提交
168

Q
Qiao Longfei 已提交
169
    reader = Word2VecReader("data/enwik9_dict", "data/enwik9", window_size)
Q
Qiao Longfei 已提交
170
    i = 0
Q
Qiao Longfei 已提交
171
    for x, y in reader.train()():
Q
Qiao Longfei 已提交
172 173 174 175 176 177
        print("x: " + str(x))
        print("y: " + str(y))
        print("\n")
        if i == 10:
            exit(0)
        i += 1