-
Notifications
You must be signed in to change notification settings - Fork 325
/
corpora.py
executable file
·529 lines (449 loc) · 19 KB
/
corpora.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
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
# Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""several datasets with preset arguments"""
from .datasets import json_dataset, csv_dataset
import os
import json
import random
import tqdm
from multiprocessing import Queue, Process
from queue import Empty
from collections import defaultdict
from torch.utils import data
from .lazy_loader import LazyLoader
from utils import print_rank_0
NUM_PROCESSES = 100
def punctuation_standardization(string: str):
punctuation_dict = {"\u201c": "\"", "\u201d": "\"", "\u2019": "'", "\u2018": "'", "\u2013": "-"}
for key, value in punctuation_dict.items():
string = string.replace(key, value)
return string
class KeyDataset(data.Dataset):
def __init__(self, text_loader, mask_loader, **kwargs):
self.texts = text_loader
self.masks = mask_loader
self.is_lazy = False
if isinstance(self.texts, LazyLoader) and isinstance(self.masks, LazyLoader):
self.text_lens = self.texts.lens
self.is_lazy = True
def get_text_len(self, idx):
return self.text_lens[idx]
def __getitem__(self, index):
text = self.texts[index]
mask_length = self.masks[index]
mask = []
for i, length in enumerate(mask_length):
if i % 2 == 0:
mask += [0] * length
else:
mask += [1] * length
assert len(text) == len(mask)
return {"tokens": text, "loss_masks": mask}
def __len__(self):
return len(self.texts)
class PromptDataset(data.Dataset):
def __init__(self, prompt_loader, text_loader, tokenizer=None, to_tokenize=False, **kwargs):
self.prompts = prompt_loader
self.texts = text_loader
self.tokenizer = tokenizer
self.to_tokenize = to_tokenize
if isinstance(self.prompts, LazyLoader) and isinstance(self.texts, LazyLoader):
self.prompt_lens = self.prompts.lens
self.text_lens = self.texts.lens
self.is_lazy = True
def get_text_len(self, idx):
return self.prompt_lens[idx] + self.text_lens[idx]
def __getitem__(self, index):
prompt = self.prompts[index]
text = self.texts[index]
if self.to_tokenize:
prompt = self.tokenizer.EncodeAsIds(prompt).tokenization
text = self.tokenizer.EncodeAsIds(text).tokenization
return {"tokens": prompt + text, "loss_masks": [0] * len(prompt) + [1] * len(text)}
def __len__(self):
return len(self.prompts)
class DataReader:
PATH = None
assert_str = None
reserve_punct = False
split_row = True
TASK_QUEUE_LIMIT = 10000000
DONE_QUEUE_LIMIT = 10000000
def tokenize_worker(self, input, output, info, tokenizer, tokenize):
raise NotImplementedError
def print_info(self, info):
pass
def __init__(self, writers, tokenizer=None, tokenize=False, **kwargs):
assert os.path.exists(self.PATH), self.assert_str
print_rank_0(f"Creating dataset from {self.PATH}")
self.tokenizer = tokenizer
self.tokenize = tokenize
self.writers = writers
def process(self):
if os.path.isdir(self.PATH):
paths = [os.path.join(top, name) for top, _, names in os.walk(self.PATH) for name in names]
# paths = [entry.path for entry in os.scandir(self.PATH) if
# not entry.is_dir() and not entry.name.endswith("bz2")]
else:
paths = [self.PATH]
task_queue, done_queue, info_queue = Queue(maxsize=self.TASK_QUEUE_LIMIT), Queue(
maxsize=self.DONE_QUEUE_LIMIT), Queue()
processes = []
for i in range(NUM_PROCESSES):
process = Process(target=self.tokenize_worker,
args=(task_queue, done_queue, info_queue, self.tokenizer, self.tokenize))
process.start()
processes.append(process)
def read_input_to_queue():
for path in paths:
print_rank_0(f"Start reading {path}")
with open(path) as file:
if self.split_row:
for row in file:
task_queue.put(row)
else:
items = json.load(file)
for item in items["RECORDS"]:
task_queue.put(item)
print_rank_0("Read input complete")
for i in range(len(processes)):
task_queue.put('STOP')
process = Process(target=read_input_to_queue)
process.start()
count = len(processes)
progress_bar = tqdm.tqdm()
while True:
data = done_queue.get()
if data == 'COMPLETE':
count -= 1
if count == 0:
break
else:
self.write_result(data, self.writers)
progress_bar.update()
progress_bar.close()
self.print_info(info_queue)
@staticmethod
def write_result(data, writers):
raise NotImplementedError
@staticmethod
def get_token_count(contents):
return sum(map(len, contents))
@classmethod
def process_sample(cls, text, tokenizer, tokenize):
if isinstance(text, str) and tokenize:
if not cls.reserve_punct:
text = punctuation_standardization(text)
text = tokenizer.EncodeAsIds(text).tokenization if text else []
return text
@staticmethod
def trim_field(content, max_length):
if len(content) > max_length:
content = content[:max_length]
content += "......"
return content
def process_line(self, data, tokenizer, tokenize):
raise NotImplementedError
class PromptReader(DataReader):
is_json = True
def tokenize_worker(self, input, output, info, tokenizer, tokenize):
for row in iter(input.get, 'STOP'):
if row:
if self.is_json:
row = row.rstrip()
row = json.loads(row)
prompts, texts = self.process_line(row, tokenizer, tokenize)
for prompt, text in zip(prompts, texts):
output.put((prompt, text))
output.put("COMPLETE")
@staticmethod
def write_result(data, writers):
prompt, text = data
writers['prompt'].write(prompt)
writers['text'].write(text)
class KeyReader(DataReader):
PATH = '/root/data/wikipedia/wiki-key.txt'
assert_str = "make sure to set PATH for wikipedia data_utils/corpora.py"
def process_line(self, data, tokenizer, tokenize):
keys, contents = data['key'], data["content"]
assert len(keys) == len(contents)
for i in range(1, len(keys)):
keys[i] = " " + keys[i]
contents = [" " + content for content in contents]
keys = [tokenizer.EncodeAsIds(key).tokenization for key in keys]
contents = [tokenizer.EncodeAsIds(content).tokenization for content in contents]
summary = sum(keys, [])
summary_prefix = self.process_sample("Summary: ", tokenizer, tokenize)
summary_mask = [len(summary_prefix), len(summary)]
summary = summary_prefix + summary
text, text_mask = [], []
for key, content in zip(keys, contents):
content = content + [tokenizer.get_command('eop').Id]
text += key
text += content
text_mask.append(len(key))
text_mask.append(len(content))
return (summary, summary_mask), (text, text_mask)
def tokenize_worker(self, input, output, info, tokenizer, tokenize):
for row in iter(input.get, 'STOP'):
data = json.loads(row)
summary, content = self.process_line(data, tokenizer, tokenize)
output.put((summary, content))
output.put("COMPLETE")
@staticmethod
def write_result(data, writers):
summary, content = data
writers['text'].write(summary[0])
writers['mask'].write(summary[1])
writers['text'].write(content[0])
writers['mask'].write(content[1])
class zhihu(PromptReader):
PATH = "/dataset/fd5061f6/data/tokenize_data/zhihu.lazy"
reserve_punct = True
assert_str = "make sure to set PATH for zhihu data_utils/corpora.py"
qtitle_prefix = "问题:"
qcontent_prefix = "问题描述:"
user_prefix = "回答用户:"
answer_prefix = " 回答:"
# qtitle_prefix = []
# qcontent_prefix = []
# user_prefix = []
# answer_prefix = []
def process_line(self, data, tokenizer, tokenize):
prompts, texts = [], []
ans_length = len(data.get("ans-content", ""))
ans_up = data.get("ans-up-num", "")
ans_up = int(ans_up) if ans_up else 0
if ans_length > 100 or ans_up > 1000:
qtitle = data["q_title"]
qcontent = data["q-content"]
if qcontent is None:
qcontent = ""
qcontent = self.trim_field(qcontent, max_length=100)
user = data.get("user-signature", "")
prompt = self.qtitle_prefix + qtitle + self.qcontent_prefix + qcontent + self.user_prefix + user + self.answer_prefix
text = data["ans-content"]
prompt, text = self.process_sample(prompt, tokenizer, tokenize), self.process_sample(text, tokenizer,
tokenize)
prompts.append(prompt)
texts.append(text)
# prompt = data["q_title"] + data["q-content"] + data["user-signature"]
# text = data["ans-content"]
# prompts.append(prompt)
# texts.append(text)
return prompts, texts
class zhidao(PromptReader):
PATH = "/root/data/zhidao/zhidao"
reserve_punct = True
assert_str = "make sure to set PATH for zhidao data_utils/corpora.py"
qtitle_prefix = "问题:"
qcontent_prefix = "问题描述:"
answer_prefix = "回答:"
def process_line(self, data, tokenizer, tokenize):
if "title" not in data:
return [], []
prompts, texts = [], []
qtitle = data["title"]
qcontent = data.get("content", "")
qcontent = self.trim_field(qcontent, max_length=100)
prompt = self.qtitle_prefix + qtitle + self.qcontent_prefix + qcontent + self.answer_prefix
prompt = self.process_sample(prompt, tokenizer, tokenize)
if "best_answer" in data:
text = data["best_answer"]["content"]
if len(text) > 10:
text = self.process_sample(text, tokenizer, tokenize)
prompts.append(prompt)
texts.append(text)
for answer in data.get("other_answers", []):
text = answer["content"]
if len(text) > 100:
text = self.process_sample(text, tokenizer, tokenize)
prompts.append(prompt)
texts.append(text)
return prompts, texts
class baike(PromptReader):
PATH = "/dataset/fd5061f6/data/tokenize_data/baike.lazy"
reserve_punct = True
assert_str = "make sure to set PATH for baike data_utils/corpora.py"
def process_line(self, data, tokenizer, tokenize):
prompts, texts = [], []
text = data.get("title", "") + data.get("abstract", "") + data.get("content", "")
if text:
p, t = self.process_sample("", tokenizer, tokenize), self.process_sample(text, tokenizer, tokenize)
prompts.append(p)
texts.append(t)
return prompts, texts
class wikipedia(PromptReader):
"""
dataset for wikipedia with arguments configured for convenience
command line usage: `--train-data wikipedia`
"""
# PATH = '/dataset/data/wiki.txt'
PATH = '/root/data/bert_data/wiki.txt'
assert_str = "make sure to set PATH for wikipedia data_utils/corpora.py"
def process_line(self, data, tokenizer, tokenize):
text = data['text']
prompt, text = self.process_sample("", tokenizer, tokenize), self.process_sample(text, tokenizer, tokenize)
return [prompt], [text]
class TestDataset(PromptReader):
PATH = '/root/data/test.json'
assert_str = "make sure to set PATH for wikipedia data_utils/corpora.py"
def process_line(self, data, tokenizer, tokenize):
prompt, text = data['prompt'], data['text']
prompt, text = self.process_sample(prompt, tokenizer, tokenize), self.process_sample(text, tokenizer, tokenize)
return [prompt], [text]
class OpenWebText(PromptReader):
PATH = '/dataset/fd5061f6/english_data/openwebtext2'
assert_str = "make sure to set PATH for openwebtext data_utils/corpora.py"
def __init__(self, *args, **kwargs):
import fasttext
super().__init__(*args, **kwargs)
self.model = fasttext.load_model('/dataset/fd5061f6/english_data/lid.176.bin')
print_rank_0("Load language detection model")
def process_line(self, data, tokenizer, tokenize):
text = data['text']
if len(text) > 100:
lang = self.model.predict(text.replace('\n', ''))[0][0]
if lang == '__label__en':
prompt, text = self.process_sample("", tokenizer, tokenize), self.process_sample(text, tokenizer,
tokenize)
return [prompt], [text]
return [], []
class CCNews(PromptReader):
PATH = "/mnt/cc_news.json"
assert_str = "make sure to set PATH for cc-news data_utils/corpora.py"
def process_line(self, data, tokenizer, tokenize):
text = ""
title = data.get("title", None)
description = data.get("description", None)
maintext = data.get("maintext", None)
if title:
text += title.strip() + " "
if description and (not maintext or not maintext.startswith(description)):
text += description.strip() + " "
if maintext:
text += maintext
if len(text) > 100:
prompt, text = self.process_sample("", tokenizer, tokenize), self.process_sample(text, tokenizer, tokenize)
return [prompt], [text]
else:
return [], []
class BertData(PromptReader):
is_json = False
PATH = '/dataset/fd5061f6/english_data/wikibook'
def process_line(self, data, tokenizer, tokenize):
if data:
prompt, text = "", data
prompt, text = self.process_sample(prompt, tokenizer, tokenize), self.process_sample(text, tokenizer,
tokenize)
return [prompt], [text]
else:
return [], []
class Pile(PromptReader):
is_json = True
PATH = "/mnt/train"
filtered_sources = ["Github", "StackExchange", "DM Mathematics", "Ubuntu IRC", "EuroParl", "YoutubeSubtitles",
"Enron Emails"]
downsample_sources = {"PubMed Central": 0.3, "ArXiv": 0.3, "FreeLaw": 0.3}
def print_info(self, info):
total_dict = defaultdict(int)
while True:
try:
source_dict = info.get(block=False)
for source, length in source_dict.items():
total_dict[source] += length
except Empty:
break
print_rank_0(total_dict)
def tokenize_worker(self, input, output, info, tokenizer, tokenize):
source_dict = defaultdict(int)
for row in iter(input.get, 'STOP'):
row = row.rstrip()
if row:
if self.is_json:
row = json.loads(row)
prompts, texts, source = self.process_line(row, tokenizer, tokenize)
length = 0
for prompt, text in zip(prompts, texts):
length += len(text)
output.put((prompt, text))
if source:
source_dict[source] += length
output.put("COMPLETE")
info.put(source_dict)
def process_line(self, data, tokenizer, tokenize):
source = data["meta"].get("pile_set_name", None)
text = data.get("text", None)
if source and text:
if source in self.filtered_sources:
return [], [], None
elif source in self.downsample_sources and random.random() > self.downsample_sources[source]:
return [], [], None
else:
prompt, text = self.process_sample("", tokenizer, tokenize), self.process_sample(text, tokenizer,
tokenize)
return [prompt], [text], source
else:
return [], [], None
class Stories(PromptReader):
is_json = True
PATH = "/dataset/fd5061f6/english_data/stories_31G.jsonl"
def process_line(self, data, tokenizer, tokenize):
text = data.get("text", None)
if text:
prompt, text = self.process_sample("", tokenizer, tokenize), self.process_sample(text, tokenizer,
tokenize)
return [prompt], [text]
else:
return [], []
class BertBaseData(BertData):
PATH = '/root/data/formatted_one_article_per_line'
class BertLargeData(BertData):
PATH = '/dataset/c07bd62b/cognitive/zhengxiao/formatted_one_article_per_line_large'
class WuDaoCorpus(PromptReader):
PATH = "/dataset/fd5061f6/chinese_data/WuDao"
is_json = False
reserve_punct = True
split_row = False
def process_line(self, item, tokenizer, tokenize):
prompts, texts = [], []
text = ""
title = item.get("title", None)
content = item.get("content", None)
if title:
text += title.strip() + " "
if content:
text += content
if len(text) > 100:
prompt, text = self.process_sample("", tokenizer, tokenize), self.process_sample(text, tokenizer,
tokenize)
prompts.append(prompt)
texts.append(text)
return prompts, texts
NAMED_CORPORA = {
'wikipedia': wikipedia,
'wikipedia-key': KeyReader,
'openwebtext': OpenWebText,
"zhihu": zhihu,
"zhidao": zhidao,
"baike": baike,
"test": TestDataset,
'wikibook': BertData,
"bert-base": BertBaseData,
"bert-large": BertLargeData,
'cc-news': CCNews,
'pile': Pile,
'stories': Stories,
'wudao': WuDaoCorpus
}