-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils_qa_bin.py
552 lines (493 loc) · 23.6 KB
/
utils_qa_bin.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
# coding=utf-8
# Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team.
# Copyright (c) 2018, 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.
""" Named entity recognition fine-tuning: utilities to work with CoNLL-2003 task. """
import logging
import os
import json
from utils import get_labels, write_file
logger = logging.getLogger(__name__)
class InputExample(object):
"""A single training/test example for token classification."""
def __init__(self, id, words, start_labels, end_labels, event_type=None, role=None):
"""Constructs a InputExample.
Args:
id: Unique id for the example.
words: list. The words of the sequence.
labels: (Optional) list. The labels for each word of the sequence. This should be
specified for train and dev examples, but not for test examples.
"""
self.id = id
self.words = words
self.event_type = event_type
self.role = role
self.start_labels = start_labels
self.end_labels = end_labels
class InputFeatures(object):
"""A single set of features of data."""
def __init__(self, input_ids, attention_mask, token_type_ids, start_label_ids, end_label_ids):
self.input_ids = input_ids
self.attention_mask = attention_mask
self.token_type_ids = token_type_ids
self.start_label_ids = start_label_ids
self.end_label_ids = end_label_ids
## ccks格式
def trigger_process_bin_ccks(input_file, schema_file, is_predict=False):
event_type_list = []
rows = open(schema_file, encoding='utf-8').read().splitlines()
for row in rows:
row = json.loads(row)
event_type = row['event_type']
event_type_list.append(event_type)
rows = open(input_file, encoding='utf-8').read().splitlines()
results = []
for row in rows:
if len(row)==1: print(row)
row = json.loads(row)
start_labels = [0]*len(row["content"])
end_labels = [0]*len(row["content"])
if is_predict:
results.append({"id":row["id"], "words":list(row["content"]), "start_labels":start_labels, "end_labels":end_labels, "event_type":None})
continue
for gold_event_type in event_type_list:
start_labels = [0]*len(row["content"])
end_labels = [0]*len(row["content"])
for event in row["events"]:
event_type = event["type"]
if event_type != gold_event_type: continue
for mention in event["mentions"]:
if mention["role"]=="trigger":
trigger = mention["word"]
trigger_start_index, trigger_end_index = mention["span"]
trigger_end_index -= 1
start_labels[trigger_start_index]= 1
end_labels[trigger_end_index]= 1
break
results.append({"id":row["id"], "words":list(row["content"]), "start_labels":start_labels, "end_labels":end_labels, "event_type":gold_event_type})
# write_file(results,output_file)
return results
## lic格式
def trigger_process_bin_lic(input_file, schema_file, is_predict=False):
event_type_list = []
rows = open(schema_file, encoding='utf-8').read().splitlines()
for row in rows:
row = json.loads(row)
event_type = row['event_type']
event_type_list.append(event_type)
rows = open(input_file, encoding='utf-8').read().splitlines()
results = []
for row in rows:
if len(row)==1: print(row)
row = json.loads(row)
start_labels = [0]*len(row["text"])
end_labels = [0]*len(row["text"])
if is_predict:
results.append({"id":row["id"], "words":list(row["text"]), "start_labels":start_labels, "end_labels":end_labels, "event_type":None})
continue
for gold_event_type in event_type_list:
start_labels = [0]*len(row["content"])
end_labels = [0]*len(row["content"])
for event in row["event_list"]:
trigger = event["trigger"]
event_type = event["event_type"]
if event_type != gold_event_type: continue
trigger_start_index = event["trigger_start_index"]
trigger_end_index = trigger_start_index + len(trigger) - 1
start_labels[trigger_start_index]= 1
end_labels[trigger_end_index]= 1
results.append({"id":row["id"], "words":list(row["text"]), "start_labels":start_labels, "end_labels":end_labels, "event_type":gold_event_type})
# write_file(results,output_file)
return results
## ccks格式
def role_process_bin_ccks(input_file, schema_file, is_predict=False):
role_dict = {}
rows = open(schema_file, encoding='utf-8').read().splitlines()
for row in rows:
row = json.loads(row)
event_type = row['event_type']
role_dict[event_type] = []
for role in row["role_list"]:
role_dict[event_type].append(role["role"])
rows = open(input_file, encoding='utf-8').read().splitlines()
results = []
count = 0
for row in rows:
if len(row)==1: print(row)
row = json.loads(row)
count += 1
if "id" not in row:
row["id"]=count
# arguments = []
if is_predict:
results.append({"id":row["id"], "words":list(row["content"]), "start_labels":start_labels, "end_labels":end_labels})
continue
# for gold_event_type in role_dict.keys():
# for gold_role in role_dict[gold_event_type]:
# for event in row["events"]:
# start_labels = [0]*len(row["content"])
# end_labels = [0]*len(row["content"])
# event_type = event["type"]
# if event_type != gold_event_type: continue
# for arg in event["mentions"]:
# role = arg['role']
# if role=="trigger": continue
# if role!=gold_role: continue
# argument_start_index, argument_end_index = arg["span"]
# argument_end_index -= 1
# start_labels[argument_start_index] = 1
# end_labels[argument_end_index] = 1
# results.append({"id":row["id"], "words":list(row["content"]), "event_type":gold_event_type, "role":gold_role, \
# "start_labels":start_labels, "end_labels":end_labels})
# 假设事件类型全部是对的
for event in row["events"]:
event_type = event["type"]
for gold_role in role_dict[event_type]:
start_labels = [0]*len(row["content"])
end_labels = [0]*len(row["content"])
for arg in event["mentions"]:
role = arg['role']
if role=="trigger": continue
if role!=gold_role: continue
argument_start_index, argument_end_index = arg["span"]
argument_end_index -= 1
start_labels[argument_start_index] = 1
end_labels[argument_end_index] = 1
results.append({"id":row["id"], "words":list(row["content"]), "event_type":event_type, "role":gold_role, \
"start_labels":start_labels, "end_labels":end_labels})
return results
## lic格式
def role_process_bin_lic(input_file, schema_file, is_predict=False):
role_dict = {}
rows = open(schema_file, encoding='utf-8').read().splitlines()
for row in rows:
row = json.loads(row)
event_type = row['event_type']
role_dict[event_type] = []
for role in row["role_list"]:
role_dict[event_type].append(role["role"])
rows = open(input_file, encoding='utf-8').read().splitlines()
results = []
count = 0
for row in rows:
if len(row)==1: print(row)
row = json.loads(row)
count += 1
if "id" not in row:
row["id"]=count
# arguments = []
if is_predict:
results.append({"id":row["id"], "words":list(row["text"]), "start_labels":start_labels, "end_labels":end_labels})
continue
# # 假设事件类型全部是对的
for event in row["event_list"]:
event_type = event["event_type"]
for gold_role in role_dict[event_type]:
start_labels = [0]*len(row["text"])
end_labels = [0]*len(row["text"])
for arg in event["arguments"]:
role = arg['role']
if role!=gold_role: continue
argument = arg['argument']
argument_start_index = arg["argument_start_index"]
argument_end_index = argument_start_index + len(argument) -1
start_labels[argument_start_index] = 1
end_labels[argument_end_index] = 1
results.append({"id":row["id"], "words":list(row["text"]), "event_type":event_type, "role":gold_role, \
"start_labels":start_labels, "end_labels":end_labels})
return results
## ace格式
def role_process_bin_ace(input_file, schema_file, is_predict=False):
role_dict = {}
rows = open(schema_file, encoding='utf-8').read().splitlines()
for row in rows:
row = json.loads(row)
event_type = row['event_type']
role_dict[event_type] = []
for role in row["role_list"]:
role_dict[event_type].append(role["role"])
results = []
count = 0
file = open(input_file,'r',encoding='utf-8')
rows = json.load(file)
for row in rows:
count += 1
if "id" not in row:
row["id"]=count
# arguments = []
if is_predict:
results.append({"id":row["id"], "words":list(row["words"]), "start_labels":start_labels, "end_labels":end_labels})
continue
entities = row['entities']
# # 假设事件类型全部是对的
for event in row["event-mentions"]:
event_type = event["event_type"]
for gold_role in role_dict[event_type]:
start_labels = [0]*len(row["words"])
end_labels = [0]*len(row["words"])
for i, role in enumerate(event["arguments"]):
if role!=gold_role: continue
entity = entities[i]
# argument = entity['text']
# if entity['text'] != entity['head']["text"]:
# print(entity['text'], '\n', entity['head']["text"])
# assert entity['text'] == entity['head']["text"]
argument_start_index = entity['head']["start"]
argument_end_index = entity['head']["end"] - 1
start_labels[argument_start_index] = 1
end_labels[argument_end_index] = 1
results.append({"id":row["id"], "words":list(row["words"]), "event_type":event_type, "role":gold_role, \
"start_labels":start_labels, "end_labels":end_labels})
return results
def read_examples_from_file(data_dir, schema_file, mode, task, dataset="ccks"):
file_path = os.path.join(data_dir, "{}.json".format(mode))
if dataset=="ccks":
if task=='trigger': items = trigger_process_bin_ccks(file_path, schema_file,)
if task=='role': items = role_process_bin_ccks(file_path, schema_file,)
elif dataset=="lic":
if task=='trigger': items = trigger_process_bin_lic(file_path, schema_file,)
if task=='role': items = role_process_bin_lic(file_path, schema_file,)
elif dataset=="ace":
if task=='role': items = role_process_bin_ace(file_path, schema_file,)
return [InputExample(**item) for item in items]
def get_query_templates_trigger(dataset):
query_file = "./query_template/trigger/"+dataset+".csv"
query_templates = dict()
with open(query_file, "r", encoding='utf-8') as f:
next(f)
for line in f:
if dataset == "ccks":
event_type, description = line.strip().split(",")
elif dataset == 'lic':
event_type, description = line.strip().split(",")
if event_type not in query_templates:
query_templates[event_type] = list()
# 0
query_templates[event_type].append(event_type)
# 1
query_templates[event_type].append(event_type + " "+ description)
# 2
query_templates[event_type].append(event_type + "的触发词是什么?" + "(" + description + ")" )
# 3
query_templates[event_type].append(event_type + " " + description+ " "+ description)
# query_templates[event_type][role].append(role + " in [trigger]")
# query_templates[event_type][role].append(query[:-1] + " in [trigger]?")
return query_templates
def get_query_templates_role(dataset):
"""Load query templates"""
query_file = "./query_template/role/"+dataset+".csv"
query_templates = dict()
with open(query_file, "r", encoding='utf-8') as f:
next(f)
for line in f:
if dataset == "ccks":
event_type, role, role_chinese, description, role_type = line.strip().split(",")
elif dataset == 'lic':
event_type, role = line.strip().split(",")
role_chinese, description, role_type = role, "", ""
if event_type not in query_templates:
query_templates[event_type] = dict()
if role not in query_templates[event_type]:
query_templates[event_type][role] = list()
# 0
query_templates[event_type][role].append(role_chinese)
# 1
query_templates[event_type][role].append(event_type + " "+ role_chinese)
# 2
query_templates[event_type][role].append(role_chinese+ " "+ description)
# 3
query_templates[event_type][role].append(event_type + " " + role_chinese+ " "+ description)
# 4
query_templates[event_type][role].append(event_type + "中的" + role_chinese+ " "+ description+ " 是什么?")
# 5
query_templates[event_type][role].append(["[unused2]", "[unused3]"] +list(event_type) + ["[unused4]", "[unused5]"] + list(role_chinese)+ ["[unused6]", "[unused7]"]+ list(description) + ["[unused8]", "[unused9]"])
# query_templates[event_type][role].append(role + " in [trigger]")
# query_templates[event_type][role].append(query[:-1] + " in [trigger]?")
return query_templates
def get_query_templates(dataset, task):
if task=='role': return get_query_templates_role(dataset)
elif task=="trigger": return get_query_templates_trigger(dataset)
def convert_examples_to_features(
examples,
label_list,
max_seq_length,
tokenizer,
cls_token_at_end=False,
cls_token="[CLS]",
cls_token_segment_id=1,
sep_token="[SEP]",
sep_token_extra=False,
pad_on_left=False,
pad_token=0,
pad_token_segment_id=0,
pad_token_label_id=-100,
sequence_a_segment_id=0,
sequence_b_segment_id=1,
mask_padding_with_zero=True,
nth_query=2,
dataset='ccks',
task='trigger'
):
""" 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)
"""
query_templates = get_query_templates(dataset, task)
features = []
for (ex_index, example) in enumerate(examples):
if ex_index % 10000 == 0:
logger.info("Writing example %d of %d", ex_index, len(examples))
# print(example.words, example.labels)
# print(len(example.words), len(example.labels))
tokens = []
start_label_ids = []
end_label_ids = []
token_type_ids = []
# query
if task=='role':
event_type, role = example.event_type, example.role
query = query_templates[event_type][role][nth_query]
elif task=='trigger':
event_type = example.event_type
query = query_templates[event_type][nth_query]
for i in range(len(query)):
word = query[i]
if 'unused' in word:
word_tokens = [word]
else:
word_tokens = tokenizer.tokenize(word)
if len(word_tokens)==1:
tokens.extend(word_tokens)
if len(word_tokens)>1:
print(word,">1")
tokens.extend(word_tokens[:1])
pass
if len(word_tokens)<1:
# print(word,"<1") 基本都是空格
tokens.extend(["[unused1]"])
# continue
start_label_ids.append(pad_token_label_id)
end_label_ids.append(pad_token_label_id)
# [SEP]
tokens += [sep_token]
start_label_ids += [pad_token_label_id]
end_label_ids += [pad_token_label_id]
token_type_ids = [sequence_a_segment_id] * len(tokens)
# paragraph
for word, start_label, end_label in zip(example.words, example.start_labels, example.end_labels):
word_tokens = tokenizer.tokenize(word)
if len(word_tokens)==1:
tokens.extend(word_tokens)
if len(word_tokens)>1:
print(word,">1")
tokens.extend(word_tokens[:1])
# tokens.extend(word_tokens)
# label_ids.extend([label_map[label]] + [pad_token_label_id] * (len(word_tokens) - 1))
if len(word_tokens)<1:
# print(word,"<1") 基本都是空格
tokens.extend(["[unused1]"])
# continue
start_label_ids.append(start_label)
end_label_ids.append(end_label)
token_type_ids.append(sequence_b_segment_id)
# if len(tokens)!= len(label_ids):
# print(word, word_tokens, tokens, label_ids)
# print(len(tokens),len(label_ids))
# Account for [CLS] and [SEP] with "- 2" and with "- 3" for RoBERTa.
special_tokens_count = 3 if sep_token_extra else 2
if len(tokens) > max_seq_length - special_tokens_count:
tokens = tokens[: (max_seq_length - special_tokens_count)]
start_label_ids = start_label_ids[: (max_seq_length - special_tokens_count)]
end_label_ids = end_label_ids[: (max_seq_length - special_tokens_count)]
token_type_ids = token_type_ids[: (max_seq_length - special_tokens_count)]
# [SEP]
tokens += [sep_token]
start_label_ids += [pad_token_label_id]
end_label_ids += [pad_token_label_id]
token_type_ids += [sequence_b_segment_id]
# The convention in BERT is:
# (a) For sequence pairs:
# tokens: [CLS] is this jack ##son ##ville ? [SEP] no it is not . [SEP]
# type_ids: 0 0 0 0 0 0 0 0 1 1 1 1 1 1
# (b) For single sequences:
# tokens: [CLS] the dog is hairy . [SEP]
# type_ids: 0 0 0 0 0 0 0
#
# Where "type_ids" are used to indicate whether this is the first
# sequence or the second sequence. The embedding vectors for `type=0` and
# `type=1` were learned during pre-training and are added to the wordpiece
# embedding vector (and position vector). This is not *strictly* necessary
# since the [SEP] token unambiguously separates the sequences, but it makes
# it easier for the model to learn the concept of sequences.
#
# For classification tasks, the first vector (corresponding to [CLS]) is
# used as as the "sentence vector". Note that this only makes sense because
# the entire model is fine-tuned.
if sep_token_extra:
# roberta uses an extra separator b/w pairs of sentences
tokens += [sep_token]
start_label_ids += [pad_token_label_id]
end_label_ids += [pad_token_label_id]
token_type_ids += [sequence_b_segment_id]
if cls_token_at_end:
tokens += [cls_token]
start_label_ids += [pad_token_label_id]
end_label_ids += [pad_token_label_id]
token_type_ids += [cls_token_segment_id]
else:
tokens = [cls_token] + tokens
start_label_ids = [pad_token_label_id] + start_label_ids
end_label_ids = [pad_token_label_id] + end_label_ids
token_type_ids = [cls_token_segment_id] + token_type_ids
input_ids = tokenizer.convert_tokens_to_ids(tokens)
# print(len(tokens), len(input_ids), len(label_ids))
# The mask has 1 for real tokens and 0 for padding tokens. Only real
# tokens are attended to.
attention_mask = [1 if mask_padding_with_zero else 0] * len(input_ids)
# Zero-pad up to the sequence length.
padding_length = max_seq_length - len(input_ids)
if pad_on_left:
input_ids = ([pad_token] * padding_length) + input_ids
attention_mask = ([0 if mask_padding_with_zero else 1] * padding_length) + attention_mask
token_type_ids = ([pad_token_segment_id] * padding_length) + token_type_ids
start_label_ids = ([pad_token_label_id] * padding_length) + start_label_ids
end_label_ids = ([pad_token_label_id] * padding_length) + end_label_ids
else:
input_ids += [pad_token] * padding_length
attention_mask += [0 if mask_padding_with_zero else 1] * padding_length
token_type_ids += [pad_token_segment_id] * padding_length
start_label_ids += [pad_token_label_id] * padding_length
end_label_ids += [pad_token_label_id] * padding_length
# print(len(label_ids), max_seq_length)
assert len(input_ids) == max_seq_length
assert len(attention_mask) == max_seq_length
assert len(token_type_ids) == max_seq_length
assert len(start_label_ids) == max_seq_length
assert len(end_label_ids) == max_seq_length
if ex_index < 5:
logger.info("*** Example ***")
logger.info("id: %s", example.id)
logger.info("tokens: %s", " ".join([str(x) for x in tokens]))
logger.info("input_ids: %s", " ".join([str(x) for x in input_ids]))
logger.info("attention_mask: %s", " ".join([str(x) for x in attention_mask]))
logger.info("token_type_ids: %s", " ".join([str(x) for x in token_type_ids]))
logger.info("start_label_ids: %s", " ".join([str(x) for x in start_label_ids]))
logger.info("end_label_ids: %s", " ".join([str(x) for x in end_label_ids]))
features.append(
InputFeatures(input_ids=input_ids, attention_mask=attention_mask, token_type_ids=token_type_ids, \
start_label_ids=start_label_ids, end_label_ids= end_label_ids)
)
return features