-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpreprocess.py
executable file
·314 lines (257 loc) · 11.5 KB
/
preprocess.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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Create the data for sentence pair classification
"""
import os
import sys
import argparse
import numpy as np
import h5py
from collections import defaultdict
class Indexer:
def __init__(self, symbols = ["<blank>"], num_oov=100):
self.num_oov = num_oov
self.d = {}
self.cnt = {}
for s in symbols:
self.d[s] = len(self.d)
self.cnt[s] = 0
for i in range(self.num_oov): #hash oov words to one of 100 random embeddings
oov_word = '<oov'+ str(i) + '>'
self.d[oov_word] = len(self.d)
self.cnt[oov_word] = 10000000 # have a large number for oov word to avoid being pruned
def convert(self, w):
return self.d[w] if w in self.d else self.d['<oov' + str(np.random.randint(self.num_oov)) + '>']
def convert_sequence(self, ls):
return [self.convert(l) for l in ls]
def write(self, outfile, with_cnt=True):
print(len(self.d), len(self.cnt))
assert(len(self.d) == len(self.cnt))
with open(outfile, 'w+') as f:
items = [(v, k) for k, v in self.d.items()]
items.sort()
for v, k in items:
if with_cnt:
f.write('{0} {1} {2}\n'.format(k, v, self.cnt[k]))
else:
f.write('{0} {1}\n'.format(k, v))
# register tokens only appear in wv
# NOTE, only do counting on training set
def register_words(self, wv, seq, count):
for w in seq:
if w in wv and w not in self.d:
self.d[w] = len(self.d)
self.cnt[w] = 0
if w in self.cnt:
self.cnt[w] = self.cnt[w] + 1 if count else self.cnt[w]
# NOTE, only do counting on training set
def register_all_words(self, seq, count):
for w in seq:
if w not in self.d:
self.d[w] = len(self.d)
self.cnt[w] = 0
if w in self.cnt:
self.cnt[w] = self.cnt[w] + 1 if count else self.cnt[w]
def pad(ls, length, symbol, pad_back = True):
if len(ls) >= length:
return ls[:length]
if pad_back:
return ls + [symbol] * (length -len(ls))
else:
return [symbol] * (length -len(ls)) + ls
def get_glove_words(f):
glove_words = set()
for line in open(f, "r"):
word = line.split()[0].strip()
glove_words.add(word)
return glove_words
def make_vocab(opt, glove_vocab, word_indexer, all_word_indexer, label_indexer, sent1, sent2, label, max_seq_l, count):
num_ex = 0
for _, (src_orig, targ_orig, l) in enumerate(zip(open(sent1,'r'), open(sent2,'r'), open(label, 'r'))):
if src_orig.rstrip() == '':
continue
if opt.lowercase == 1:
src_orig = src_orig.lower()
targ_orig = targ_orig.lower()
targ = targ_orig.strip().split()
src = src_orig.strip().split()
l = l.rstrip()
assert(len(targ) <= max_seq_l and len(src) <= max_seq_l)
all_word_indexer.register_all_words(targ, count)
word_indexer.register_words(glove_vocab, targ, count)
all_word_indexer.register_all_words(src, count)
word_indexer.register_words(glove_vocab, src, count)
label_indexer.register_all_words([l], count)
num_ex += 1
return num_ex
def convert(opt, word_indexer, all_word_indexer, label_indexer, sent1, sent2, label, output, num_ex):
np.random.seed(opt.seed)
max_seq_l = opt.max_seq_l + 1 #add 1 for BOS
targets = np.zeros((num_ex, max_seq_l), dtype=int)
sources = np.zeros((num_ex, max_seq_l), dtype=int)
all_sources = np.zeros((num_ex, opt.max_seq_l), dtype=int)
all_targets = np.zeros((num_ex, opt.max_seq_l), dtype=int)
labels = np.zeros((num_ex,), dtype =int)
source_lengths = np.zeros((num_ex,), dtype=int)
target_lengths = np.zeros((num_ex,), dtype=int)
ex_idx = np.zeros(num_ex, dtype=int)
batch_keys = np.array([None for _ in range(num_ex)])
ex_id = 0
for _, (src_orig, targ_orig, label_orig) in enumerate(zip(open(sent1,'r'), open(sent2,'r') ,open(label,'r'))):
if src_orig.rstrip() == '':
continue
if opt.lowercase == 1:
src_orig = src_orig.lower()
targ_orig = targ_orig.lower()
targ_orig = ['<s>'] + targ_orig.strip().split()
src_orig = ['<s>'] + src_orig.strip().split()
label = label_orig.strip()
src = pad(src_orig, max_seq_l, '<blank>')
src = word_indexer.convert_sequence(src)
targ = pad(targ_orig, max_seq_l, '<blank>')
targ = word_indexer.convert_sequence(targ)
all_src = pad(src_orig, opt.max_seq_l, '<blank>')
all_src = all_word_indexer.convert_sequence(all_src)
all_targ = pad(targ_orig, opt.max_seq_l, '<blank>')
all_targ = all_word_indexer.convert_sequence(all_targ)
sources[ex_id] = np.array(src, dtype=int)
targets[ex_id] = np.array(targ,dtype=int)
all_sources[ex_id] = np.array(all_src, dtype=int)
all_targets[ex_id] = np.array(all_targ, dtype=int)
source_lengths[ex_id] = (sources[ex_id] != 0).sum()
target_lengths[ex_id] = (targets[ex_id] != 0).sum()
labels[ex_id] = label_indexer.d[label]
batch_keys[ex_id] = (source_lengths[ex_id], target_lengths[ex_id])
ex_id += 1
if ex_id % 100000 == 0:
print("{}/{} sentences processed".format(ex_id, num_ex))
print(ex_id, num_ex)
if opt.shuffle == 1:
rand_idx = np.random.permutation(ex_id)
targets = targets[rand_idx]
sources = sources[rand_idx]
all_sources = all_sources[rand_idx]
all_targets = all_targets[rand_idx]
source_lengths = source_lengths[rand_idx]
target_lengths = target_lengths[rand_idx]
labels = labels[rand_idx]
batch_keys = batch_keys[rand_idx]
ex_idx = rand_idx
# break up batches based on source/target lengths
sorted_keys = sorted([(i, p) for i, p in enumerate(batch_keys)], key=lambda x: x[1])
sorted_idx = [i for i, _ in sorted_keys]
# rearrange examples
sources = sources[sorted_idx]
targets = targets[sorted_idx]
all_sources = all_sources[sorted_idx]
all_targets = all_targets[sorted_idx]
labels = labels[sorted_idx]
target_l = target_lengths[sorted_idx]
source_l = source_lengths[sorted_idx]
ex_idx = rand_idx[sorted_idx]
curr_l_src = 0
curr_l_targ = 0
batch_location = [] #idx where sent length changes
for j,i in enumerate(sorted_idx):
if batch_keys[i][0] != curr_l_src or batch_keys[i][1] != curr_l_targ:
curr_l_src = source_lengths[i]
curr_l_targ = target_lengths[i]
batch_location.append(j)
if batch_location[-1] != len(sources):
batch_location.append(len(sources)-1)
#get batch sizes
curr_idx = 0
batch_idx = [0]
for i in range(len(batch_location)-1):
end_location = batch_location[i+1]
while curr_idx < end_location:
curr_idx = min(curr_idx + opt.batch_size, end_location)
batch_idx.append(curr_idx)
batch_l = []
target_l_new = []
source_l_new = []
for i in range(len(batch_idx)):
end = batch_idx[i+1] if i < len(batch_idx)-1 else len(sources)
batch_l.append(end - batch_idx[i])
source_l_new.append(source_l[batch_idx[i]])
target_l_new.append(target_l[batch_idx[i]])
# sanity check
for k in range(batch_idx[i], end):
assert(source_l[k] == source_l_new[-1])
assert(sources[k, source_l[k]:].sum() == 0)
# Write output
f = h5py.File(output, "w")
f["source"] = sources
f["target"] = targets
f["label"] = labels
f['all_source'] = all_sources
f['all_target'] = all_targets
f["target_l"] = np.array(target_l_new, dtype=int)
f["source_l"] = np.array(source_l_new, dtype=int)
f["batch_l"] = batch_l
f["batch_idx"] = batch_idx
f['ex_idx'] = ex_idx
print("saved {} batches ".format(len(f["batch_l"])))
f.close()
def process(opt):
all_word_indexer = Indexer(symbols=["<blank>","<s>"]) # all tokens will be recorded
word_indexer = Indexer(symbols=["<blank>","<s>"]) # only glove tokens will be recorded
glove_vocab = get_glove_words(opt.glove)
label_indexer = Indexer(symbols=["entailment", "neutral", "contradiction"], num_oov=0)
oov_words = []
for i in range(0,100): #hash oov words to one of 100 random embeddings, per Parikh et al. 2016
oov_words.append('<oov'+ str(i) + '>')
word_indexer.register_all_words(oov_words, count=False)
all_word_indexer.register_all_words(oov_words, count=False)
print("First pass through data to get vocab...")
num_train = make_vocab(opt, glove_vocab, word_indexer, all_word_indexer, label_indexer, opt.sent1, opt.sent2, opt.label, opt.max_seq_l, count=True)
print("Number of examples in training: {}".format(num_train))
print("Number of sentences in training: {0}, number of tokens: {1}/{2}".format(num_train, len(word_indexer.d), len(all_word_indexer.d)))
num_valid = make_vocab(opt, glove_vocab, word_indexer, all_word_indexer, label_indexer, opt.sent1_val, opt.sent2_val, opt.label_val, opt.max_seq_l, count=True)
print("Number of examples in valid: {}".format(num_valid))
print("Number of sentences in valid: {0}, number of tokens: {1}/{2}".format(num_valid, len(word_indexer.d), len(all_word_indexer.d)))
num_test = make_vocab(opt, glove_vocab, word_indexer, all_word_indexer, label_indexer, opt.sent1_test, opt.sent2_test, opt.label_test, opt.max_seq_l, count=False) # no counting on test set
print("Number of examples in test: {}".format(num_test))
word_indexer.write(opt.output + ".word.dict")
all_word_indexer.write(opt.output + ".allword.dict")
label_indexer.write(opt.output + ".label.dict")
print("vocab size: {}".format(len(word_indexer.d)))
assert(len(label_indexer.d) == 3)
convert(opt, word_indexer, all_word_indexer, label_indexer, opt.sent1_val, opt.sent2_val, opt.label_val, opt.output + "-val.hdf5", num_valid)
convert(opt, word_indexer, all_word_indexer, label_indexer, opt.sent1, opt.sent2, opt.label, opt.output + "-train.hdf5", num_train)
convert(opt, word_indexer, all_word_indexer, label_indexer, opt.sent1_test, opt.sent2_test, opt.label_test, opt.output + "-test.hdf5", num_test)
def main(arguments):
parser = argparse.ArgumentParser(
description=__doc__,
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument('--sent1', help="Path to sent1 training data.", default = "train.sent1.txt")
parser.add_argument('--sent2', help="Path to sent2 training data.", default = "train.sent2.txt")
parser.add_argument('--label', help="Path to label data", default = "train.label.txt")
parser.add_argument('--sent1_val', help="Path to sent1 validation data.",default = "dev.sent1.txt")
parser.add_argument('--sent2_val', help="Path to sent2 validation data.", default = "dev.sent2.txt")
parser.add_argument('--label_val', help="Path to label validation data.",default = "dev.label.txt")
parser.add_argument('--sent1_test', help="Path to sent1 test data.",default = "test.sent1.txt")
parser.add_argument('--sent2_test', help="Path to sent2 test data.",default = "test.sent2.txt")
parser.add_argument('--label_test', help="Path to label test data.",default = "test.label.txt")
parser.add_argument('--dir', help="Path to the data dir",default = "./data/nli_bias/")
parser.add_argument('--batch_size', help="Size of each minibatch.", type=int, default=32)
parser.add_argument('--max_seq_l', help="Maximum sequence length. Sequences longer than this are dropped.", type=int, default=100)
parser.add_argument('--output', help="Prefix of the output file names. ", type=str, default = "snli")
parser.add_argument('--shuffle', help="If = 1, shuffle sentences before sorting (based on source length).", type = int, default = 1)
parser.add_argument('--seed', help="The random seed", type = int, default = 1)
parser.add_argument('--glove', type = str, default = '')
parser.add_argument('--lowercase', help="Whether to use lowercase for vocabulary.", type=int, default = 1)
opt = parser.parse_args(arguments)
opt.sent1 = opt.dir + opt.sent1
opt.sent2 = opt.dir + opt.sent2
opt.sent1_val = opt.dir + opt.sent1_val
opt.sent2_val = opt.dir + opt.sent2_val
opt.sent1_test = opt.dir + opt.sent1_test
opt.sent2_test = opt.dir + opt.sent2_test
opt.label = opt.dir + opt.label
opt.label_val = opt.dir + opt.label_val
opt.label_test = opt.dir + opt.label_test
opt.output = opt.dir + opt.output
process(opt)
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))