-
Notifications
You must be signed in to change notification settings - Fork 171
/
data_utils.py
285 lines (240 loc) · 10.8 KB
/
data_utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
# -*- coding: utf-8 -*-
"""
Created on Sat Feb 27 09:33:32 2016
@author: Bing Liu ([email protected])
Prepare data for multi-task RNN model.
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import os
import re
from tensorflow.python.platform import gfile
# Special vocabulary symbols - we always put them at the start.
_PAD = "_PAD"
_UNK = "_UNK"
_START_VOCAB = [_PAD, _UNK]
START_VOCAB_dict = dict()
START_VOCAB_dict['with_padding'] = [_PAD, _UNK]
START_VOCAB_dict['no_padding'] = [_UNK]
PAD_ID = 0
UNK_ID_dict = dict()
UNK_ID_dict['with_padding'] = 1
UNK_ID_dict['no_padding'] = 0
# Regular expressions used to tokenize.
_WORD_SPLIT = re.compile("([.,!?\"':;)(])")
_DIGIT_RE = re.compile(r"\d")
def basic_tokenizer(sentence):
"""Very basic tokenizer: split the sentence into a list of tokens."""
words = []
for space_separated_fragment in sentence.strip().split():
words.extend(re.split(_WORD_SPLIT, space_separated_fragment))
return [w for w in words if w]
def naive_tokenizer(sentence):
"""Naive tokenizer: split the sentence by space into a list of tokens."""
return sentence.split()
def create_vocabulary(vocabulary_path, data_path, max_vocabulary_size,
tokenizer=None, normalize_digits=True):
"""Create vocabulary file (if it does not exist yet) from data file.
Data file is assumed to contain one sentence per line. Each sentence is
tokenized and digits are normalized (if normalize_digits is set).
Vocabulary contains the most-frequent tokens up to max_vocabulary_size.
We write it to vocabulary_path in a one-token-per-line format, so that later
token in the first line gets id=0, second line gets id=1, and so on.
Args:
vocabulary_path: path where the vocabulary will be created.
data_path: data file that will be used to create vocabulary.
max_vocabulary_size: limit on the size of the created vocabulary.
tokenizer: a function to use to tokenize each data sentence;
if None, basic_tokenizer will be used.
normalize_digits: Boolean; if true, all digits are replaced by 0s.
"""
if not gfile.Exists(vocabulary_path):
print("Creating vocabulary %s from data %s" % (vocabulary_path, data_path))
vocab = {}
with gfile.GFile(data_path, mode="r") as f:
counter = 0
for line in f:
counter += 1
if counter % 100000 == 0:
print(" processing line %d" % counter)
tokens = tokenizer(line) if tokenizer else basic_tokenizer(line)
for w in tokens:
word = re.sub(_DIGIT_RE, "0", w) if normalize_digits else w
if word in vocab:
vocab[word] += 1
else:
vocab[word] = 1
vocab_list = START_VOCAB_dict['with_padding'] + \
sorted(vocab, key=vocab.get, reverse=True)
if len(vocab_list) > max_vocabulary_size:
vocab_list = vocab_list[:max_vocabulary_size]
with gfile.GFile(vocabulary_path, mode="w") as vocab_file:
for w in vocab_list:
vocab_file.write(w + "\n")
def initialize_vocab(vocabulary_path):
"""Initialize vocabulary from file.
We assume the vocabulary is stored one-item-per-line, so a file:
dog
cat
will result in a vocabulary {"dog": 0, "cat": 1}, and this function will
also return the reversed-vocabulary ["dog", "cat"].
Args:
vocabulary_path: path to the file containing the vocabulary.
Returns:
a pair: the vocabulary (a dictionary mapping string to integers), and
the reversed vocabulary (a list, which reverses the vocabulary mapping).
Raises:
ValueError: if the provided vocabulary_path does not exist.
"""
if gfile.Exists(vocabulary_path):
rev_vocab = []
with gfile.GFile(vocabulary_path, mode="r") as f:
rev_vocab.extend(f.readlines())
rev_vocab = [line.strip() for line in rev_vocab]
vocab = dict([(x, y) for (y, x) in enumerate(rev_vocab)])
return vocab, rev_vocab
else:
raise ValueError("Vocabulary file %s not found.", vocabulary_path)
def sentence_to_token_ids(sentence, vocabulary, UNK_ID,
tokenizer=None, normalize_digits=True):
"""Convert a string to list of integers representing token-ids.
For example, a sentence "I have a dog" may become tokenized into
["I", "have", "a", "dog"] and with vocabulary {"I": 1, "have": 2,
"a": 4, "dog": 7"} this function will return [1, 2, 4, 7].
Args:
sentence: a string, the sentence to convert to token-ids.
vocabulary: a dictionary mapping tokens to integers.
tokenizer: a function to use to tokenize each sentence;
if None, basic_tokenizer will be used.
normalize_digits: Boolean; if true, all digits are replaced by 0s.
Returns:
a list of integers, the token-ids for the sentence.
"""
if tokenizer:
words = tokenizer(sentence)
else:
words = basic_tokenizer(sentence)
if not normalize_digits:
return [vocabulary.get(w, UNK_ID) for w in words]
# Normalize digits by 0 before looking words up in the vocabulary.
return [vocabulary.get(re.sub(_DIGIT_RE, "0", w), UNK_ID) for w in words]
def data_to_token_ids(data_path, target_path, vocabulary_path,
tokenizer=None, normalize_digits=True, use_padding=True):
"""Tokenize data file and turn into token-ids using given vocabulary file.
This function loads data line-by-line from data_path, calls the above
sentence_to_token_ids, and saves the result to target_path. See comment
for sentence_to_token_ids on the details of token-ids format.
Args:
data_path: path to the data file in one-sentence-per-line format.
target_path: path where the file with token-ids will be created.
vocabulary_path: path to the vocabulary file.
tokenizer: a function to use to tokenize each sentence;
if None, basic_tokenizer will be used.
normalize_digits: Boolean; if true, all digits are replaced by 0s.
"""
if not gfile.Exists(target_path):
print("Tokenizing data in %s" % data_path)
vocab, _ = initialize_vocab(vocabulary_path)
with gfile.GFile(data_path, mode="r") as data_file:
with gfile.GFile(target_path, mode="w") as tokens_file:
counter = 0
for line in data_file:
counter += 1
if counter % 100000 == 0:
print(" tokenizing line %d" % counter)
if use_padding:
UNK_ID = UNK_ID_dict['with_padding']
else:
UNK_ID = UNK_ID_dict['no_padding']
token_ids = sentence_to_token_ids(line, vocab, UNK_ID, tokenizer,
normalize_digits)
tokens_file.write(" ".join([str(tok) for tok in token_ids]) + "\n")
def create_label_vocab(vocabulary_path, data_path):
if not gfile.Exists(vocabulary_path):
print("Creating vocabulary %s from data %s" % (vocabulary_path, data_path))
vocab = {}
with gfile.GFile(data_path, mode="r") as f:
counter = 0
for line in f:
counter += 1
if counter % 100000 == 0:
print(" processing line %d" % counter)
label = line.strip()
vocab[label] = 1
label_list = START_VOCAB_dict['no_padding'] + sorted(vocab)
with gfile.GFile(vocabulary_path, mode="w") as vocab_file:
for k in label_list:
vocab_file.write(k + "\n")
def prepare_multi_task_data(data_dir, in_vocab_size, out_vocab_size):
train_path = data_dir + '/train/train'
dev_path = data_dir + '/valid/valid'
test_path = data_dir + '/test/test'
# Create vocabularies of the appropriate sizes.
in_vocab_path = os.path.join(data_dir, "in_vocab_%d.txt" % in_vocab_size)
out_vocab_path = os.path.join(data_dir, "out_vocab_%d.txt" % out_vocab_size)
label_path = os.path.join(data_dir, "label.txt")
create_vocabulary(in_vocab_path,
train_path + ".seq.in",
in_vocab_size,
tokenizer=naive_tokenizer)
create_vocabulary(out_vocab_path,
train_path + ".seq.out",
out_vocab_size,
tokenizer=naive_tokenizer)
create_label_vocab(label_path, train_path + ".label")
# Create token ids for the training data.
in_seq_train_ids_path = train_path + (".ids%d.seq.in" % in_vocab_size)
out_seq_train_ids_path = train_path + (".ids%d.seq.out" % out_vocab_size)
label_train_ids_path = train_path + (".ids.label")
data_to_token_ids(train_path + ".seq.in",
in_seq_train_ids_path,
in_vocab_path,
tokenizer=naive_tokenizer)
data_to_token_ids(train_path + ".seq.out",
out_seq_train_ids_path,
out_vocab_path,
tokenizer=naive_tokenizer)
data_to_token_ids(train_path + ".label",
label_train_ids_path,
label_path,
normalize_digits=False,
use_padding=False)
# Create token ids for the development data.
in_seq_dev_ids_path = dev_path + (".ids%d.seq.in" % in_vocab_size)
out_seq_dev_ids_path = dev_path + (".ids%d.seq.out" % out_vocab_size)
label_dev_ids_path = dev_path + (".ids.label")
data_to_token_ids(dev_path + ".seq.in",
in_seq_dev_ids_path,
in_vocab_path,
tokenizer=naive_tokenizer)
data_to_token_ids(dev_path + ".seq.out",
out_seq_dev_ids_path,
out_vocab_path,
tokenizer=naive_tokenizer)
data_to_token_ids(dev_path + ".label",
label_dev_ids_path,
label_path,
normalize_digits=False,
use_padding=False)
# Create token ids for the test data.
in_seq_test_ids_path = test_path + (".ids%d.seq.in" % in_vocab_size)
out_seq_test_ids_path = test_path + (".ids%d.seq.out" % out_vocab_size)
label_test_ids_path = test_path + (".ids.label")
data_to_token_ids(test_path + ".seq.in",
in_seq_test_ids_path,
in_vocab_path,
tokenizer=naive_tokenizer)
data_to_token_ids(test_path + ".seq.out",
out_seq_test_ids_path,
out_vocab_path,
tokenizer=naive_tokenizer)
data_to_token_ids(test_path + ".label",
label_test_ids_path,
label_path,
normalize_digits=False,
use_padding=False)
return [(in_seq_train_ids_path,out_seq_train_ids_path,label_train_ids_path),
(in_seq_dev_ids_path, out_seq_dev_ids_path, label_dev_ids_path),
(in_seq_test_ids_path, out_seq_test_ids_path, label_test_ids_path),
(in_vocab_path, out_vocab_path, label_path)]