-
Notifications
You must be signed in to change notification settings - Fork 5
/
run_prompt.py
708 lines (620 loc) · 34.4 KB
/
run_prompt.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
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
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
#!/usr/bin/env python
# coding=utf-8
import logging
import os
import sys
import numpy as np
from datasets import load_dataset
import random
import torch
import transformers
from transformers import (
AutoConfig,
AutoTokenizer,
HfArgumentParser,
default_data_collator,
set_seed
)
from transformers.trainer_utils import get_last_checkpoint, is_main_process
from uie.extraction import constants
from uie.extraction.record_schema import RecordSchema
from uie.extraction.extraction_metrics import get_extract_metrics
from uie.extraction.noiser.spot_asoc_noiser import SpotAsocNoiser
from uie.extraction.dataset_processer import PrefixGenerator
from uie.seq2seq.constrained_seq2seq import ConstraintSeq2SeqTrainingArguments, EMA
from uie.seq2seq.constrained_seq2seq_prompt import (
ConstraintSeq2SeqPromptTrainer,
ConstraintSeq2SeqPromptSparseTrainer
)
from uie.seq2seq.data_collator import (
PromptForMetaSeq2Seq,
PromptSSIGenerator,
DynamicSSIGenerator,
DataCollatorForMetaSeq2Seq
)
from uie.seq2seq.features import RecordFeature
from uie.seq2seq.t5_bert_tokenizer import T5BertTokenizer
from uie.seq2seq.trainer_arguments import ModelArguments, DataTrainingArguments, PromptArguments
from uie.seq2seq.models import T5Prompt
os.environ["WANDB_DISABLED"] = "true"
logger = logging.getLogger(__name__)
def get_negative_samples(l, k):
'''
prompt中包含现有的spot和asoc(record.schema中存在的), 还预留了一些空间,
剩余的这些空间来自于spot和asoc的相似词
'''
from thefuzz import fuzz
from gensim.test.utils import datapath, get_tmpfile
from gensim.models import KeyedVectors
from gensim.scripts.glove2word2vec import glove2word2vec
glove_file = datapath('/zjunlp/ghh/.cache/GloVe/glove.6B.300d.txt')
word2vec_glove_file = get_tmpfile("glove.6B.300d.word2vec.txt")
glove2word2vec(glove_file, word2vec_glove_file)
model = KeyedVectors.load_word2vec_format(word2vec_glove_file)
negative_l = []
for i in l:
try:
sim = model.most_similar(i.split()[0])
except KeyError:
continue
cnt = 10
for (x, _) in sim:
if fuzz.ratio(i, x) < 65:
if cnt > 0 and x not in l and x not in negative_l:
negative_l.append(x)
cnt -=1
return random.sample(negative_l, k)
def seed_torch(seed=42):
'''设置随机种子'''
seed = int(seed)
random.seed(seed)
os.environ['PYTHONHASHSEED'] = str(seed)
np.random.seed(seed)
torch.manual_seed(seed)
torch.cuda.manual_seed(seed)
torch.cuda.manual_seed_all(seed)
torch.backends.cudnn.deterministic = True
torch.backends.cudnn.benchmark = False
torch.backends.cudnn.enabled = False
def main():
parser = HfArgumentParser((ModelArguments, DataTrainingArguments, ConstraintSeq2SeqTrainingArguments, PromptArguments))
if len(sys.argv) == 2 and sys.argv[1].endswith(".json"):
model_args, data_args, training_args, prompt_args = parser.parse_json_file(json_file=os.path.abspath(sys.argv[1]))
else:
model_args, data_args, training_args, prompt_args = parser.parse_args_into_dataclasses()
'''检查是否继续训练'''
last_checkpoint = None
if os.path.isdir(training_args.output_dir) and training_args.do_train and not training_args.overwrite_output_dir:
last_checkpoint = get_last_checkpoint(training_args.output_dir)
if last_checkpoint is None and len(os.listdir(training_args.output_dir)) > 0:
raise ValueError(
f"Output directory ({training_args.output_dir}) already exists and is not empty. "
"Use --overwrite_output_dir to overcome."
)
elif last_checkpoint is not None:
logger.info(
f"Checkpoint detected, resuming training at {last_checkpoint}. To avoid this behavior, change "
"the `--output_dir` or add `--overwrite_output_dir` to train from scratch."
)
'''设置logging,既输出到终端,还输出到文件(logging_dir目录下)'''
os.makedirs(training_args.logging_dir, exist_ok = True)
logging.basicConfig(
format="%(asctime)s - %(levelname)s - %(name)s - %(message)s",
datefmt="%m/%d/%Y %H:%M:%S",
handlers=[
logging.StreamHandler(sys.stdout),
logging.FileHandler(
os.path.join(training_args.logging_dir, training_args.output_dir.split('/')[-1]+'.txt'),
mode = 'w', encoding = 'utf-8'
)
],
)
logger.setLevel(logging.INFO)
logger.info(f"last_checkpoint: {last_checkpoint}")
logger.info(f"Options:\n\nmodel_args:{model_args}\n\ndata_args:{data_args}\n\ntraining_args:{training_args}\n\nprompt_args:{prompt_args}")
# Log on each process the small summary:
logger.warning(
f"Process rank: {training_args.local_rank}, device: {training_args.device}, n_gpu: {training_args.n_gpu}"
+ f", distributed training: {bool(training_args.local_rank != -1)}, 16-bits training: {training_args.fp16}"
)
# Set the verbosity to info of the Transformers logger (on main process only):
if is_main_process(training_args.local_rank):
transformers.utils.logging.set_verbosity_info()
logger.info("Training/evaluation parameters %s", training_args)
# Set seed before initializing model.
set_seed(training_args.seed)
seed_torch(training_args.seed)
'''加载数据集, json格式, uie_json.py数据集加载脚本(来自于UIE)'''
if data_args.dataset_name is not None:
datasets = load_dataset(data_args.dataset_name, data_args.dataset_config_name)
else:
data_files = {}
if data_args.train_file is not None:
data_files["train"] = data_args.train_file
if data_args.validation_file is not None:
data_files["validation"] = data_args.validation_file
if data_args.test_file is not None:
data_files["test"] = data_args.test_file
datasets = load_dataset("uie_json.py", data_files=data_files)
logger.info(datasets)
'''
ACE2005_Event
{
"text": "She would be the first foreign woman to die in the wave of kidnappings in Iraq .",
"tokens": ["She", "would", "be", "the", "first", "foreign", "woman", "to", "die", "in", "the", "wave", "of", "kidnappings", "in", "Iraq", "."],
"record": "<extra_id_0> <extra_id_0> die <extra_id_5> die <extra_id_0> victim <extra_id_5> woman <extra_id_1> <extra_id_0> place <extra_id_5> Iraq <extra_id_1> <extra_id_1> <extra_id_1>",
"entity": [],
"relation": [],
"event": [
{"type": "die", "offset": [8], "text": "die", "args": [{"type": "victim", "offset": [6], "text": "woman"},
{"type": "place", "offset": [15], "text": "Iraq"}]}
],
"spot": ["die"],
"asoc": ["victim", "place"],
"spot_asoc": [
{"span": "die", "label": "die", "asoc": [["victim", "woman"], ["place", "Iraq"]]}
]
}
NYT
{
"text": "Should Turkey face eastward , toward its Muslim neighbors , or westward , toward Europe ?",
"tokens": ["Should", "Turkey", "face", "eastward", ",", "toward", "its", "Muslim", "neighbors", ",", "or", "westward", ",", "toward", "Europe", "?"],
"record": "<extra_id_0> <extra_id_0> location <extra_id_5> Turkey <extra_id_1> <extra_id_0> location <extra_id_5> Europe <extra_id_0> contains <extra_id_5> Turkey <extra_id_1> <extra_id_1> <extra_id_1>",
"entity": [
{"type": "location", "offset": [14], "text": "Europe"},
{"type": "location", "offset": [1], "text": "Turkey"}
],
"relation": [
{"type": "contains", "args": [{"type": "location", "offset": [14], "text": "Europe"},
{"type": "location", "offset": [1], "text": "Turkey"}]}
],
"event": [],
"spot": ["location"],
"asoc": ["contains"],
"spot_asoc": [
{"span": "Turkey", "label": "location", "asoc": []},
{"span": "Europe", "label": "location", "asoc": [["contains", "Turkey"]]}
]
}
Few-NERD
{
"text": "Now Multan is the name of the city in Pakistan .",
"tokens": ["Now", "Multan", "is", "the", "name", "of", "the", "city", "in", "Pakistan", "."],
"record": "<extra_id_0> <extra_id_0> geographical social political <extra_id_5> Multan <extra_id_1> <extra_id_0> geographical social political <extra_id_5> Pakistan <extra_id_1> <extra_id_1>",
"entity": [
{"type": "geographical social political", "offset": [9], "text": "Pakistan"},
{"type": "geographical social political", "offset": [1], "text": "Multan"}
],
"relation": [],
"event": [],
"spot": ["geographical social political"],
"asoc": [],
"spot_asoc": [
{"span": "Multan", "label": "geographical social political", "asoc": []},
{"span": "Pakistan", "label": "geographical social political", "asoc": []}
]
}
'''
''' 加载config'''
config = AutoConfig.from_pretrained(
model_args.model_name_or_path,
cache_dir=model_args.cache_dir,
revision=model_args.model_revision,
use_auth_token=True if model_args.use_auth_token else None,
)
config.max_length = data_args.max_target_length
'''加载tokenizer'''
if 'char' in model_args.model_name_or_path:
tokenizer = T5BertTokenizer.from_pretrained(model_args.model_name_or_path)
else:
tokenizer = AutoTokenizer.from_pretrained(
model_args.model_name_or_path,
cache_dir=model_args.cache_dir,
use_fast=model_args.use_fast_tokenizer,
revision=model_args.model_revision,
use_auth_token=True if model_args.use_auth_token else None,
)
'''需要移除的token, 在postprocess_text中有用到'''
to_remove_token_list = list()
if tokenizer.bos_token:
to_remove_token_list += [tokenizer.bos_token]
if tokenizer.eos_token:
to_remove_token_list += [tokenizer.eos_token]
if tokenizer.pad_token:
to_remove_token_list += [tokenizer.pad_token]
logger.info(f"Padding side: {tokenizer.padding_side}\n\nTokenizer Length: {len(tokenizer)}\n\ntokenizer.bos_token: {tokenizer.bos_token}, tokenizer.bos_token_id: {tokenizer.bos_token_id}\n\ntokenizer.eos_token: {tokenizer.eos_token}, tokenizer.eos_token_id: {tokenizer.eos_token_id}\n\ntokenizer.pad_token: {tokenizer.pad_token}, tokenizer.pad_token_id: {tokenizer.pad_token_id}")
'''增加特殊token, 即UIE中提到的spot, asoc等'''
if training_args.do_train:
to_add_special_token = list()
for special_token in [constants.type_start, constants.type_end, constants.text_start, constants.span_start, constants.spot_prompt, constants.asoc_prompt]:
if special_token not in tokenizer.get_vocab():
to_add_special_token += [special_token]
tokenizer.add_special_tokens({"additional_special_tokens": tokenizer.special_tokens_map_extended['additional_special_tokens'] + to_add_special_token})
'''加载模型'''
model = T5Prompt(
tokenizer,
model_args.model_name_or_path,
prompt_args,
)
logger.info(f"Tokenizer Length: {len(tokenizer)}")
ema = None
if training_args.use_ema:
ema = EMA(model, 0.99, training_args.device)
ema.register()
'''
只需要关注record_schema即可, 一般来说第一行是spot(实体、事件类型), 第二行是asoc(关系、论元角色)、第三行是spot与asco映射(一般只有事件抽取用到)
ACE2005_Event
["attack", "start position", "transfer ownership", "be born", "sentence", "die", "arrest jail", "transport", "elect", "phone write", "end organization", "sue", "acquit", "marry", "extradite"]
["destination", "victim", "seller", "plaintiff", "beneficiary", "organization", "agent", "person", "attacker", "origin", "buyer", "vehicle", "target", "entity", "instrument", "adjudicator", "artifact", "place", "defendant"]
{"attack": ["target", "instrument", "place", "victim", "agent", "attacker"], "start position": ["person", "entity", "place"], "transfer ownership": ["artifact", "place", "seller", "beneficiary", "buyer"], "be born": ["person", "place"], "sentence": ["place", "adjudicator", "defendant"], "die": ["instrument", "place", "victim", "agent", "person"], "arrest jail": ["person", "agent", "place"], "transport": ["destination", "artifact", "place", "victim", "agent", "origin", "vehicle"], "elect": ["person", "entity", "place"], "phone write": ["entity", "place"], "end organization": ["organization", "place"], "sue": ["plaintiff", "adjudicator", "place", "defendant"], "acquit": ["adjudicator", "defendant"], "marry": ["person", "place"], "extradite": ["person", "origin", "agent", "destination"]}
NYT
["location", "organization", "person"]
["place of death", "industry", "profession", "contains", "place founded", "people", "advisors", "major shareholder of", "children", "teams"]
{"location": ["place of death", "contains", "place founded", "people", "major shareholder of", "teams"], "organization": ["place of death", "industry", "contains", "place founded", "people", "advisors", "children", "teams"], "person": ["place of death", "profession", "contains", "place founded", "people", "major shareholder of", "children"]}
Few-NERD
["person other", "writtenart", "director", "protest", "geographical social political", "weapon", "scholar", "event other", "language", "film", "law", "road", "soldier", "education", "library", "astronomything", "hotel", "game", "award", "theater", "disease", "election", "currency", "ship", "livingthing", "art other", "disaster", "medical", "park", "train"]
[]
{"person other": [], "writtenart": [], "director": [], "protest": [], "geographical social political": [], "weapon": [], "scholar": [], "event other": [], "language": [], "film": [], "law": [], "road": [], "soldier": [], "education": [], "library": [], "astronomything": [], "hotel": [], "game": [], "award": [], "theater": [], "disease": [], "election": [], "currency": [], "ship": [], "livingthing": [], "art other": [], "disaster": [], "medical": [], "park": [], "train": []}
'''
if data_args.record_schema and os.path.exists(data_args.record_schema):
record_schema = RecordSchema.read_from_file(data_args.record_schema)
else:
record_schema = None
negative_sample = []
'''初始化prompt的值'''
if prompt_args.init_prompt:
logger.info(f"init_prompt? {prompt_args.init_prompt}")
'''spot_prompt、asoc_prompt是prompt中的分隔符'''
spot_prompt_id = tokenizer.encode(constants.spot_prompt, add_special_tokens = False)
asoc_prompt_id = tokenizer.encode(constants.asoc_prompt, add_special_tokens = False)
negative_file = os.path.join('/'.join(data_args.train_file.split('/')[:-1]), 'negative.pt')
if os.path.exists(negative_file):
logger.info(f"Load from {negative_file}")
ng = torch.load(negative_file)
negative_sample = ng["negative_sample"]
negative_sample_ids = ng["negative_sample_ids"]
spot_ids = ng["spot_ids"]
asoc_ids = ng["asoc_ids"]
else:
spot_ids = []
asoc_ids = []
'''选用最后一个迭代的所有spot、asoc的ids, 用于prompt的初始值(仍然有剩余空间, 即neg_len)'''
record_schema2 = RecordSchema.read_from_file(prompt_args.record2)
for spot in record_schema2.type_list:
spot_ids.append(tokenizer.encode(spot, add_special_tokens = False))
for asoc in record_schema2.role_list:
asoc_ids.append(tokenizer.encode(asoc, add_special_tokens = False))
'''get_negative_samples(选用spot、asoc的近义词)获得剩余空间的prompt'''
neg_len = prompt_args.prompt_len - len(record_schema2.type_list) - len(record_schema2.role_list) - 5
if data_args.task_name == 'relation':
negative_sample = get_negative_samples(record_schema2.role_list, neg_len)
else:
negative_sample = get_negative_samples(record_schema2.type_list, neg_len)
negative_sample_ids = []
for it in negative_sample:
negative_sample_ids.append(tokenizer.encode(it, add_special_tokens = False))
ng = {
"negative_sample": negative_sample,
"negative_sample_ids": negative_sample_ids,
"spot_ids": spot_ids,
"asoc_ids": asoc_ids
}
torch.save(ng, negative_file)
logger.info(f"Save to {negative_file}")
logger.info(f"spot_ids: {spot_ids}\n\nasoc_ids: {asoc_ids}\n\ndata_args.task_name: {data_args.task_name}\n\nnegative_sample: {negative_sample}\n\nnegative_sample_ids: {negative_sample_ids}")
'''
spot_ids: [[414, 1102], [3211], [456, 1102], [5252, 8660], [1567, 16, 12194], [2025, 540], [2025, 7915], [1576, 17782], [36, 2170], [7142], [67], [5970], [10319, 11796], [1855], [11924], [456, 1470], [942], [16, 10609, 15], [951, 1431], [7986, 1470], [15884, 14160], [3689, 3507], [1399], [22664, 75, 17], [414, 1470], [2629, 15], [7759], [3, 9, 75, 10073], [3958], [20111], [12133], [996, 10700], [260, 2029]]
asoc_ids: [[16877], [27483], [3954], [3102], [10409], [768, 23, 8717], [428, 52], [1470], [2387], [286], [9123], [8001], [7584], [19181, 76, 4370, 1016], [568], [1689], [23489, 127], [11095], [11819], [5009], [22600], [5233]]
data_args.task_name: event
negative_sample: ['lawsuits', 'charges', '.', 'daughters', 'dying', 'could', 'been', 'responsible', 'husband', 'designate', 'remarry', 'proclaimed', 'going', 'art', 'embarrass', 'next', 'last', 'began', 'being', 'if']
negative_sample_ids: [[9953, 7], [3991], [3, 5], [16649], [13677], [228], [118], [1966], [2553], [408, 342], [3, 60, 1635, 651], [3, 28901], [352], [768], [10960, 10116, 7, 7], [416], [336], [1553], [271], [3, 99]]
'''
'''初始化prompt值'''
model.init_prompt(spot_ids, asoc_ids, negative_sample_ids, spot_prompt_id, asoc_prompt_id, [tokenizer.pad_token_id])
'''默认prefix是空, 可以添加数据集来源'''
if data_args.source_prefix is not None:
if data_args.source_prefix == 'schema':
prefix = PrefixGenerator.get_schema_prefix(schema=record_schema)
elif data_args.source_prefix.startswith('meta'):
prefix = ""
else:
prefix = data_args.source_prefix
else:
prefix = ""
logger.info(f"Prefix: {prefix}\n\nPrefix Length: {len(tokenizer.tokenize(prefix))}")
if training_args.do_train:
column_names = datasets["train"].column_names
elif training_args.do_eval:
column_names = datasets["validation"].column_names
elif training_args.do_predict:
column_names = datasets["test"].column_names
else:
logger.info("There is nothing to do. Please pass `do_train`, `do_eval` and/or `do_predict`.")
return
text_column = data_args.text_column
record_column = data_args.record_column
logger.info('Using src: %s and tgt: %s' % (text_column, record_column)) # Using src: text and tgt: record
# Temporarily set max_target_length for training.
max_target_length = data_args.max_target_length
padding = "max_length" if data_args.pad_to_max_length else False
if training_args.label_smoothing_factor > 0 and not hasattr(model, "prepare_decoder_input_ids_from_labels"):
logger.error(
"label_smoothing is enabled but the `prepare_decoder_input_ids_from_labels` method is not defined for"
f"`{model.__class__.__name__}`. This will lead to loss being calculated twice and will take up more memory"
)
def preprocess_function(examples):
inputs = examples[text_column]
targets = examples[record_column]
inputs = [prefix + inp for inp in inputs]
model_inputs = tokenizer(inputs, max_length=data_args.max_source_length, padding=padding, truncation=True)
# Setup the tokenizer for targets
with tokenizer.as_target_tokenizer():
labels = tokenizer(targets, max_length=max_target_length, padding=padding, truncation=True)
# If we are padding here, replace all tokenizer.pad_token_id in the labels by -100 when we want to ignore
# padding in the loss.
if padding == "max_length" and data_args.ignore_pad_token_for_loss:
labels["input_ids"] = [
[(_label if _label != tokenizer.pad_token_id else -100) for _label in label] for label in labels["input_ids"]
]
model_inputs["labels"] = labels["input_ids"]
model_inputs['sample_prompt'] = [False] * len(model_inputs['input_ids'])
if data_args.source_prefix is not None and data_args.source_prefix.startswith('meta'):
model_inputs['spots'] = examples['spot']
model_inputs['asocs'] = examples['asoc']
model_inputs['spot_asoc'] = examples['spot_asoc']
# sample_prompt=True for Finetune and Pretrain
model_inputs['sample_prompt'] = [True] * len(model_inputs['input_ids'])
return model_inputs
def preprocess_function_eval(examples):
model_inputs = preprocess_function(examples)
# sample_prompt=False for evaluation
model_inputs['sample_prompt'] = [False] * len(model_inputs['input_ids'])
return model_inputs
def postprocess_text(x_str):
# Clean `bos` `eos` `pad` for cleaned text
for to_remove_token in to_remove_token_list:
x_str = x_str.replace(to_remove_token, '')
return x_str.strip()
logger.info("Start Data Preprocessing ...")
if training_args.do_train:
train_dataset = datasets["train"]
if data_args.max_train_samples is not None:
train_dataset = train_dataset.select(range(data_args.max_train_samples))
train_dataset = train_dataset.map(
preprocess_function,
batched=True,
num_proc=data_args.preprocessing_num_workers,
remove_columns=column_names,
load_from_cache_file=not data_args.overwrite_cache,
features=RecordFeature,
)
if training_args.do_eval:
max_target_length = data_args.val_max_target_length
eval_dataset = datasets["validation"]
if data_args.max_val_samples is not None:
eval_dataset = eval_dataset.select(range(data_args.max_val_samples))
eval_dataset = eval_dataset.map(
preprocess_function_eval,
batched=True,
num_proc=data_args.preprocessing_num_workers,
remove_columns=column_names,
load_from_cache_file=not data_args.overwrite_cache,
features=RecordFeature,
)
if training_args.do_predict:
max_target_length = data_args.val_max_target_length
test_dataset = datasets["test"]
if data_args.max_test_samples is not None:
test_dataset = test_dataset.select(range(data_args.max_test_samples))
test_dataset = test_dataset.map(
preprocess_function_eval,
batched=True,
num_proc=data_args.preprocessing_num_workers,
remove_columns=column_names,
load_from_cache_file=not data_args.overwrite_cache,
features=RecordFeature,
)
logger.info("End Data Preprocessing ...")
# Data collator
label_pad_token_id = -100 if data_args.ignore_pad_token_for_loss else tokenizer.pad_token_id
if data_args.pad_to_max_length: # If False, will pad the samples dynamically when batching to the maximum length in the batch
data_collator = default_data_collator
elif data_args.source_prefix.startswith('meta'):
if data_args.spot_noise > 0 or data_args.asoc_noise > 0:
if data_args.decoding_format == 'spotasoc':
spot_asoc_nosier = SpotAsocNoiser(
spot_noise_ratio=data_args.spot_noise,
asoc_noise_ratio=data_args.asoc_noise,
null_span=constants.null_span,
)
'''
这是负采样器, 可以看到原始数据中的spot、asoc只包含标注(entity、relation、event)中存在的schema, 这些称为正样本
其他存在于record.schema中但不存在标注中的称为负样本
负采样会从负样本中采样一部分标注中不存在的schema加入到spot、asoc
"spot": ["geographical social political"],
"spot_asoc": [
{"span": "Multan", "label": "geographical social political", "asoc": []},
{"span": "Pakistan", "label": "geographical social political", "asoc": []}
]
["person other", "writtenart", "director", "protest", "geographical social political", "weapon", "scholar", "event other", "language", "film", "law", "road", "soldier", "education", "library", "astronomything", "hotel", "game", "award", "theater", "disease", "election", "currency", "ship", "livingthing", "art other", "disaster", "medical", "park", "train"]
上面只有"geographical social political"一个schema是正样本, 其他都是负样本,
采样两个负样本"person other", "writtenart"
最终得到"spot": ["geographical social political", "person other", "writtenart"],
'''
else:
raise NotImplementedError(
f"decoding_format {data_args.decoding_format} is not implemented."
)
else:
spot_asoc_nosier = None
'''
spot_negative、asoc_negative分别是spot、asoc负采样的数量, -1表示负样本都添加, 由negative_ratio参数控制比例
'''
if data_args.task_name == 'relation':
spot_negative = data_args.meta_negative
asoc_negative = int(len(record_schema.role_list) * data_args.negative_ratio)
else:
spot_negative = int(len(record_schema.type_list) * data_args.negative_ratio)
asoc_negative = data_args.meta_negative
logger.info(f"len(record_schema.type_list): {len(record_schema.type_list)}")
logger.info(f"len(record_schema.role_list): {len(record_schema.role_list)}")
logger.info(f"data_args.negative_ratio: {data_args.negative_ratio}")
logger.info(f"data_args.meta_negative: {data_args.meta_negative}")
logger.info(f"task name: {data_args.task_name}")
logger.info(f"spot_negative: {spot_negative}")
logger.info(f"asoc_negative: {asoc_negative}")
'''
len(record_schema.type_list): 15
len(record_schema.role_list): 19
data_args.negative_ratio: 0.8
data_args.meta_negative: -1
task name: event
spot_negative: 12
asoc_negative: -1
'''
data_collator_class = PromptForMetaSeq2Seq if prompt_args.use_prompt else DataCollatorForMetaSeq2Seq
negative_sampler_class = PromptSSIGenerator if prompt_args.use_prompt else DynamicSSIGenerator
'''具体负采样会用到的数据处理器'''
data_collator = data_collator_class(
tokenizer,
model=model,
label_pad_token_id=label_pad_token_id,
pad_to_multiple_of=8 if training_args.fp16 else None,
max_length=data_args.max_source_length,
max_prefix_length=data_args.max_prefix_length,
max_target_length=data_args.max_target_length,
negative_sampler=negative_sampler_class(
tokenizer=tokenizer,
schema=record_schema,
negative_list=negative_sample, # 上面的负样本
positive_rate=data_args.meta_positive_rate,
spot_negative=spot_negative,
asoc_negative=asoc_negative,
other_ratio=data_args.other_ratio,
ordered_prompt=data_args.ordered_prompt,
task_name=data_args.task_name,
),
spot_asoc_nosier=spot_asoc_nosier,
decoding_format=data_args.decoding_format,
use_ssi=prompt_args.use_ssi,
)
'''在验证集上评估模型输出的F1指标, 通过F1选择更好的模型'''
def compute_metrics(eval_preds):
preds, labels = eval_preds
if isinstance(preds, tuple):
preds = preds[0]
decoded_preds = tokenizer.batch_decode(preds, skip_special_tokens=False, clean_up_tokenization_spaces=False)
if data_args.ignore_pad_token_for_loss:
# Replace -100 in the labels as we can't decode them.
labels = np.where(labels != -100, labels, tokenizer.pad_token_id)
decoded_labels = tokenizer.batch_decode(labels, skip_special_tokens=False, clean_up_tokenization_spaces=False)
decoded_preds = [postprocess_text(x) for x in decoded_preds]
decoded_labels = [postprocess_text(x) for x in decoded_labels]
result = get_extract_metrics(
pred_lns=decoded_preds,
tgt_lns=decoded_labels,
label_constraint=record_schema,
decoding_format=data_args.decoding_format,
)
prediction_lens = [np.count_nonzero(pred != tokenizer.pad_token_id) for pred in preds]
result["gen_len"] = np.mean(prediction_lens)
result = {k: round(v, 4) for k, v in result.items()}
return result
logger.info(f"use_ssi? {prompt_args.use_ssi}")
logger.info(f"use_sparsemax? {training_args.use_sparsemax}")
logger.info(f"use_ema? {training_args.use_ema}")
logger.info(f"ema? {ema}")
train_dict = {"ConstraintSeq2SeqPromptTrainer": ConstraintSeq2SeqPromptTrainer, "ConstraintSeq2SeqPromptSparseTrainer": ConstraintSeq2SeqPromptSparseTrainer}
s_sparsemax = "ConstraintSeq2SeqPromptTrainer"
if training_args.use_sparsemax:
s_sparsemax = "ConstraintSeq2SeqPromptSparseTrainer"
trainer = train_dict[s_sparsemax](
model=model,
args=training_args,
train_dataset=train_dataset if training_args.do_train else None,
eval_dataset=eval_dataset if training_args.do_eval else None,
tokenizer=tokenizer,
data_collator=data_collator,
compute_metrics=compute_metrics if training_args.predict_with_generate else None,
ema=ema,
decoding_type_schema=record_schema,
decoding_format=data_args.decoding_format,
source_prefix=prefix,
task=data_args.task_name,
)
# Training
checkpoint = None
if training_args.do_train:
if model_args.from_checkpoint:
if last_checkpoint is not None:
checkpoint = last_checkpoint
logger.info(f"checkpoint: {checkpoint}")
print(tokenizer.bos_token_id)
train_result = trainer.train(resume_from_checkpoint=checkpoint)
trainer.save_model() # Saves the tokenizer too for easy upload
# load_best_model_at_end=True,会在训练结束后加载最佳模型,然后save_model到output_dir
output_train_file = os.path.join(training_args.output_dir, "train_results.txt")
if trainer.is_world_process_zero():
with open(output_train_file, "w") as writer:
logger.info("***** Train results *****")
for key, value in sorted(train_result.metrics.items()):
logger.info(f" {key} = {value}")
writer.write(f"{key} = {value}\n")
# Need to save the state, since Trainer.save_model saves only the tokenizer with the model
trainer.state.save_to_json(os.path.join(training_args.output_dir, "trainer_state.json"))
# Evaluation
results = {}
if training_args.do_eval:
logger.info("*** Evaluate ***")
results = trainer.evaluate()
results = {k: round(v, 4) for k, v in results.items()} # 写到 "eval_results_seq2seq.txt"
eval_results = trainer.predict(
eval_dataset,
metric_key_prefix="eval",
max_length=data_args.val_max_target_length,
num_beams=data_args.num_beams,
) # 写到 "eval_preds_seq2seq.txt"
output_eval_file = os.path.join(training_args.output_dir, "eval_results_seq2seq.txt")
if trainer.is_world_process_zero():
with open(output_eval_file, "w") as writer:
logger.info("***** Eval results *****")
for key, value in sorted(results.items()):
logger.info(f" {key} = {value}")
writer.write(f"{key} = {value}\n")
if training_args.predict_with_generate:
eval_preds = tokenizer.batch_decode(
eval_results.predictions, skip_special_tokens=False, clean_up_tokenization_spaces=False
)
eval_preds = [postprocess_text(pred) for pred in eval_preds]
output_test_preds_file = os.path.join(training_args.output_dir, "eval_preds_seq2seq.txt")
# 只生成了preds_seq2seq.txt,没有生成preds_record.txt
with open(output_test_preds_file, "w") as writer:
writer.write("\n".join(eval_preds))
if training_args.do_predict:
logger.info("*** Test ***")
test_results = trainer.predict(
test_dataset,
metric_key_prefix="test",
max_length=data_args.val_max_target_length,
num_beams=data_args.num_beams,
)
test_metrics = test_results.metrics
test_metrics["test_loss"] = round(test_metrics["test_loss"], 4)
output_test_result_file = os.path.join(training_args.output_dir, "test_results_seq2seq.txt")
if trainer.is_world_process_zero():
with open(output_test_result_file, "w") as writer:
logger.info("***** Test results *****")
for key, value in sorted(test_metrics.items()):
logger.info(f"{key} = {value}")
writer.write(f"{key} = {value}\n")
if training_args.predict_with_generate:
test_preds = tokenizer.batch_decode(
test_results.predictions, skip_special_tokens=False, clean_up_tokenization_spaces=False
)
test_preds = [postprocess_text(pred) for pred in test_preds]
output_test_preds_file = os.path.join(training_args.output_dir, "test_preds_seq2seq.txt")
with open(output_test_preds_file, "w") as writer:
writer.write("\n".join(test_preds))
return results
if __name__ == "__main__":
main()