forked from snap-stanford/GreaseLM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata_utils.py
More file actions
606 lines (524 loc) · 31.4 KB
/
Copy pathdata_utils.py
File metadata and controls
606 lines (524 loc) · 31.4 KB
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
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
import itertools
import json
import pickle
import os
import numpy as np
import torch
from tqdm import tqdm
from transformers import (OPENAI_GPT_PRETRAINED_CONFIG_ARCHIVE_MAP, BERT_PRETRAINED_CONFIG_ARCHIVE_MAP,
XLNET_PRETRAINED_CONFIG_ARCHIVE_MAP, ROBERTA_PRETRAINED_CONFIG_ARCHIVE_MAP)
from transformers import (OpenAIGPTTokenizer, BertTokenizer, XLNetTokenizer, RobertaTokenizer)
try:
from transformers import ALBERT_PRETRAINED_CONFIG_ARCHIVE_MAP
from transformers import AlbertTokenizer
except:
pass
from preprocess_utils import conceptnet
from utils import utils
MODEL_CLASS_TO_NAME = {
'gpt': list(OPENAI_GPT_PRETRAINED_CONFIG_ARCHIVE_MAP.keys()),
'bert': list(BERT_PRETRAINED_CONFIG_ARCHIVE_MAP.keys()),
'xlnet': list(XLNET_PRETRAINED_CONFIG_ARCHIVE_MAP.keys()),
'roberta': list(ROBERTA_PRETRAINED_CONFIG_ARCHIVE_MAP.keys()),
'lstm': ['lstm'],
}
try:
MODEL_CLASS_TO_NAME['albert'] = list(ALBERT_PRETRAINED_CONFIG_ARCHIVE_MAP.keys())
except:
pass
MODEL_NAME_TO_CLASS = {model_name: model_class for model_class, model_name_list in MODEL_CLASS_TO_NAME.items() for model_name in model_name_list}
#Add SapBERT configuration
model_name = 'cambridgeltl/SapBERT-from-PubMedBERT-fulltext'
MODEL_NAME_TO_CLASS[model_name] = 'bert'
GPT_SPECIAL_TOKENS = ['_start_', '_delimiter_', '_classify_']
class MultiGPUSparseAdjDataBatchGenerator(object):
"""A data generator that batches the data and moves them to the corresponding devices."""
def __init__(self, device0, device1, batch_size, indexes, qids, labels,
tensors0=[], lists0=[], tensors1=[], lists1=[], adj_data=None):
self.device0 = device0
self.device1 = device1
self.batch_size = batch_size
self.indexes = indexes
self.qids = qids
self.labels = labels
self.tensors0 = tensors0
self.lists0 = lists0
self.tensors1 = tensors1
self.lists1 = lists1
self.adj_data = adj_data
def __len__(self):
return (self.indexes.size(0) - 1) // self.batch_size + 1
def __iter__(self):
bs = self.batch_size
n = self.indexes.size(0)
for a in range(0, n, bs):
b = min(n, a + bs)
batch_indexes = self.indexes[a:b]
batch_qids = [self.qids[idx] for idx in batch_indexes]
batch_labels = self._to_device(self.labels[batch_indexes], self.device1)
batch_tensors0 = [self._to_device(x[batch_indexes], self.device1) for x in self.tensors0]
batch_tensors1 = [self._to_device(x[batch_indexes], self.device1) for x in self.tensors1]
batch_tensors1[0] = batch_tensors1[0].to(self.device0)
batch_lists0 = [self._to_device([x[i] for i in batch_indexes], self.device0) for x in self.lists0]
batch_lists1 = [self._to_device([x[i] for i in batch_indexes], self.device1) for x in self.lists1]
edge_index_all, edge_type_all = self.adj_data
#edge_index_all: nested list of shape (n_samples, num_choice), where each entry is tensor[2, E]
#edge_type_all: nested list of shape (n_samples, num_choice), where each entry is tensor[E, ]
edge_index = self._to_device([edge_index_all[i] for i in batch_indexes], self.device1)
edge_type = self._to_device([edge_type_all[i] for i in batch_indexes], self.device1)
yield tuple([batch_qids, batch_labels, *batch_tensors0, *batch_lists0, *batch_tensors1, *batch_lists1, edge_index, edge_type])
def _to_device(self, obj, device):
if isinstance(obj, (tuple, list)):
return [self._to_device(item, device) for item in obj]
else:
return obj.to(device)
class GreaseLM_DataLoader(object):
def __init__(self, train_statement_path, train_adj_path,
dev_statement_path, dev_adj_path,
test_statement_path, test_adj_path,
batch_size, eval_batch_size, device, model_name, max_node_num=200, max_seq_length=128,
is_inhouse=False, inhouse_train_qids_path=None,
subsample=1.0, n_train=-1, debug=False, cxt_node_connects_all=False, kg="cpnet"):
super().__init__()
self.batch_size = batch_size
self.eval_batch_size = eval_batch_size
self.device0, self.device1 = device
self.is_inhouse = is_inhouse
self.debug = debug
self.model_name = model_name
self.max_node_num = max_node_num
self.debug_sample_size = 32
self.cxt_node_connects_all = cxt_node_connects_all
self.model_type = MODEL_NAME_TO_CLASS[model_name]
self.load_resources(kg)
# Load training data
print ('train_statement_path', train_statement_path)
self.train_qids, self.train_labels, self.train_encoder_data, train_concepts_by_sents_list = self.load_input_tensors(train_statement_path, max_seq_length)
num_choice = self.train_encoder_data[0].size(1)
self.num_choice = num_choice
print ('num_choice', num_choice)
*self.train_decoder_data, self.train_adj_data = self.load_sparse_adj_data_with_contextnode(train_adj_path, max_node_num, train_concepts_by_sents_list)
if not debug:
assert all(len(self.train_qids) == len(self.train_adj_data[0]) == x.size(0) for x in [self.train_labels] + self.train_encoder_data + self.train_decoder_data)
print("Finish loading training data.")
# Load dev data
self.dev_qids, self.dev_labels, self.dev_encoder_data, dev_concepts_by_sents_list = self.load_input_tensors(dev_statement_path, max_seq_length)
*self.dev_decoder_data, self.dev_adj_data = self.load_sparse_adj_data_with_contextnode(dev_adj_path, max_node_num, dev_concepts_by_sents_list)
if not debug:
assert all(len(self.dev_qids) == len(self.dev_adj_data[0]) == x.size(0) for x in [self.dev_labels] + self.dev_encoder_data + self.dev_decoder_data)
print("Finish loading dev data.")
# Load test data
if test_statement_path is not None:
self.test_qids, self.test_labels, self.test_encoder_data, test_concepts_by_sents_list = self.load_input_tensors(test_statement_path, max_seq_length)
*self.test_decoder_data, self.test_adj_data = self.load_sparse_adj_data_with_contextnode(test_adj_path, max_node_num, test_concepts_by_sents_list)
if not debug:
assert all(len(self.test_qids) == len(self.test_adj_data[0]) == x.size(0) for x in [self.test_labels] + self.test_encoder_data + self.test_decoder_data)
print("Finish loading test data.")
# If using inhouse split, we split the original training set into an inhouse training set and an inhouse test set.
if self.is_inhouse:
with open(inhouse_train_qids_path, 'r') as fin:
inhouse_qids = set(line.strip() for line in fin)
self.inhouse_train_indexes = torch.tensor([i for i, qid in enumerate(self.train_qids) if qid in inhouse_qids])
self.inhouse_test_indexes = torch.tensor([i for i, qid in enumerate(self.train_qids) if qid not in inhouse_qids])
# Optionally we can subsample the training set.
assert 0. < subsample <= 1.
if subsample < 1. or n_train >= 0:
# n_train will override subsample if the former is not None
if n_train == -1:
n_train = int(self.train_size() * subsample)
assert n_train > 0
if self.is_inhouse:
self.inhouse_train_indexes = self.inhouse_train_indexes[:n_train]
else:
self.train_qids = self.train_qids[:n_train]
self.train_labels = self.train_labels[:n_train]
self.train_encoder_data = [x[:n_train] for x in self.train_encoder_data]
self.train_decoder_data = [x[:n_train] for x in self.train_decoder_data]
self.train_adj_data = self.train_adj_data[:n_train]
assert all(len(self.train_qids) == len(self.train_adj_data[0]) == x.size(0) for x in [self.train_labels] + self.train_encoder_data + self.train_decoder_data)
assert self.train_size() == n_train
def train_size(self):
return self.inhouse_train_indexes.size(0) if self.is_inhouse else len(self.train_qids)
def dev_size(self):
return len(self.dev_qids)
def test_size(self):
if self.is_inhouse:
return self.inhouse_test_indexes.size(0)
else:
return len(self.test_qids) if hasattr(self, 'test_qids') else 0
def train(self):
if self.debug:
train_indexes = torch.arange(self.debug_sample_size)
elif self.is_inhouse:
n_train = self.inhouse_train_indexes.size(0)
train_indexes = self.inhouse_train_indexes[torch.randperm(n_train)]
else:
train_indexes = torch.randperm(len(self.train_qids))
return MultiGPUSparseAdjDataBatchGenerator(self.device0, self.device1, self.batch_size, train_indexes, self.train_qids, self.train_labels, tensors0=self.train_encoder_data, tensors1=self.train_decoder_data, adj_data=self.train_adj_data)
def train_eval(self):
return MultiGPUSparseAdjDataBatchGenerator(self.device0, self.device1, self.eval_batch_size, torch.arange(len(self.train_qids)), self.train_qids, self.train_labels, tensors0=self.train_encoder_data, tensors1=self.train_decoder_data, adj_data=self.train_adj_data)
def dev(self):
if self.debug:
dev_indexes = torch.arange(self.debug_sample_size)
else:
dev_indexes = torch.arange(len(self.dev_qids))
return MultiGPUSparseAdjDataBatchGenerator(self.device0, self.device1, self.eval_batch_size, dev_indexes, self.dev_qids, self.dev_labels, tensors0=self.dev_encoder_data, tensors1=self.dev_decoder_data, adj_data=self.dev_adj_data)
def test(self):
if self.debug:
test_indexes = torch.arange(self.debug_sample_size)
elif self.is_inhouse:
test_indexes = self.inhouse_test_indexes
else:
test_indexes = torch.arange(len(self.test_qids))
if self.is_inhouse:
return MultiGPUSparseAdjDataBatchGenerator(self.device0, self.device1, self.eval_batch_size, test_indexes, self.train_qids, self.train_labels, tensors0=self.train_encoder_data, tensors1=self.train_decoder_data, adj_data=self.train_adj_data)
else:
return MultiGPUSparseAdjDataBatchGenerator(self.device0, self.device1, self.eval_batch_size, test_indexes, self.test_qids, self.test_labels, tensors0=self.test_encoder_data, tensors1=self.test_decoder_data, adj_data=self.test_adj_data)
def load_resources(self, kg):
# Load the tokenizer
try:
tokenizer_class = {'bert': BertTokenizer, 'xlnet': XLNetTokenizer, 'roberta': RobertaTokenizer, 'albert': AlbertTokenizer}.get(self.model_type)
except:
tokenizer_class = {'bert': BertTokenizer, 'xlnet': XLNetTokenizer, 'roberta': RobertaTokenizer}.get(self.model_type)
tokenizer = tokenizer_class.from_pretrained(self.model_name)
self.tokenizer = tokenizer
if kg == "cpnet":
# Load cpnet
cpnet_vocab_path = "data/cpnet/concept.txt"
with open(cpnet_vocab_path, "r", encoding="utf8") as fin:
self.id2concept = [w.strip() for w in fin]
self.concept2id = {w: i for i, w in enumerate(self.id2concept)}
self.id2relation = conceptnet.merged_relations
elif kg == "ddb":
cpnet_vocab_path = "data/ddb/vocab.txt"
with open(cpnet_vocab_path, "r", encoding="utf8") as fin:
self.id2concept = [w.strip() for w in fin]
self.concept2id = {w: i for i, w in enumerate(self.id2concept)}
self.id2relation = [
'belongstothecategoryof',
'isacategory',
'maycause',
'isasubtypeof',
'isariskfactorof',
'isassociatedwith',
'maycontraindicate',
'interactswith',
'belongstothedrugfamilyof',
'child-parent',
'isavectorfor',
'mabeallelicwith',
'seealso',
'isaningradientof',
'mabeindicatedby'
]
else:
raise ValueError("Invalid value for kg.")
def load_input_tensors(self, input_jsonl_path, max_seq_length):
"""Construct input tensors for the LM component of the model."""
cache_path = input_jsonl_path + "-sl{}".format(max_seq_length) + (("-" + self.model_type) if self.model_type != "roberta" else "") + '.loaded_cache'
use_cache = True
if use_cache and not os.path.exists(cache_path):
use_cache = False
if use_cache:
with open(cache_path, 'rb') as f:
input_tensors = utils.CPU_Unpickler(f).load()
else:
if self.model_type in ('lstm',):
raise NotImplementedError
elif self.model_type in ('gpt',):
input_tensors = load_gpt_input_tensors(input_jsonl_path, max_seq_length)
elif self.model_type in ('bert', 'xlnet', 'roberta', 'albert'):
input_tensors = load_bert_xlnet_roberta_input_tensors(input_jsonl_path, max_seq_length, self.debug, self.tokenizer, self.debug_sample_size)
if not self.debug:
utils.save_pickle(input_tensors, cache_path)
return input_tensors
def load_sparse_adj_data_with_contextnode(self, adj_pk_path, max_node_num, concepts_by_sents_list):
"""Construct input tensors for the GNN component of the model."""
print("Loading sparse adj data...")
cache_path = adj_pk_path + "-nodenum{}".format(max_node_num) + ("-cntsall" if self.cxt_node_connects_all else "") + '.loaded_cache'
use_cache = True
if use_cache and not os.path.exists(cache_path):
use_cache = False
if use_cache:
with open(cache_path, 'rb') as f:
adj_lengths_ori, concept_ids, node_type_ids, node_scores, adj_lengths, edge_index, edge_type, half_n_rel, special_nodes_mask = utils.CPU_Unpickler(f).load()
else:
# Set special nodes and links
context_node = 0
n_special_nodes = 1
cxt2qlinked_rel = 0
cxt2alinked_rel = 1
half_n_rel = len(self.id2relation) + 2
if self.cxt_node_connects_all:
cxt2other_rel = half_n_rel
half_n_rel += 1
adj_concept_pairs = []
with open(adj_pk_path, "rb") as in_file:
try:
while True:
ex = pickle.load(in_file)
if type(ex) == dict:
adj_concept_pairs.append(ex)
elif type(ex) == list:
adj_concept_pairs.extend(ex)
else:
raise TypeError("Invalid type for ex.")
except EOFError:
pass
n_samples = len(adj_concept_pairs) #this is actually n_questions x n_choices
edge_index, edge_type = [], []
adj_lengths = torch.zeros((n_samples,), dtype=torch.long)
concept_ids = torch.full((n_samples, max_node_num), 1, dtype=torch.long)
node_type_ids = torch.full((n_samples, max_node_num), 2, dtype=torch.long) #default 2: "other node"
node_scores = torch.zeros((n_samples, max_node_num, 1), dtype=torch.float)
special_nodes_mask = torch.zeros(n_samples, max_node_num, dtype=torch.bool)
adj_lengths_ori = adj_lengths.clone()
if not concepts_by_sents_list:
concepts_by_sents_list = itertools.repeat(None)
for idx, (_data, cpts_by_sents) in tqdm(enumerate(zip(adj_concept_pairs, concepts_by_sents_list)), total=n_samples, desc='loading adj matrices'):
if self.debug and idx >= self.debug_sample_size * self.num_choice:
break
adj, concepts, qm, am, cid2score = _data['adj'], _data['concepts'], _data['qmask'], _data['amask'], _data['cid2score']
#adj: e.g. <4233x249 (n_nodes*half_n_rels x n_nodes) sparse matrix of type '<class 'numpy.bool'>' with 2905 stored elements in COOrdinate format>
#concepts: np.array(num_nodes, ), where entry is concept id
#qm: np.array(num_nodes, ), where entry is True/False
#am: np.array(num_nodes, ), where entry is True/False
assert len(concepts) == len(set(concepts))
qam = qm | am
#sanity check: should be T,..,T,F,F,..F
assert qam[0] == True
F_start = False
for TF in qam:
if TF == False:
F_start = True
else:
assert F_start == False
assert n_special_nodes <= max_node_num
special_nodes_mask[idx, :n_special_nodes] = 1
num_concept = min(len(concepts) + n_special_nodes, max_node_num) #this is the final number of nodes including contextnode but excluding PAD
adj_lengths_ori[idx] = len(concepts)
adj_lengths[idx] = num_concept
#Prepare nodes
concepts = concepts[:num_concept - n_special_nodes]
concept_ids[idx, n_special_nodes:num_concept] = torch.tensor(concepts + 1) #To accomodate contextnode, original concept_ids incremented by 1
concept_ids[idx, 0] = context_node #this is the "concept_id" for contextnode
#Prepare node scores
if cid2score is not None:
if -1 not in cid2score:
cid2score[-1] = 0
for _j_ in range(num_concept):
_cid = int(concept_ids[idx, _j_]) - 1 # Now context node is -1
node_scores[idx, _j_, 0] = torch.tensor(cid2score[_cid])
#Prepare node types
node_type_ids[idx, 0] = 3 # context node
node_type_ids[idx, 1:n_special_nodes] = 4 # sent nodes
node_type_ids[idx, n_special_nodes:num_concept][torch.tensor(qm, dtype=torch.bool)[:num_concept - n_special_nodes]] = 0
node_type_ids[idx, n_special_nodes:num_concept][torch.tensor(am, dtype=torch.bool)[:num_concept - n_special_nodes]] = 1
#Load adj
ij = torch.tensor(adj.row, dtype=torch.int64) #(num_matrix_entries, ), where each entry is coordinate
k = torch.tensor(adj.col, dtype=torch.int64) #(num_matrix_entries, ), where each entry is coordinate
n_node = adj.shape[1]
assert len(self.id2relation) == adj.shape[0] // n_node
i, j = ij // n_node, ij % n_node
#Prepare edges
i += 2; j += 1; k += 1 # **** increment coordinate by 1, rel_id by 2 ****
extra_i, extra_j, extra_k = [], [], []
for _coord, q_tf in enumerate(qm):
_new_coord = _coord + n_special_nodes
if _new_coord > num_concept:
break
if q_tf:
extra_i.append(cxt2qlinked_rel) #rel from contextnode to question concept
extra_j.append(0) #contextnode coordinate
extra_k.append(_new_coord) #question concept coordinate
elif self.cxt_node_connects_all:
extra_i.append(cxt2other_rel) #rel from contextnode to other concept
extra_j.append(0) #contextnode coordinate
extra_k.append(_new_coord) #other concept coordinate
for _coord, a_tf in enumerate(am):
_new_coord = _coord + n_special_nodes
if _new_coord > num_concept:
break
if a_tf:
extra_i.append(cxt2alinked_rel) #rel from contextnode to answer concept
extra_j.append(0) #contextnode coordinate
extra_k.append(_new_coord) #answer concept coordinate
elif self.cxt_node_connects_all:
extra_i.append(cxt2other_rel) #rel from contextnode to other concept
extra_j.append(0) #contextnode coordinate
extra_k.append(_new_coord) #other concept coordinate
# half_n_rel += 2 #should be 19 now
if len(extra_i) > 0:
i = torch.cat([i, torch.tensor(extra_i)], dim=0)
j = torch.cat([j, torch.tensor(extra_j)], dim=0)
k = torch.cat([k, torch.tensor(extra_k)], dim=0)
########################
mask = (j < max_node_num) & (k < max_node_num)
i, j, k = i[mask], j[mask], k[mask]
i, j, k = torch.cat((i, i + half_n_rel), 0), torch.cat((j, k), 0), torch.cat((k, j), 0) # add inverse relations
edge_index.append(torch.stack([j,k], dim=0)) #each entry is [2, E]
edge_type.append(i) #each entry is [E, ]
if not self.debug:
with open(cache_path, 'wb') as f:
pickle.dump([adj_lengths_ori, concept_ids, node_type_ids, node_scores, adj_lengths, edge_index, edge_type, half_n_rel, special_nodes_mask], f)
ori_adj_mean = adj_lengths_ori.float().mean().item()
ori_adj_sigma = np.sqrt(((adj_lengths_ori.float() - ori_adj_mean)**2).mean().item())
print('| ori_adj_len: mu {:.2f} sigma {:.2f} | adj_len: {:.2f} |'.format(ori_adj_mean, ori_adj_sigma, adj_lengths.float().mean().item()) +
' prune_rate: {:.2f} |'.format((adj_lengths_ori > adj_lengths).float().mean().item()) +
' qc_num: {:.2f} | ac_num: {:.2f} |'.format((node_type_ids == 0).float().sum(1).mean().item(),
(node_type_ids == 1).float().sum(1).mean().item()))
edge_index = list(map(list, zip(*(iter(edge_index),) * self.num_choice))) #list of size (n_questions, n_choices), where each entry is tensor[2, E] #this operation corresponds to .view(n_questions, n_choices)
edge_type = list(map(list, zip(*(iter(edge_type),) * self.num_choice))) #list of size (n_questions, n_choices), where each entry is tensor[E, ]
concept_ids, node_type_ids, node_scores, adj_lengths, special_nodes_mask = [x.view(-1, self.num_choice, *x.size()[1:]) for x in (concept_ids, node_type_ids, node_scores, adj_lengths, special_nodes_mask)]
#concept_ids: (n_questions, num_choice, max_node_num)
#node_type_ids: (n_questions, num_choice, max_node_num)
#node_scores: (n_questions, num_choice, max_node_num)
#adj_lengths: (n_questions, num_choice)
return concept_ids, node_type_ids, node_scores, adj_lengths, special_nodes_mask, (edge_index, edge_type) #, half_n_rel * 2 + 1
def load_gpt_input_tensors(statement_jsonl_path, max_seq_length):
def _truncate_seq_pair(tokens_a, tokens_b, max_length):
"""Truncates a sequence pair in place to the maximum length."""
while True:
total_length = len(tokens_a) + len(tokens_b)
if total_length <= max_length:
break
if len(tokens_a) > len(tokens_b):
tokens_a.pop()
else:
tokens_b.pop()
def load_qa_dataset(dataset_path):
""" Output a list of tuples(story, 1st continuation, 2nd continuation, label) """
with open(dataset_path, "r", encoding="utf-8") as fin:
output = []
for line in fin:
input_json = json.loads(line)
label = ord(input_json.get("answerKey", "A")) - ord("A")
output.append((input_json['id'], input_json["question"]["stem"], *[ending["text"] for ending in input_json["question"]["choices"]], label))
return output
def pre_process_datasets(encoded_datasets, num_choices, max_seq_length, start_token, delimiter_token, clf_token):
""" Pre-process datasets containing lists of tuples(story, 1st continuation, 2nd continuation, label)
To Transformer inputs of shape (n_batch, n_alternative, length) comprising for each batch, continuation:
input_ids[batch, alternative, :] = [start_token] + story[:cap_length] + [delimiter_token] + cont1[:cap_length] + [clf_token]
"""
tensor_datasets = []
for dataset in encoded_datasets:
n_batch = len(dataset)
input_ids = np.zeros((n_batch, num_choices, max_seq_length), dtype=np.int64)
mc_token_ids = np.zeros((n_batch, num_choices), dtype=np.int64)
lm_labels = np.full((n_batch, num_choices, max_seq_length), fill_value=-1, dtype=np.int64)
mc_labels = np.zeros((n_batch,), dtype=np.int64)
for i, data, in enumerate(dataset):
q, mc_label = data[0], data[-1]
choices = data[1:-1]
for j in range(len(choices)):
_truncate_seq_pair(q, choices[j], max_seq_length - 3)
qa = [start_token] + q + [delimiter_token] + choices[j] + [clf_token]
input_ids[i, j, :len(qa)] = qa
mc_token_ids[i, j] = len(qa) - 1
lm_labels[i, j, :len(qa) - 1] = qa[1:]
mc_labels[i] = mc_label
all_inputs = (input_ids, mc_token_ids, lm_labels, mc_labels)
tensor_datasets.append(tuple(torch.tensor(t) for t in all_inputs))
return tensor_datasets
def tokenize_and_encode(tokenizer, obj):
""" Tokenize and encode a nested object """
if isinstance(obj, str):
return tokenizer.convert_tokens_to_ids(tokenizer.tokenize(obj))
elif isinstance(obj, int):
return obj
else:
return list(tokenize_and_encode(tokenizer, o) for o in obj)
tokenizer = OpenAIGPTTokenizer.from_pretrained('openai-gpt')
tokenizer.add_tokens(GPT_SPECIAL_TOKENS)
special_tokens_ids = tokenizer.convert_tokens_to_ids(GPT_SPECIAL_TOKENS)
dataset = load_qa_dataset(statement_jsonl_path)
examples_ids = [data[0] for data in dataset]
dataset = [data[1:] for data in dataset] # discard example ids
num_choices = len(dataset[0]) - 2
encoded_dataset = tokenize_and_encode(tokenizer, dataset)
(input_ids, mc_token_ids, lm_labels, mc_labels), = pre_process_datasets([encoded_dataset], num_choices, max_seq_length, *special_tokens_ids)
return examples_ids, mc_labels, input_ids, mc_token_ids, lm_labels
def load_bert_xlnet_roberta_input_tensors(statement_jsonl_path, max_seq_length, debug, tokenizer, debug_sample_size):
class InputExample(object):
def __init__(self, example_id, question, contexts, endings, label=None):
self.example_id = example_id
self.question = question
self.contexts = contexts
self.endings = endings
self.label = label
class InputFeatures(object):
def __init__(self, example_id, choices_features, label):
self.example_id = example_id
self.choices_features = [
{
'input_ids': input_ids,
'input_mask': input_mask,
'segment_ids': segment_ids,
'output_mask': output_mask,
}
for input_ids, input_mask, segment_ids, output_mask in choices_features
]
self.label = label
def read_examples(input_file):
with open(input_file, "r", encoding="utf-8") as f:
examples = []
for line in f.readlines():
json_dic = json.loads(line)
label = ord(json_dic["answerKey"]) - ord("A") if 'answerKey' in json_dic else 0
contexts = json_dic["question"]["stem"]
if "para" in json_dic:
contexts = json_dic["para"] + " " + contexts
if "fact1" in json_dic:
contexts = json_dic["fact1"] + " " + contexts
examples.append(
InputExample(
example_id=json_dic["id"],
contexts=[contexts] * len(json_dic["question"]["choices"]),
question="",
endings=[ending["text"] for ending in json_dic["question"]["choices"]],
label=label
))
return examples
def simple_convert_examples_to_features(examples, label_list, max_seq_length, tokenizer):
""" Loads a data file into a list of `InputBatch`s
`cls_token_at_end` define the location of the CLS token:
- False (Default, BERT/XLM pattern): [CLS] + A + [SEP] + B + [SEP]
- True (XLNet/GPT pattern): A + [SEP] + B + [SEP] + [CLS]
`cls_token_segment_id` define the segment id associated to the CLS token (0 for BERT, 2 for XLNet)
"""
label_map = {label: i for i, label in enumerate(label_list)}
features = []
concepts_by_sents_list = []
for ex_index, example in tqdm(enumerate(examples), total=len(examples), desc="Converting examples to features"):
if debug and ex_index >= debug_sample_size:
break
choices_features = []
for ending_idx, (context, ending) in enumerate(zip(example.contexts, example.endings)):
ans = example.question + " " + ending
encoded_input = tokenizer(context, ans, padding="max_length", truncation=True, max_length=max_seq_length, return_token_type_ids=True, return_special_tokens_mask=True)
input_ids = encoded_input["input_ids"]
output_mask = encoded_input["special_tokens_mask"]
input_mask = encoded_input["attention_mask"]
segment_ids = encoded_input["token_type_ids"]
assert len(input_ids) == max_seq_length
assert len(output_mask) == max_seq_length
assert len(input_mask) == max_seq_length
assert len(segment_ids) == max_seq_length
choices_features.append((input_ids, input_mask, segment_ids, output_mask))
label = label_map[example.label]
features.append(InputFeatures(example_id=example.example_id, choices_features=choices_features, label=label))
return features, concepts_by_sents_list
def select_field(features, field):
return [[choice[field] for choice in feature.choices_features] for feature in features]
def convert_features_to_tensors(features):
all_input_ids = torch.tensor(select_field(features, 'input_ids'), dtype=torch.long)
all_input_mask = torch.tensor(select_field(features, 'input_mask'), dtype=torch.long)
all_segment_ids = torch.tensor(select_field(features, 'segment_ids'), dtype=torch.long)
all_output_mask = torch.tensor(select_field(features, 'output_mask'), dtype=torch.bool)
all_label = torch.tensor([f.label for f in features], dtype=torch.long)
return all_input_ids, all_input_mask, all_segment_ids, all_output_mask, all_label
examples = read_examples(statement_jsonl_path)
features, concepts_by_sents_list = simple_convert_examples_to_features(examples, list(range(len(examples[0].endings))), max_seq_length, tokenizer)
example_ids = [f.example_id for f in features]
*data_tensors, all_label = convert_features_to_tensors(features)
return example_ids, all_label, data_tensors, concepts_by_sents_list