-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconstruct_tree_mapping.py
255 lines (224 loc) · 10.4 KB
/
construct_tree_mapping.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
#!/usr/bin/env python
import os
import torch
import string
import json
from tqdm import tqdm
import editdistance
from transformers import RobertaTokenizer, ElectraTokenizer
MATCH_IGNORE = {'do', 'did', 'does',
'is', 'are', 'was', 'were', 'have', 'will', 'would',
'?',}
PUNCT_WORDS = set(string.punctuation)
IGNORE_WORDS = MATCH_IGNORE | PUNCT_WORDS
MAX_LEN = 350
FILENAME = 'electra-large-discriminator'
FORCE=True
MODEL_FILE = '/home/electra-large-discriminator'
tokenizer = ElectraTokenizer.from_pretrained(MODEL_FILE, cache_dir=None)
DECISION_CLASSES = ['yes', 'no', 'more', 'irrelevant']
ENTAILMENT_CLASSES = ['yes', 'no', 'unknown']
tokenizer.add_special_tokens({'additional_special_tokens':["[RULE]"]})
def roberta_encode(doc):
encoded = tokenizer.encode(doc.strip('\n').strip(), add_special_tokens=False)
return encoded
def roberta_decode(doc):
decoded = tokenizer.decode(doc, clean_up_tokenization_spaces=False).strip('\n').strip()
return decoded
def filter_token(text):
filtered_text = []
for token_id in text:
if roberta_decode(token_id).lower() not in MATCH_IGNORE:
filtered_text.append(token_id)
return roberta_decode(filtered_text)
def get_span(context, answer):
answer = filter_token(answer)
best, best_score = None, float('inf')
stop = False
for i in range(len(context)):
if stop:
break
for j in range(i, len(context)):
chunk = filter_token(context[i:j+1])
if '\n' in chunk or '*' in chunk: # do not extract span across sentences/bullets
continue
score = editdistance.eval(answer, chunk)
if score < best_score or (score == best_score and j-i < best[1]-best[0]):
best, best_score = (i, j), score
if chunk == answer:
stop = True
break
if best:
s, e = best
while (not roberta_decode(context[s]).strip() or roberta_decode(context[s]) in PUNCT_WORDS) and s < e:
s += 1
while (not roberta_decode(context[e]).strip() or roberta_decode(context[e]) in PUNCT_WORDS) and s < e:
e -= 1
return s, e, best_score
else:
return -1, -1, best_score
def merge_edus(edus):
# v2. merge edu with its beforehand one except
# 1) this edu is not starting with 'if', 'and', 'or', 'to', 'unless', or
# 2) its beforehand edu is end with ',', '.', ':'
special_toks = ['if ', 'and ', 'or ', 'to ', 'unless ', 'but ', 'as ', 'except ']
special_puncts = ['.', ':', ',',]
spt_idx = []
for idx, edu in enumerate(edus):
if idx == 0:
continue
is_endwith = False
for special_punct in special_puncts:
if edus[idx-1].strip().endswith(special_punct):
is_endwith = True
is_startwith = False
for special_tok in special_toks:
if edu.startswith(special_tok):
is_startwith = True
if (not is_endwith) and (not is_startwith):
spt_idx.append(idx)
edus_spt = []
for idx, edu in enumerate(edus):
if idx not in spt_idx or idx == 0:
edus_spt.append(edu)
else:
edus_spt[-1] += ' ' + edu
return edus_spt
def _extract_edus(all_edus, title_tokenized, sentences_tokenized):
# return a nested tokenized edus, with (start, end) index for each edu
edus_span = [] # for all sentences
edus_tokenized = []
# add title
if all_edus['title'].strip('\n').strip() != '':
edus_tokenized.append([title_tokenized])
edus_span.append([(0,len(title_tokenized)-1)])
if all_edus['is_bullet']:
for sentence_tokenized in sentences_tokenized:
edus_tokenized.append([sentence_tokenized])
edus_span.append([(0, len(sentence_tokenized) - 1)])
else:
edus_filtered = []
for edus in all_edus['edus']:
merged_edus = merge_edus(edus)
edus_filtered.append(merged_edus)
# print('debug')
for idx_sentence in range(len(sentences_tokenized)):
edus_span_i = [] # for i-th sentence
edus_tokenized_i = []
current_edus = edus_filtered[idx_sentence]
current_sentence_tokenized = sentences_tokenized[idx_sentence]
p_start, p_end = 0, 0
for edu in current_edus:
if '\xad' in edu:
edu = edu.replace('\xad', ' ')
edu = edu.strip('\n').strip().replace(' ', '').lower()
# handle exception case train 261
if ('``' in edu) and ('\'\'' in edu):
edu = edu.replace('``', '"').replace('\'\'', '"')
for p_sent in range(p_start, len(current_sentence_tokenized)):
sent_span = roberta_decode(current_sentence_tokenized[p_start:p_sent+1]).replace(' ', '').lower()
if edu == sent_span:
p_end = p_sent
edus_span_i.append((p_start, p_end)) # [span_s,span_e]
edus_tokenized_i.append(current_sentence_tokenized[p_start:p_end + 1])
p_start = p_end + 1
break
assert len(current_edus) == len(edus_tokenized_i) == len(edus_span_i)
assert p_end == len(current_sentence_tokenized) - 1
edus_span.append(edus_span_i) # [sent_idx, ]
edus_tokenized.append(edus_tokenized_i)
assert len(edus_span) == len(edus_tokenized) == len(sentences_tokenized) + int(title_tokenized != None)
return edus_tokenized, edus_span
def extract_edus(data_raw, all_edus):
assert data_raw['snippet'] == all_edus['snippet']
output = {}
# 1. tokenize all sentences
if all_edus['title'].strip('\n').strip() != '':
title_tokenized = roberta_encode(all_edus['title'])
else:
title_tokenized = None
a = []
for item in all_edus['clauses']:
if '\u00ad' in item:
item = item.replace('\u00ad', ' ')
a.append(item)
sentences_tokenized = [roberta_encode(s) for s in a]
output['q_t'] = {k: roberta_encode(k) for k in data_raw['questions']}
output['scenario_t'] = {k: roberta_encode(k) for k in data_raw['scenarios']}
output['initial_question_t'] = {k: roberta_encode(k) for k in data_raw['initial_questions']}
output['snippet_t'] = roberta_encode(data_raw['snippet'])
output['clause_t'] = [title_tokenized] + sentences_tokenized if all_edus['title'].strip('\n').strip() != '' else sentences_tokenized
output['edu_t'], output['edu_span'] = _extract_edus(all_edus, title_tokenized, sentences_tokenized)
# 2. map question to edu
# iterate all sentences, select the one with minimum edit distance
output['q2clause'] = {}
output['clause2q'] = [[] for _ in output['clause_t']]
output['q2edu'] = {}
output['edu2q'] = [[] for _ in output['edu_t']]
for idx, sent in enumerate(output['edu_t']):
output['edu2q'][idx].extend([[] for _ in sent])
for question, question_tokenized in output['q_t'].items():
all_editdist = []
for idx, clause in enumerate(output['clause_t']):
start, end, editdist = get_span(clause, question_tokenized) # [s,e] both inclusive
all_editdist.append((idx, start, end, editdist))
# take the minimum one
clause_id, clause_start, clause_end, clause_dist = sorted(all_editdist, key=lambda x: x[-1])[0]
output['q2clause'][question] = {
'clause_id': clause_id,
'clause_start': clause_start, # [s,e] both inclusive
'clause_end': clause_end,
'clause_dist': clause_dist,
}
output['clause2q'][clause_id].append(question)
# mapping to edus
extract_span = set(range(output['q2clause'][question]['clause_start'],
output['q2clause'][question]['clause_end'] + 1))
output['q2edu'][question] = {
'clause_id': output['q2clause'][question]['clause_id'],
'edu_id': [], # (id, overlap_toks)
}
for idx, span in enumerate(output['edu_span'][output['q2clause'][question]['clause_id']]):
current_span = set(range(span[0], span[1] + 1))
if extract_span.intersection(current_span):
output['q2edu'][question]['edu_id'].append((idx, len(extract_span.intersection(current_span))))
output['edu2q'][output['q2clause'][question]['clause_id']][idx].append(question)
sorted_edu_id = sorted(output['q2edu'][question]['edu_id'], key=lambda x: x[-1], reverse=True)
top_edu_id = sorted_edu_id[0][0]
top_edu_span = output['edu_span'][output['q2clause'][question]['clause_id']][top_edu_id]
top_edu_start = max(output['q2clause'][question]['clause_start'], top_edu_span[0])
top_edu_end = min(output['q2clause'][question]['clause_end'], top_edu_span[1])
output['q2edu'][question]['top_edu_id'] = top_edu_id
output['q2edu'][question]['top_edu_start'] = top_edu_start
output['q2edu'][question]['top_edu_end'] = top_edu_end # [s,e] both inclusive
return output
if __name__ == '__main__':
with open(os.path.join('dev_question_fixed.json')) as f:
data_raw = json.load(f)
with open(os.path.join('dev_snippet_parsed.json')) as f:
edu_segment = json.load(f)
########################
# construct tree mappings
########################
ftree = os.path.join('trees_mapping_{}_dev.json'.format(FILENAME))
if not os.path.isfile(ftree) or FORCE:
tasks = {}
for ex in data_raw:
if ex['tree_id'] in tasks:
task = tasks[ex['tree_id']]
else:
task = tasks[ex['tree_id']] = {'snippet': ex['snippet'], 'questions': set(), 'scenarios': set(),
'initial_questions': set()}
for h in ex['history']:
task['questions'].add(h['follow_up_question'])
if ex['scenario'] != '':
task['scenarios'].add(ex['scenario'])
task['initial_questions'].add(ex['question'])
keys = sorted(list(tasks.keys()))
vals = [extract_edus(tasks[k], edu_segment[k]) for k in tqdm(keys)]
mapping = {k: v for k, v in zip(keys, vals)}
with open(ftree, 'wt') as f:
json.dump(mapping, f, indent=2)
else:
with open(ftree) as f:
mapping = json.load(f)