-
Notifications
You must be signed in to change notification settings - Fork 0
/
datasets.py
272 lines (211 loc) · 9.79 KB
/
datasets.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
#!/usr/bin/env python3
'''
This module contains our Dataset classes and functions that load the three datasets
for training and evaluating multitask BERT.
Feel free to edit code in this file if you wish to modify the way in which the data
examples are preprocessed.
'''
import csv
import torch
from torch.utils.data import Dataset
from tokenizer import BertTokenizer
def preprocess_string(s):
return ' '.join(s.lower()
.replace('.', ' .')
.replace('?', ' ?')
.replace(',', ' ,')
.replace('\'', ' \'')
.split())
class SentenceClassificationDataset(Dataset):
def __init__(self, dataset, args):
self.dataset = dataset
self.p = args
self.tokenizer = BertTokenizer.from_pretrained('bert-base-uncased')
def __len__(self):
return len(self.dataset)
def __getitem__(self, idx):
return self.dataset[idx]
def pad_data(self, data):
sents = [x[0] for x in data]
labels = [x[1] for x in data]
sent_ids = [x[2] for x in data]
encoding = self.tokenizer(sents, return_tensors='pt', padding=True, truncation=True)
token_ids = torch.LongTensor(encoding['input_ids'])
attention_mask = torch.LongTensor(encoding['attention_mask'])
labels = torch.LongTensor(labels)
return token_ids, attention_mask, labels, sents, sent_ids
def collate_fn(self, all_data):
token_ids, attention_mask, labels, sents, sent_ids= self.pad_data(all_data)
batched_data = {
'token_ids': token_ids,
'attention_mask': attention_mask,
'labels': labels,
'sents': sents,
'sent_ids': sent_ids
}
return batched_data
# Unlike SentenceClassificationDataset, we do not load labels in SentenceClassificationTestDataset.
class SentenceClassificationTestDataset(Dataset):
def __init__(self, dataset, args):
self.dataset = dataset
self.p = args
self.tokenizer = BertTokenizer.from_pretrained('bert-base-uncased')
def __len__(self):
return len(self.dataset)
def __getitem__(self, idx):
return self.dataset[idx]
def pad_data(self, data):
sents = [x[0] for x in data]
sent_ids = [x[1] for x in data]
encoding = self.tokenizer(sents, return_tensors='pt', padding=True, truncation=True)
token_ids = torch.LongTensor(encoding['input_ids'])
attention_mask = torch.LongTensor(encoding['attention_mask'])
return token_ids, attention_mask, sents, sent_ids
def collate_fn(self, all_data):
token_ids, attention_mask, sents, sent_ids= self.pad_data(all_data)
batched_data = {
'token_ids': token_ids,
'attention_mask': attention_mask,
'sents': sents,
'sent_ids': sent_ids
}
return batched_data
class SentencePairDataset(Dataset):
def __init__(self, dataset, args, isRegression=False):
self.dataset = dataset
self.p = args
self.isRegression = isRegression
self.tokenizer = BertTokenizer.from_pretrained('bert-base-uncased')
def __len__(self):
return len(self.dataset)
def __getitem__(self, idx):
return self.dataset[idx]
def pad_data(self, data):
sent1 = [x[0] for x in data]
sent2 = [x[1] for x in data]
labels = [x[2] for x in data]
sent_ids = [x[3] for x in data]
encoding1 = self.tokenizer(sent1, return_tensors='pt', padding=True, truncation=True)
encoding2 = self.tokenizer(sent2, return_tensors='pt', padding=True, truncation=True)
token_ids = torch.LongTensor(encoding1['input_ids'])
attention_mask = torch.LongTensor(encoding1['attention_mask'])
token_type_ids = torch.LongTensor(encoding1['token_type_ids'])
token_ids2 = torch.LongTensor(encoding2['input_ids'])
attention_mask2 = torch.LongTensor(encoding2['attention_mask'])
token_type_ids2 = torch.LongTensor(encoding2['token_type_ids'])
if self.isRegression:
labels = torch.DoubleTensor(labels)
else:
labels = torch.LongTensor(labels)
return (token_ids, token_type_ids, attention_mask,
token_ids2, token_type_ids2, attention_mask2,
labels,sent_ids)
def collate_fn(self, all_data):
(token_ids, token_type_ids, attention_mask,
token_ids2, token_type_ids2, attention_mask2,
labels, sent_ids) = self.pad_data(all_data)
batched_data = {
'token_ids_1': token_ids,
'token_type_ids_1': token_type_ids,
'attention_mask_1': attention_mask,
'token_ids_2': token_ids2,
'token_type_ids_2': token_type_ids2,
'attention_mask_2': attention_mask2,
'labels': labels,
'sent_ids': sent_ids
}
return batched_data
# Unlike SentencePairDataset, we do not load labels in SentencePairTestDataset.
class SentencePairTestDataset(Dataset):
def __init__(self, dataset, args):
self.dataset = dataset
self.p = args
self.tokenizer = BertTokenizer.from_pretrained('bert-base-uncased')
def __len__(self):
return len(self.dataset)
def __getitem__(self, idx):
return self.dataset[idx]
def pad_data(self, data):
sent1 = [x[0] for x in data]
sent2 = [x[1] for x in data]
sent_ids = [x[2] for x in data]
encoding1 = self.tokenizer(sent1, return_tensors='pt', padding=True, truncation=True)
encoding2 = self.tokenizer(sent2, return_tensors='pt', padding=True, truncation=True)
token_ids = torch.LongTensor(encoding1['input_ids'])
attention_mask = torch.LongTensor(encoding1['attention_mask'])
token_type_ids = torch.LongTensor(encoding1['token_type_ids'])
token_ids2 = torch.LongTensor(encoding2['input_ids'])
attention_mask2 = torch.LongTensor(encoding2['attention_mask'])
token_type_ids2 = torch.LongTensor(encoding2['token_type_ids'])
return (token_ids, token_type_ids, attention_mask,
token_ids2, token_type_ids2, attention_mask2,
sent_ids)
def collate_fn(self, all_data):
(token_ids, token_type_ids, attention_mask,
token_ids2, token_type_ids2, attention_mask2,
sent_ids) = self.pad_data(all_data)
batched_data = {
'token_ids_1': token_ids,
'token_type_ids_1': token_type_ids,
'attention_mask_1': attention_mask,
'token_ids_2': token_ids2,
'token_type_ids_2': token_type_ids2,
'attention_mask_2': attention_mask2,
'sent_ids': sent_ids
}
return batched_data
def load_multitask_data(sentiment_filename,paraphrase_filename,similarity_filename,split='train'):
sentiment_data = []
num_labels = {}
if split == 'test':
with open(sentiment_filename, 'r') as fp:
for record in csv.DictReader(fp,delimiter = '\t'):
sent = record['sentence'].lower().strip()
sent_id = record['id'].lower().strip()
sentiment_data.append((sent,sent_id))
else:
with open(sentiment_filename, 'r') as fp:
for record in csv.DictReader(fp,delimiter = '\t'):
sent = record['sentence'].lower().strip()
sent_id = record['id'].lower().strip()
label = int(record['sentiment'].strip())
if label not in num_labels:
num_labels[label] = len(num_labels)
sentiment_data.append((sent, label,sent_id))
print(f"Loaded {len(sentiment_data)} {split} examples from {sentiment_filename}")
paraphrase_data = []
if split == 'test':
with open(paraphrase_filename, 'r') as fp:
for record in csv.DictReader(fp,delimiter = '\t'):
sent_id = record['id'].lower().strip()
paraphrase_data.append((preprocess_string(record['sentence1']),
preprocess_string(record['sentence2']),
sent_id))
else:
with open(paraphrase_filename, 'r') as fp:
for record in csv.DictReader(fp,delimiter = '\t'):
try:
sent_id = record['id'].lower().strip()
paraphrase_data.append((preprocess_string(record['sentence1']),
preprocess_string(record['sentence2']),
int(float(record['is_duplicate'])),sent_id))
except:
pass
print(f"Loaded {len(paraphrase_data)} {split} examples from {paraphrase_filename}")
similarity_data = []
if split == 'test':
with open(similarity_filename, 'r') as fp:
for record in csv.DictReader(fp,delimiter = '\t'):
sent_id = record['id'].lower().strip()
similarity_data.append((preprocess_string(record['sentence1']),
preprocess_string(record['sentence2'])
,sent_id))
else:
with open(similarity_filename, 'r') as fp:
for record in csv.DictReader(fp,delimiter = '\t'):
sent_id = record['id'].lower().strip()
similarity_data.append((preprocess_string(record['sentence1']),
preprocess_string(record['sentence2']),
float(record['similarity']),sent_id))
print(f"Loaded {len(similarity_data)} {split} examples from {similarity_filename}")
return sentiment_data, num_labels, paraphrase_data, similarity_data