-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
330 lines (268 loc) · 13.2 KB
/
Copy pathmain.py
File metadata and controls
330 lines (268 loc) · 13.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
import warnings
warnings.filterwarnings('ignore')
from src.relation_models.relation_models import *
from src.wiki_referencer.wiki_reference import WikiReferencer
from src.article_processor.article_processor import ArticleProcessor
from src.utils import plot_trees
from itertools import combinations
import random
import re
from spacy.tokens import Span
import dateparser
import spacy
nlp = spacy.load('en')
model = LogisticRelationModel()
model.persist('logistic_cv')
wiki_referencer = WikiReferencer()
def expand_person_entities(doc):
new_ents = []
for ent in doc.ents:
# Only check for title if it's a person and not the first token
if ent.label_ == "PERSON":
if ent.start != 0:
# if person preceded by title, include title in entity
prev_token = doc[ent.start - 1]
if prev_token.text in ("Dr", "Dr.", "Mr", "Mr.", "Ms", "Ms."):
new_ent = Span(doc, ent.start - 1, ent.end, label=ent.label)
new_ents.append(new_ent)
else:
# if entity can be parsed as a date, it's not a person
if dateparser.parse(ent.text) is None:
new_ents.append(ent)
else:
new_ents.append(ent)
doc.ents = new_ents
return doc
# Add the component after the named entity recognizer
# nlp.remove_pipe('expand_person_entities')
nlp.add_pipe(expand_person_entities, after='ner')
def replace_text(text):
doc = nlp(text)
person_names = [ent.text for ent in doc.ents if ent.label_=='PERSON']
new_doc = text
clean_names = []
for name in list(set(person_names)):
name = re.sub(r'[^a-zA-Z ]+', '', name)
clean_names.append(name)
new_doc = re.sub(str(name), f'@{name}@', new_doc)
return new_doc, clean_names
def predict_relations_text(text):
tagged_article, person_names = replace_text(text)
entities_combinations = list(combinations(person_names, 2))
probs = [model.predict_relation_from_ids(article_id=tagged_article, entity_a_id=ft[0], entity_b_id=ft[1], wiki_fit=False) for ft in entities_combinations]
entities_probs = [(entities_combinations[i], probs[i]) for i in range(len(entities_combinations))]
return entities_probs
def predict_relations_article(article_id, wiki_referencer, model):
article_entities = wiki_referencer.get_article_entities(article_id)
entities_combinations = list(combinations(article_entities, 2))
entities_probs = [model.predict_relation_from_ids(article_id=article_id, entity_a_id=e_a, entity_b_id=e_b) for e_a, e_b in entities_combinations]
entities_probs = [(entities_combinations[i], entities_probs[i]) for i in range(len(entities_combinations))]
return entities_probs
class ArticleTree:
def __init__(self, article_id, wiki_referencer, entities_probs, article_entities=None):
self.article_id = article_id
self.wiki_referencer = wiki_referencer
self.model = model
if article_entities is None:
self.article_entities = self.wiki_referencer.get_article_entities(self.article_id)
else:
self.article_entities = article_entities
self.family_tree = self.initialize_tree(self.article_id)
self.entities_probs = entities_probs
self.entities_probs_dict = {comb[0]: comb[1] for comb in self.entities_probs}
self.relations = ['P26', 'P25', 'P40', 'P22', 'P3373']
self.relation_maps = {'P22': self.add_father,
'P26': self.add_spouse,
'P25': self.add_mother, 'P3373': self.add_sibling,
'P40': self.add_child}
self.most_prob = self.initialize_most_prob()
def initialize_most_prob(self):
max_class = [(p[0], p[1], p[1].max()) for p in self.entities_probs]
max_prob = [(c[0], c[2], c[1].prob(c[2])) for c in max_class]
return sorted(max_prob, key=lambda x: x[2], reverse=True)
def get_most_prob(self, comb):
only_one_possible = {'P26', 'P22', '25'}
possible_relations = self.get_possible_relations(comb[0])
comb_prob = self.entities_probs_dict[comb]
possible_relations_prob = [(relation, comb_prob.prob(relation)) for relation in possible_relations]
return max(possible_relations_prob, key=lambda x: x[1])
def get_possible_relations(self, entity):
entity_relations = set(self.family_tree[entity].values())
once_per_entity = {'P25', 'P22', 'P26'}
many_per_entity = {'P40', 'P3373'}
possible_relations = once_per_entity - entity_relations
possible_relations.update(many_per_entity)
return list(possible_relations)
def updated_probs(self, combs):
try:
return max([(comb, self.get_most_prob(comb)) for comb in combs], key=lambda x: x[1][1])
except:
return None
def initialize_tree(self, article_id):
family_tree = {}
for entity in self.article_entities:
article_entities_c = self.article_entities.copy()
article_entities_c.remove(entity)
entity_tree = {entity: {ar_ent: None for ar_ent in article_entities_c}}
family_tree.update(entity_tree)
return family_tree
def add_father(self, comb):
# comb[0] and comb[1] can't have relation.
# comb[0] can't have father.
if 'P22' not in set(self.family_tree[comb[0]].values()):
if self.family_tree[comb[0]][comb[1]] is None and self.family_tree[comb[1]][comb[0]] is None:
self.family_tree[comb[0]][comb[1]] = 'P22'
self.family_tree[comb[1]][comb[0]] = 'P40'
return True
return False
def add_mother(self, comb):
# comb[0] and comb[1] can't have relation.
# comb[0] can't have father.
if 'P25' not in set(self.family_tree[comb[0]].values()):
if self.family_tree[comb[0]][comb[1]] is None and self.family_tree[comb[1]][comb[0]] is None:
self.family_tree[comb[0]][comb[1]] = 'P25'
self.family_tree[comb[1]][comb[0]] = 'P40'
return True
return False
def add_spouse(self, comb):
# comb[0] and comb[1] can't have relation.
# comb[0] can't have father.
if 'P26' not in set(self.family_tree[comb[0]].values()):
if self.family_tree[comb[0]][comb[1]] is None and self.family_tree[comb[1]][comb[0]] is None:
self.family_tree[comb[0]][comb[1]] = 'P26'
self.family_tree[comb[1]][comb[0]] = 'P26'
return True
return False
def add_sibling(self, comb):
if self.family_tree[comb[0]][comb[1]] is None and self.family_tree[comb[1]][comb[0]] is None:
self.family_tree[comb[0]][comb[1]] = 'P3373'
self.family_tree[comb[1]][comb[0]] = 'P3373'
return True
return False
def add_child(self, comb):
if 'has_parent' not in set(self.family_tree[comb[1]].keys()):
if self.family_tree[comb[0]][comb[1]] is None and self.family_tree[comb[1]][comb[0]] is None:
self.family_tree[comb[0]][comb[1]] = 'P40'
self.family_tree[comb[1]]['has_parent'] = True
return True
return False
def add_relation(self, comb, relation):
return self.relation_maps[relation](comb)
def get_relations(self, threshold_probability):
combos = list(self.entities_probs_dict.keys())
added_relations = []
most_prob_comb = self.most_prob[0]
while len(combos) > 0:
relation, relation_prob = self.get_most_prob(most_prob_comb[0])
if relation_prob > threshold_probability:
if self.add_relation(most_prob_comb[0], relation):
print('added_relation')
added_relations.append((most_prob_comb[0], relation))
else:
print('Relationship did not meet threshold. ')
# get rid of relation possibility, rather than comb
combos.remove(most_prob_comb[0])
most_prob_comb = self.updated_probs(combos)
#print(added_relations)
return added_relations
def get_relations_name(self, threshold_probability=0.3):
r_map = {'P22': 'father', 'P26': 'spouse', 'P25': 'mother', 'P3373': 'sibling', 'P40': 'child'}
relations = self.get_relations(threshold_probability)
try:
relations_names = [(self.wiki_referencer.get_entity_name(ents[0]),
self.wiki_referencer.get_entity_name(ents[1]), r_map[r]) for ents, r in relations]
return relations_names
except:
return [(r[0][0].replace('@', ''), r[0][1].replace('@', ''), r_map[r[1]]) for r in relations]
def get_family_trees(article_id, wiki_referencer, model):
article_entity_probs = predict_relations_article(article_id, wiki_referencer, model)
article_tree = ArticleTree(article_id, wiki_referencer, article_entity_probs)
return article_tree
def random_article_id():
test_articles = model.test_labels['article_id'].tolist()
random_article_id = random.sample(test_articles, 1)[0]
return random_article_id
def random_article():
test_articles = model.test_labels['article_id'].tolist()
random_article_id = random.sample(test_articles, 1)[0]
print(wiki_referencer.get_article_text(random_article_id))
article_tree = get_family_trees(random_article_id, wiki_referencer, model)
return article_tree
def convert_to_gedcom(relationships):
""" Converts a list of relationship tuples to GEDCOM format
"""
ret_string = "0 HEAD\n1 GEDC\n1 CHAR ASCII\n"
i = 0
individuals = []
gedcom_relationships = []
for rel in relationships:
if rel[0] not in individuals: # adding all of the individuals with their names
individuals.append(rel[0])
gedcom_relationships.append(("@I"+str(i)+"@",rel[0],rel[2]))
i += 1
if rel[1] not in individuals:
if rel[2] == "father" or rel[2] == "mother":
individuals.append(rel[1])
gedcom_relationships.append(("@I"+str(i)+"@",rel[1],"child"))
i += 1
for gedcom_rel in gedcom_relationships: # add all of the individual relationships to return, assume same family
ret_string += ("0 "+gedcom_rel[0]+" INDI\n")
ret_string += ("1 NAME "+gedcom_rel[1]+"\n")
if gedcom_rel[2] == "child": # add the family code for child
ret_string += ("1 FAMC @F0@\n")
else: # add the family code for spouse
ret_string += ("1 FAMS @F0@\n")
ret_string += "0 @F0@ FAM\n" # adding the family code
for gedcom_rel in gedcom_relationships:
if gedcom_rel[2] == "child":
ret_string += "1 CHIL"+gedcom_rel[0]+"\n"
elif gedcom_rel[2] == "father":
ret_string += "1 HUSB"+gedcom_rel[0]+"\n"
else: # mother
ret_string += "1 WIFE"+gedcom_rel[0]+"\n"
ret_string += "0 TRLR\n"
return ret_string
def main():
print("Write '--exit' to escape program. Press enter and type '--genealogy' after pasting your article or type '--generate' to use a random article. ")
n = input("Copy-paste your essay here: ")
while True:
current_input = input()
n += current_input
if current_input.lower() == '--exit':
break
elif "--genealogy" in current_input:
print('\nGenerate random example. ')
n = re.sub(r'--genealogy', '', n)
article_entity_probs = predict_relations_text(n)
article_entities = list(set([x[0][0] for x in article_entity_probs] + [x[0][1] for x in article_entity_probs]))
print('entities: ', article_entities)
if len(article_entities) < 1:
print('Could not find any entities. Could you provide a larger text? ')
else:
article_tree = ArticleTree(article_id=None,
wiki_referencer=wiki_referencer,
entities_probs=article_entity_probs,
article_entities=article_entities)
relations = article_tree.get_relations_name(threshold_probability=0.52)
print('relations: ', relations)
plot_trees(relations)
gedcom = convert_to_gedcom(relations)
print()
print(gedcom)
with open(PROJECT_ROOT + '/gedcom.ged', 'w') as a:
a.write(gedcom)
print('Saved gedcom file to: ', PROJECT_ROOT + '/gedcom.ged')
n = ''
elif "--generate" in current_input:
random_article_tree = random_article()
relations = random_article_tree.get_relations_name(threshold_probability=0.52)
plot_trees(relations)
gedcom = convert_to_gedcom(relations)
print()
print(gedcom)
with open(PROJECT_ROOT + '/gedcom.ged', 'w') as a:
a.write(gedcom)
print('Saved gedcom file to: ', PROJECT_ROOT + '/gedcom.ged')
n = ''
if __name__ == '__main__':
main()