-
Notifications
You must be signed in to change notification settings - Fork 0
/
preprocess.py
496 lines (403 loc) · 19 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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
#!/usr/bin/env python
import sys
if not 'texar_repo' in sys.path:
sys.path += ['texar_repo']
from config import *
from texar_repo.examples.bert.utils import data_utils, model_utils, tokenization
from texar_repo.examples.transformer.utils import data_utils, utils
import tensorflow as tf
import os
import csv
import collections
class InputExample():
"""A single training/test example for simple sequence classification."""
def __init__(self, guid, text_a, text_c, text_b,text_i=None):
"""Constructs a InputExample.
Args:
guid: Unique id for the example.
text_a: string. The untokenized text of the first sequence.
For single sequence tasks, only this sequence must be specified.
text_b: (Optional) string. The untokenized text of the second
sequence. Only must be specified for sequence pair tasks.
label: (Optional) string. The label of the example. This should be
specified for train and dev examples, but not for test examples.
text_i:api_information
"""
self.guid = guid
self.src_txt = text_a
self.cfg_txt = text_c
self.tgt_txt = text_b
self.api_txt = text_i
class InputFeatures():
"""A single set of features of data."""
def __init__(self, src_input_ids, src_input_mask, src_segment_ids, cfg_input_ids, cfg_input_mask, cfg_segment_ids,
api_input_ids, api_input_mask, api_segment_ids,
tgt_input_ids, tgt_input_mask, tgt_labels):
self.src_input_ids = src_input_ids
self.src_input_mask = src_input_mask
self.src_segment_ids = src_segment_ids
self.cfg_input_ids = cfg_input_ids
self.cfg_input_mask = cfg_input_mask
self.cfg_segment_ids = cfg_segment_ids
self.api_input_ids = api_input_ids
self.api_input_mask = api_input_mask
self.api_segment_ids = api_segment_ids
self.tgt_input_ids = tgt_input_ids
self.tgt_input_mask = tgt_input_mask
self.tgt_labels = tgt_labels
class DataProcessor(object):
"""Base class for data converters for sequence classification data sets."""
def get_train_examples(self, data_dir):
"""Gets a collection of `InputExample`s for the train set."""
raise NotImplementedError()
def get_dev_examples(self, data_dir):
"""Gets a collection of `InputExample`s for the dev set."""
raise NotImplementedError()
def get_test_examples(self, data_dir):
"""Gets a collection of `InputExample`s for prediction."""
raise NotImplementedError()
def get_labels(self):
"""Gets the list of labels for this data set."""
raise NotImplementedError()
@classmethod
def _read_tsv(cls, input_file, quotechar=None):
"""Reads a tab separated value file."""
with tf.gfile.Open(input_file, "r") as f:
reader = csv.reader(f, delimiter="\t", quotechar=quotechar)
lines = []
i = 0
for line in reader:
lines.append(line)
return lines
@classmethod
def _read_file(cls, input_file, quotechar=None):
"""Reads a tab separated value file."""
with tf.gfile.Open(input_file, "r") as f:
reader = csv.reader(f, delimiter="\n", quotechar=quotechar)
lines = []
i = 0
for line in reader:
lines.append(line)
return lines
class CNNDailymail(DataProcessor):
"""Processor for the CoLA data set (GLUE version)."""
def get_train_examples(self, data_dir):
"""See base class."""
return self._create_examples(
self._read_file(os.path.join(data_dir, "train_story.txt")),
self._read_file(os.path.join(data_dir, "train_cfg.txt")),
self._read_file(os.path.join(data_dir, "train_summ.txt")),
self._read_file(os.path.join(data_dir, "train_api_pair.txt")),
"train")
def get_dev_examples(self, data_dir):
"""See base class."""
return self._create_examples(
self._read_file(os.path.join(data_dir, "eval_story.txt")),
self._read_file(os.path.join(data_dir, "eval_cfg.txt")),
self._read_file(os.path.join(data_dir, "eval_summ.txt")),
self._read_file(os.path.join(data_dir, "eval_api_pair.txt")),
"dev")
def get_test_examples(self, data_dir):
"""See base class."""
return self._create_examples(
self._read_file(os.path.join(data_dir, "test_story.txt")),
self._read_file(os.path.join(data_dir, "test_cfg.txt")),
self._read_file(os.path.join(data_dir, "test_summ.txt")),
self._read_file(os.path.join(data_dir, "test_api_pair.txt")),
"test")
def _create_examples(self, src_lines, cfg_lines, tgt_lines, api_lines,set_type):
examples = []
for i, data in enumerate(zip(src_lines, cfg_lines, tgt_lines,api_lines)):
guid = "%s-%s" % (set_type, i)
if set_type == "test" and i == 0:
continue
else:
# print(data)
if len(data[0]) == 0 or len(data[1]) == 0:
continue
src_lines = tokenization.convert_to_unicode(data[0][0])
cfg_lines = tokenization.convert_to_unicode(data[1][0])
tgt_lines = tokenization.convert_to_unicode(data[2][0])
api_lines = tokenization.convert_to_unicode(data[3][0])
examples.append(InputExample(guid=guid, text_a=src_lines, text_c=cfg_lines, text_b=tgt_lines,text_i=api_lines))
return examples
def file_based_convert_examples_to_features(
examples, max_seq_length_src, max_seq_length_cfg, max_seq_length_tgt, max_seq_length_api, tokenizer, output_file):
"""Convert a set of `InputExample`s to a TFRecord file."""
writer = tf.python_io.TFRecordWriter(output_file)
for (ex_index, example) in enumerate(examples):
# print("ex_index",ex_index)
if (ex_index + 1) % 1000 == 0:
print("------------processed..{}...examples".format(ex_index))
feature = convert_single_example(ex_index, example,
max_seq_length_src, max_seq_length_cfg, max_seq_length_tgt, max_seq_length_api, tokenizer)
def create_int_feature(values):
return tf.train.Feature(
int64_list=tf.train.Int64List(value=list(values)))
features = collections.OrderedDict()
features["src_input_ids"] = create_int_feature(feature.src_input_ids)
features["src_input_mask"] = create_int_feature(feature.src_input_mask)
features["src_segment_ids"] = create_int_feature(feature.src_segment_ids)
features["cfg_input_ids"] = create_int_feature(feature.cfg_input_ids)
features["cfg_input_mask"] = create_int_feature(feature.cfg_input_mask)
features["cfg_segment_ids"] = create_int_feature(feature.cfg_segment_ids)
features["api_input_ids"] = create_int_feature(feature.api_input_ids)
features["api_input_mask"] = create_int_feature(feature.api_input_mask)
features["api_segment_ids"] = create_int_feature(feature.api_segment_ids)
features["tgt_input_ids"] = create_int_feature(feature.tgt_input_ids)
features["tgt_input_mask"] = create_int_feature(feature.tgt_input_mask)
features['tgt_labels'] = create_int_feature(feature.tgt_labels)
# print(feature.tgt_labels)
tf_example = tf.train.Example(
features=tf.train.Features(feature=features))
writer.write(tf_example.SerializeToString())
def convert_single_example(ex_index, example, max_seq_length_src, max_seq_length_cfg, max_seq_length_tgt,
max_seq_length_api,
tokenizer):
"""Converts a single `InputExample` into a single `InputFeatures`."""
"""
label_map = {}
for (i, label) in enumerate(label_list):
label_map[label] = i
"""
tokens_a = tokenizer.tokenize(example.src_txt)
tokens_c = tokenizer.tokenize(example.cfg_txt)
tokens_b = tokenizer.tokenize(example.tgt_txt)
tokens_i = tokenizer.tokenize(example.api_txt)
# Modifies `tokens_a` and `tokens_b` in place so that the total
# length is less than the specified length.
# Account for [CLS], [SEP], [SEP] with "- 3"
if len(tokens_a) > max_seq_length_src - 2:
tokens_a = tokens_a[0:(max_seq_length_src - 2)]
if len(tokens_c) > max_seq_length_cfg - 2:
tokens_c = tokens_c[0:(max_seq_length_cfg - 2)]
if len(tokens_b) > max_seq_length_tgt - 2:
tokens_b = tokens_b[0:(max_seq_length_tgt - 2)]
if len(tokens_i) > max_seq_length_api - 2:
tokens_i = tokens_i[0:(max_seq_length_api - 2)]
tokens_api = []
segment_ids_api = []
tokens_api.append("[CLS]")
segment_ids_api.append(0)
for token in tokens_i:
tokens_api.append(token)
segment_ids_api.append(0)
tokens_api.append("[SEP]")
segment_ids_api.append(0)
tokens_src = []
segment_ids_src = []
tokens_src.append("[CLS]")
segment_ids_src.append(0)
for token in tokens_a:
tokens_src.append(token)
segment_ids_src.append(0)
tokens_src.append("[SEP]")
segment_ids_src.append(0)
tokens_cfg = []
segment_ids_cfg = []
tokens_cfg.append("[CLS]")
segment_ids_cfg.append(0)
for token in tokens_c:
tokens_cfg.append(token)
segment_ids_cfg.append(0)
tokens_cfg.append("[SEP]")
segment_ids_cfg.append(0)
tokens_tgt = []
segment_ids_tgt = []
tokens_tgt.append("[CLS]")
# segment_ids_tgt.append(0)
for token in tokens_b:
tokens_tgt.append(token)
# segment_ids_tgt.append(0)
tokens_tgt.append("[SEP]")
# segment_ids_tgt.append(0)
input_ids_src = tokenizer.convert_tokens_to_ids(tokens_src)
input_ids_cfg = tokenizer.convert_tokens_to_ids(tokens_cfg)
input_ids_tgt = tokenizer.convert_tokens_to_ids(tokens_tgt)
input_ids_api = tokenizer.convert_tokens_to_ids(tokens_api)
labels_tgt = input_ids_tgt[1:]
# Adding begiining and end token
input_ids_tgt = input_ids_tgt[:-1]
input_mask_src = [1] * len(input_ids_src)
input_mask_cfg = [1] * len(input_ids_cfg)
input_mask_api = [1] * len(input_ids_api)
input_mask_tgt = [1] * len(input_ids_tgt)
# print(len(input_ids_tgt))
# print(len(input_mask_tgt))
# print(len(labels_tgt))
# print(len(segment_ids_tgt))
while len(input_ids_src) < max_seq_length_src:
input_ids_src.append(0)
input_mask_src.append(0)
segment_ids_src.append(0)
while len(input_ids_cfg) < max_seq_length_cfg:
input_ids_cfg.append(0)
input_mask_cfg.append(0)
segment_ids_cfg.append(0)
while len(input_ids_api) < max_seq_length_api:
input_ids_api.append(0)
input_mask_api.append(0)
segment_ids_api.append(0)
while len(input_ids_tgt) < max_seq_length_tgt:
input_ids_tgt.append(0)
input_mask_tgt.append(0)
segment_ids_tgt.append(0)
labels_tgt.append(0)
feature = InputFeatures(src_input_ids=input_ids_src, src_input_mask=input_mask_src, src_segment_ids=segment_ids_src,
cfg_input_ids=input_ids_cfg, cfg_input_mask=input_mask_cfg, cfg_segment_ids=segment_ids_cfg,
api_input_ids=input_ids_api, api_input_mask=input_mask_api, api_segment_ids=segment_ids_api,
tgt_input_ids=input_ids_tgt, tgt_input_mask=input_mask_tgt, tgt_labels=labels_tgt)
return feature
def file_based_input_fn_builder(input_file, max_seq_length_src, max_seq_length_cfg, max_seq_length_tgt,
max_seq_length_api, is_training,
drop_remainder, is_distributed=False):
"""Creates an `input_fn` closure to be passed to TPUEstimator."""
name_to_features = {
"src_input_ids": tf.FixedLenFeature([max_seq_length_src], tf.int64),
"src_input_mask": tf.FixedLenFeature([max_seq_length_src], tf.int64),
"src_segment_ids": tf.FixedLenFeature([max_seq_length_src], tf.int64),
"cfg_input_ids": tf.FixedLenFeature([max_seq_length_cfg], tf.int64),
"cfg_input_mask": tf.FixedLenFeature([max_seq_length_cfg], tf.int64),
"cfg_segment_ids": tf.FixedLenFeature([max_seq_length_cfg], tf.int64),
"api_input_ids": tf.FixedLenFeature([max_seq_length_api], tf.int64),
"api_input_mask": tf.FixedLenFeature([max_seq_length_api], tf.int64),
"api_segment_ids": tf.FixedLenFeature([max_seq_length_api], tf.int64),
"tgt_input_ids": tf.FixedLenFeature([max_seq_length_tgt], tf.int64),
"tgt_input_mask": tf.FixedLenFeature([max_seq_length_tgt], tf.int64),
"tgt_labels": tf.FixedLenFeature([max_seq_length_tgt], tf.int64),
}
def _decode_record(record, name_to_features):
"""Decodes a record to a TensorFlow example."""
example = tf.parse_single_example(record, name_to_features)
print(example)
print(example.keys())
# tf.Example only supports tf.int64, but the TPU only supports tf.int32.
# So cast all int64 to int32.
for name in list(example.keys()):
t = example[name]
if t.dtype == tf.int64:
t = tf.to_int32(t)
example[name] = t
return example
def input_fn(params):
"""The actual input function."""
batch_size = params["batch_size"]
# For training, we want a lot of parallel reading and shuffling.
# For eval, we want no shuffling and parallel reading doesn't matter.
d = tf.data.TFRecordDataset(input_file)
if is_training:
if is_distributed:
import horovod.tensorflow as hvd
tf.logging.info('distributed mode is enabled.'
'size:{} rank:{}'.format(hvd.size(), hvd.rank()))
# https://github.com/uber/horovod/issues/223
d = d.shard(hvd.size(), hvd.rank())
d = d.repeat()
d = d.shuffle(buffer_size=100)
d = d.apply(
tf.contrib.data.map_and_batch(
lambda record: _decode_record(record, name_to_features),
batch_size=batch_size // hvd.size(),
drop_remainder=drop_remainder))
else:
tf.logging.info('distributed mode is not enabled.')
d = d.repeat()
d = d.shuffle(buffer_size=100)
d = d.apply(
tf.contrib.data.map_and_batch(
lambda record: _decode_record(record, name_to_features),
batch_size=batch_size,
drop_remainder=drop_remainder))
else:
d = d.apply(
tf.contrib.data.map_and_batch(
lambda record: _decode_record(record, name_to_features),
batch_size=batch_size,
drop_remainder=drop_remainder))
return d
return input_fn
def get_dataset(processor,
tokenizer,
data_dir,
max_seq_length_src,
max_seq_length_cfg,
max_seq_length_api,
max_seq_length_tgt,
batch_size,
mode,
output_dir,
is_distributed=False):
"""
Args:
processor: Data Preprocessor, must have get_lables,
get_train/dev/test/examples methods defined.
tokenizer: The Sentence Tokenizer. Generally should be
SentencePiece Model.
data_dir: The input data directory.
max_seq_length: Max sequence length.
batch_size: mini-batch size.
model: `train`, `eval` or `test`.
output_dir: The directory to save the TFRecords in.
"""
# label_list = processor.get_labels()
if mode == 'train':
train_examples = processor.get_train_examples(data_dir)
train_file = os.path.join(output_dir, "train.tf_record")
file_based_convert_examples_to_features(
train_examples, max_seq_length_src, max_seq_length_cfg, max_seq_length_tgt,max_seq_length_api,
tokenizer, train_file)
dataset = file_based_input_fn_builder(
input_file=train_file,
max_seq_length_src=max_seq_length_src,
max_seq_length_cfg=max_seq_length_cfg,
max_seq_length_tgt=max_seq_length_tgt,
max_seq_length_api=max_seq_length_api,
is_training=True,
drop_remainder=True,
is_distributed=is_distributed)({'batch_size': batch_size})
elif mode == 'eval':
eval_examples = processor.get_dev_examples(data_dir)
eval_file = os.path.join(output_dir, "eval.tf_record")
file_based_convert_examples_to_features(
eval_examples, max_seq_length_src, max_seq_length_cfg, max_seq_length_tgt,max_seq_length_api,
tokenizer, eval_file)
dataset = file_based_input_fn_builder(
input_file=eval_file,
max_seq_length_src=max_seq_length_src,
max_seq_length_cfg=max_seq_length_cfg,
max_seq_length_tgt=max_seq_length_tgt,
max_seq_length_api=max_seq_length_api,
is_training=True,
drop_remainder=True,
is_distributed=is_distributed)({'batch_size': batch_size})
elif mode == 'test':
test_examples = processor.get_test_examples(data_dir)
test_file = os.path.join(output_dir, "test.tf_record")
file_based_convert_examples_to_features(
test_examples, max_seq_length_src, max_seq_length_cfg, max_seq_length_tgt,max_seq_length_api,
tokenizer, test_file)
dataset = file_based_input_fn_builder(
input_file=test_file,
max_seq_length_src=max_seq_length_src,
max_seq_length_cfg=max_seq_length_cfg,
max_seq_length_tgt=max_seq_length_tgt,
max_seq_length_api = max_seq_length_api,
is_training=False,
drop_remainder=True,
is_distributed=is_distributed)({'batch_size': batch_size})
return dataset
if __name__ == "__main__":
tokenizer = tokenization.FullTokenizer(
vocab_file=os.path.join(bert_pretrain_dir, 'vocab.txt'),
do_lower_case=True)
vocab_size = len(tokenizer.vocab)
processor = CNNDailymail()
train_dataset = get_dataset(processor, tokenizer, data_dir, max_seq_length_src, max_seq_length_cfg,max_seq_length_api,
max_seq_length_tgt, batch_size,
'train', data_dir)
eval_dataset = get_dataset(processor, tokenizer, data_dir, max_seq_length_src, max_seq_length_cfg,max_seq_length_api,
max_seq_length_tgt, eval_batch_size,
'eval', data_dir)
test_dataset = get_dataset(processor, tokenizer, data_dir, max_seq_length_src, max_seq_length_cfg,max_seq_length_api,
max_seq_length_tgt, test_batch_size,
'test', data_dir)