-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpre.py
More file actions
executable file
·431 lines (344 loc) · 16.2 KB
/
pre.py
File metadata and controls
executable file
·431 lines (344 loc) · 16.2 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
from collections import Counter
from itertools import zip_longest
from fairseq import options, tasks
from fairseq.data import indexed_dataset, Dictionary
from fairseq.binarizer import Binarizer
from fairseq.utils import import_user_module
from multiprocessing import Pool
from fairseq import options, tasks
from fairseq.data import indexed_dataset, dictionary
from fairseq.binarizer import Binarizer
from fairseq.utils import import_user_module
import torch
import os
import shutil
from fairseq.tokenizer import tokenize_line
import argparse
from collections import Counter
from itertools import zip_longest
import os
import shutil
from fairseq.tokenizer import tokenize_line
import glob
from fairseq.data import dictionary
from fairseq.tokenizer import tokenize_line
from multiprocessing import Pool, Manager, Process
import datetime
import modules
import time
from shutil import copyfile
from fairseq import options, tasks
from fairseq.data import indexed_dataset
from fairseq.binarizer import Binarizer
from fairseq.utils import import_user_module
from dptree.nstack_process import *
from dptree.tree_builder import *
from dptree.tree_process import *
from binarization import *
from tokenizer import *
from data.dptree_index_dataset import *
CoreNLPTreeBuilder = CoreNLPTreeBuilder
# DPTREE_KEYS = src.tasks.DPTREE_KEYS
BinarizerDataset = BinarizerDataset
ClassBinarizerDataset = ClassBinarizerDataset
# DPTreeSeparateBinarizerDataset = src.binarization.DPTreeSeparateBinarizerDataset
NstackTreeBuilder =NstackTreeBuilder
NStackDataset = NStackDataset
NstackTreeTokenizer = NstackTreeTokenizer
NSTACK_KEYS = NSTACK_KEYS
# NstackTreeSeparateBinarizerDataset = src.binarization.NstackTreeSeparateBinarizerDataset
NstackTreeMergeBinarizerDataset = NstackTreeMergeBinarizerDataset
NstackSeparateIndexedDatasetBuilder = NstackSeparateIndexedDatasetBuilder
def get_parser():
parser = argparse.ArgumentParser()
# fmt: off
parser.add_argument("-s", "--source-lang", default=None, metavar="SRC",
help="source language")
parser.add_argument("-t", "--target-lang", default=None, metavar="TARGET",
help="target language")
parser.add_argument("--trainpref", metavar="FP", default=None,
help="train file prefix")
parser.add_argument("--validpref", metavar="FP", default=None,
help="comma separated, valid file prefixes")
parser.add_argument("--testpref", metavar="FP", default=None,
help="comma separated, test file prefixes")
parser.add_argument("--destdir", metavar="DIR", default="data-bin",
help="destination dir")
parser.add_argument("--thresholdtgt", metavar="N", default=0, type=int,
help="map words appearing less than threshold times to unknown")
parser.add_argument("--thresholdsrc", metavar="N", default=0, type=int,
help="map words appearing less than threshold times to unknown")
parser.add_argument("--tgtdict", metavar="FP",
help="reuse given target dictionary")
parser.add_argument("--srcdict", metavar="FP",
help="reuse given source dictionary")
parser.add_argument("--share_dict_txt", metavar="FP",
help="reuse given source dictionary")
parser.add_argument("--nwordstgt", metavar="N", default=-1, type=int,
help="number of target words to retain")
parser.add_argument("--nwordssrc", metavar="N", default=-1, type=int,
help="number of source words to retain")
parser.add_argument("--alignfile", metavar="ALIGN", default=None,
help="an alignment file (optional)")
parser.add_argument("--output-format", metavar="FORMAT", default="binary",
choices=["binary", "raw"],
help="output format (optional)")
parser.add_argument("--joined-dictionary", action="store_true",
help="Generate joined dictionary")
parser.add_argument("--only-source", action="store_true",
help="Only process the source language")
parser.add_argument("--padding-factor", metavar="N", default=8, type=int,
help="Pad dictionary size to be multiple of N")
parser.add_argument("--workers", metavar="N", default=1, type=int,
help="number of parallel workers")
# fmt: on
return parser
def binarize(args, filename, vocab, output_prefix, lang, offset, end, append_eos=True):
ds = indexed_dataset.IndexedDatasetBuilder(
dataset_dest_file(args, output_prefix, lang, "bin")
)
def consumer(tensor):
ds.add_item(tensor)
res = Binarizer.binarize(filename, vocab, consumer, append_eos=append_eos,
offset=offset, end=end)
ds.finalize(dataset_dest_file(args, output_prefix, lang, "idx"))
return res
def binarize_with_load(args, filename, dict_path, output_prefix, lang, offset, end):
dict = dictionary.Dictionary.load(dict_path)
binarize(args, filename, dict, output_prefix, lang, offset, end)
return dataset_dest_prefix(args, output_prefix, lang)
def dataset_dest_prefix(args, output_prefix, lang):
base = f"{args.destdir}/{output_prefix}"
lang_part = (
f".{args.source_lang}-{args.target_lang}.{lang}" if lang is not None else ""
)
return f"{base}{lang_part}"
def dataset_dest_file(args, output_prefix, lang, extension):
base = dataset_dest_prefix(args, output_prefix, lang)
return f"{base}.{extension}"
# def get_offsets(input_file, num_workers):
# return Tokenizer.find_offsets(input_file, num_workers)
def merge_files(files, outpath):
ds = indexed_dataset.IndexedDatasetBuilder("{}.bin".format(outpath))
for file in files:
ds.merge_file_(file)
os.remove(indexed_dataset.data_file_path(file))
os.remove(indexed_dataset.index_file_path(file))
ds.finalize("{}.idx".format(outpath))
# TODO:-------------------- dptree2seq functions!-------------------------------------
def dataset_dest_prefix_dptree(args, output_prefix, lang, modality):
assert lang is not None
base = f"{args.destdir}/{output_prefix}"
lang_part = (
f".{args.source_lang}-{args.target_lang}.{lang}.{modality}" if lang is not None else ""
)
return f"{base}{lang_part}"
def dataset_dest_file_dptree(args, output_prefix, lang, extension, modality):
base = dataset_dest_prefix_dptree(args, output_prefix, lang, modality)
return f"{base}.{extension}"
def main(args):
import_user_module(args)
print(args)
os.makedirs(args.destdir, exist_ok=True)
target = not args.only_source
task = tasks.get_task(args.task)
def train_path(lang):
return "{}{}".format(args.trainpref, ("." + lang) if lang else "")
if args.convert_raw:
print(f'start --- args.convert_raw')
raise NotImplementedError
if args.convert_raw_only:
print(f'Finish!.')
return
remove_root = not args.no_remove_root
take_pos_tag = not args.no_take_pos_tag
take_nodes = not args.no_take_nodes
reverse_node = not args.no_reverse_node
no_collapse = args.no_collapse
# remove_root =, take_pos_tag =, take_nodes =
print(f'remove_root: {remove_root}')
print(f'take_pos_tag: {take_pos_tag}')
print(f'take_nodes: {take_nodes}')
print(f'reverse_node: {reverse_node}')
print(f'no_collapse: {no_collapse}')
"""these things are never used"""
def file_name(prefix, lang):
fname = prefix
if lang is not None:
fname += ".{lang}".format(lang=lang)
return fname
def dest_path(prefix, lang):
return os.path.join(args.destdir, file_name(prefix, lang))
def dict_path(lang):
return dest_path("dict", lang) + ".txt"
def share_dict_path():
return args.share_dict_txt
def build_shared_nstack2seq_dictionary(_src_file, _tgt_file):
d = dictionary.Dictionary()
print(f'Build dict on src_file: {_src_file}')
NstackTreeTokenizer.acquire_vocab_multithread(
_src_file, d, tokenize_line, num_workers=args.workers,
remove_root=remove_root, take_pos_tag=take_pos_tag, take_nodes=take_nodes,
no_collapse=no_collapse,
)
print(f'Build dict on tgt_file: {_tgt_file}')
dictionary.Dictionary.add_file_to_dictionary(_tgt_file, d, tokenize_line, num_workers=args.workers)
d.finalize(
threshold=args.thresholdsrc if src else args.thresholdtgt,
nwords=args.nwordssrc if src else args.nwordstgt,
padding_factor=args.padding_factor
)
print(f'Finish building vocabulary: size {len(d)}')
return d
def build_nstack_source_dictionary(_src_file):
d = dictionary.Dictionary()
print(f'Build dict on src_file: {_src_file}')
NstackTreeTokenizer.acquire_vocab_multithread(
_src_file, d, tokenize_line, num_workers=args.workers,
remove_root=remove_root, take_pos_tag=take_pos_tag, take_nodes=take_nodes,
no_collapse=no_collapse,
)
#TODO: change this to include the target option too.
d.finalize(
threshold=args.thresholdsrc,
nwords=args.nwordssrc,
padding_factor=args.padding_factor
)
print(f'Finish building src vocabulary: size {len(d)}')
return d
def build_target_dictionary(_tgt_file):
# assert src ^ tgt
print(f'Build dict on tgt: {_tgt_file}')
d = task.build_dictionary(
[_tgt_file],
workers=args.workers,
threshold=args.thresholdsrc ,
nwords=args.nwordssrc ,
padding_factor=args.padding_factor,
)
print(f'Finish building tgt vocabulary: size {len(d)}')
return d
print("the required file is ",dict_path(args.source_lang))
if not args.srcdict and os.path.exists(dict_path(args.source_lang)):
raise FileExistsError(dict_path(args.source_lang))
# if target and not args.tgtdict and os.path.exists(dict_path(args.target_lang)):
# raise FileExistsError(dict_path(args.target_lang))
print("the src dict is ",args.src_dict)
if args.joined_dictionary:
assert not args.srcdict or not args.tgtdict, \
"cannot use both --srcdict and --tgtdict with --joined-dictionary"
if args.srcdict:
src_dict = task.load_dictionary(args.srcdict)
elif args.tgtdict:
src_dict = task.load_dictionary(args.tgtdict)
else:
assert args.trainpref, "--trainpref must be set if --srcdict is not specified"
src_file = f'{args.trainpref}.{args.source_lang}'
tgt_file = f'{args.trainpref}.{args.target_lang}'
src_dict = build_shared_nstack2seq_dictionary(src_file, tgt_file)
tgt_dict = src_dict
else:
if args.srcdict:
src_dict = task.load_dictionary(args.srcdict)
else:
assert args.trainpref, "--trainpref must be set if --srcdict is not specified"
src_dict = build_nstack_source_dictionary(train_path(args.source_lang))
if target:
if args.tgtdict:
tgt_dict = task.load_dictionary(args.tgtdict)
else:
assert args.trainpref, "--trainpref must be set if --tgtdict is not specified"
tgt_dict = build_target_dictionary(train_path(args.target_lang))
else:
tgt_dict = None
# raise NotImplementedError(f'only allow args.joined_dictionary for now')
src_dict.save(dict_path(args.source_lang))
# print("the src dict is ",src_dict)
if target and tgt_dict is not None:
tgt_dict.save(dict_path(args.target_lang))
def make_binary_nstack_dataset(vocab, input_prefix, output_prefix, lang, num_workers):
print("| [{}] Dictionary: {} types".format(lang, len(vocab) - 1))
input_file = "{}{}".format(
input_prefix, ("." + lang) if lang is not None else ""
)
dss = {
modality: NstackSeparateIndexedDatasetBuilder(
dataset_dest_file_dptree(args, output_prefix, lang, 'bin', modality))
for modality in NSTACK_KEYS
}
def consumer(example):
for modality, tensor in example.items():
dss[modality].add_item(tensor)
stat = NstackTreeMergeBinarizerDataset.export_binarized_separate_dataset(
input_file, vocab, consumer, add_if_not_exist=False, num_workers=num_workers,
remove_root=remove_root, take_pos_tag=take_pos_tag, take_nodes=take_nodes, reverse_node=reverse_node,
no_collapse=no_collapse,
)
ntok = stat['ntok']
nseq = stat['nseq']
nunk = stat['nunk']
for modality, ds in dss.items():
ds.finalize(dataset_dest_file_dptree(args, output_prefix, lang, "idx", modality))
print(
"| [{}] {}: {} sents, {} tokens, {:.3}% replaced by {}".format(
lang,
input_file,
nseq,
ntok,
100 * nunk / ntok,
vocab.unk_word,
)
)
for modality, ds in dss.items():
print(f'\t{modality}')
def make_dptree_dataset(vocab, input_prefix, output_prefix, lang, num_workers=1):
if args.output_format != "binary":
raise NotImplementedError(f'output format {args.output_format} not impl')
make_binary_nstack_dataset(vocab, input_prefix, output_prefix, lang, num_workers)
def make_all_src(lang, vocab):
if args.trainpref:
# print(f'!!!! Warning..... Not during en-fr source because already done!.....')
make_dptree_dataset(vocab, args.trainpref, "train", lang, num_workers=args.workers)
if args.validpref:
for k, validpref in enumerate(args.validpref.split(",")):
outprefix = "valid{}".format(k) if k > 0 else "valid"
make_dptree_dataset(vocab, validpref, outprefix, lang, num_workers=args.eval_workers)
if args.testpref:
for k, testpref in enumerate(args.testpref.split(",")):
outprefix = "test{}".format(k) if k > 0 else "test"
make_dptree_dataset(vocab, testpref, outprefix, lang, num_workers=args.eval_workers)
make_all_src(args.source_lang, src_dict)
print("| Wrote preprocessed data to {}".format(args.destdir))
if args.alignfile:
raise NotImplementedError('alignfile Not impl at the moment')
def convert_raw(prefix, src_lang, tgt_lang, bpe_tree=False, bpe_code=None, unify_tree=False, workers=1,
ignore_if_exist=True):
raise NotImplementedError
def truncate(x, y, s, e):
with open(x, 'r') as fx:
sents = fx.read().strip().split("\n")[s:e]
with open(y, 'w') as fy:
for s in sents:
fy.write(f'{s}\n')
def cli_main():
parser = options.get_preprocessing_parser()
group = parser.add_argument_group('Preprocessing')
group.add_argument("--convert_raw", action="store_true", help="convert_raw")
group.add_argument("--convert_raw_only", action="store_true", help="convert_raw")
group.add_argument("--convert_with_bpe", action="store_true", help="convert_with_bpe")
# group.add_argument("--bpe_code", action="store_true", help="convert_with_bpe")
group.add_argument('--bpe_code', metavar='FILE', help='bpe_code')
group.add_argument("--no_remove_root", action="store_true", help="no_remove_root")
group.add_argument("--no_take_pos_tag", action="store_true", help="no_take_pos_tag")
group.add_argument("--no_take_nodes", action="store_true", help="no_take_nodes")
group.add_argument("--no_reverse_node", action="store_true", help="no_reverse_node")
group.add_argument("--no_collapse", action="store_true", help="no_collapse")
group.add_argument("--raw_workers", metavar="N", default=0, type=int, help="number of parallel workers")
group.add_argument("--eval_workers", metavar="N", default=0, type=int, help="number of parallel workers")
args = parser.parse_args()
args.srcdict='data/conala/src.vocab'
args.source_lang=''
args.output_format="binary"
main(args)
if __name__ == "__main__":
cli_main()