spaCy/examples/pipeline/wiki_entity_linking/train_el.py

476 lines
20 KiB
Python
Raw Normal View History

# coding: utf-8
from __future__ import unicode_literals
import os
import datetime
from os import listdir
import numpy as np
import random
2019-05-23 00:40:10 +03:00
from random import shuffle
from thinc.neural._classes.convolution import ExtractWindow
from examples.pipeline.wiki_entity_linking import run_el, training_set_creator, kb_creator
2019-05-27 00:39:46 +03:00
from spacy._ml import SpacyVectors, create_default_optimizer, zero_init, logistic, Tok2Vec
2019-05-20 12:58:48 +03:00
from thinc.api import chain, concatenate, flatten_add_lengths, clone, with_flatten
2019-05-21 00:54:55 +03:00
from thinc.v2v import Model, Maxout, Affine, ReLu
2019-05-20 12:58:48 +03:00
from thinc.t2v import Pooling, mean_pool, sum_pool
2019-05-14 09:37:52 +03:00
from thinc.t2t import ParametricAttention
from thinc.misc import Residual
from thinc.misc import LayerNorm as LN
2019-05-23 16:37:05 +03:00
from spacy.matcher import PhraseMatcher
2019-05-13 15:26:04 +03:00
from spacy.tokens import Doc
""" TODO: this code needs to be implemented in pipes.pyx"""
class EL_Model:
2019-05-23 16:37:05 +03:00
PRINT_INSPECT = False
2019-05-27 15:29:38 +03:00
PRINT_TRAIN = True
2019-05-15 03:23:08 +03:00
EPS = 0.0000000005
CUTOFF = 0.5
2019-05-23 00:40:10 +03:00
BATCH_SIZE = 5
2019-05-24 23:04:25 +03:00
UPSAMPLE = True
2019-05-23 00:40:10 +03:00
2019-05-23 16:37:05 +03:00
DOC_CUTOFF = 300 # number of characters from the doc context
INPUT_DIM = 300 # dimension of pre-trained vectors
2019-05-27 00:39:46 +03:00
# HIDDEN_1_WIDTH = 32 # 10
2019-05-27 15:29:38 +03:00
HIDDEN_2_WIDTH = 32 # 6
2019-05-23 00:40:10 +03:00
DESC_WIDTH = 64 # 4
ARTICLE_WIDTH = 64 # 8
2019-05-23 17:59:11 +03:00
SENT_WIDTH = 64
2019-05-17 18:44:11 +03:00
2019-05-21 00:54:55 +03:00
DROP = 0.1
2019-05-27 15:29:38 +03:00
LEARN_RATE = 0.0001
2019-05-27 00:39:46 +03:00
EPOCHS = 20
2019-05-27 15:29:38 +03:00
L2 = 1e-6
name = "entity_linker"
def __init__(self, kb, nlp):
run_el._prepare_pipeline(nlp, kb)
self.nlp = nlp
self.kb = kb
2019-05-27 00:39:46 +03:00
self._build_cnn(desc_width=self.DESC_WIDTH,
2019-05-22 00:42:46 +03:00
article_width=self.ARTICLE_WIDTH,
2019-05-27 00:39:46 +03:00
sent_width=self.SENT_WIDTH)
2019-05-14 09:37:52 +03:00
def train_model(self, training_dir, entity_descr_output, trainlimit=None, devlimit=None, to_print=True):
# raise errors instead of runtime warnings in case of int/float overflow
2019-05-27 15:29:38 +03:00
# (not sure if we need this. set L2 to 0 because it throws an error otherwsise)
# np.seterr(all='raise')
# alternative:
np.seterr(divide="raise", over="warn", under="ignore", invalid="raise")
2019-05-23 16:37:05 +03:00
train_ent, train_gold, train_desc, train_art, train_art_texts, train_sent, train_sent_texts = \
self._get_training_data(training_dir, entity_descr_output, False, trainlimit, to_print=False)
2019-05-24 23:04:25 +03:00
dev_ent, dev_gold, dev_desc, dev_art, dev_art_texts, dev_sent, dev_sent_texts = \
self._get_training_data(training_dir, entity_descr_output, True, devlimit, to_print=False)
dev_pos_count = len([g for g in dev_gold.values() if g])
dev_neg_count = len([g for g in dev_gold.values() if not g])
2019-05-23 16:37:05 +03:00
# inspect data
if self.PRINT_INSPECT:
for entity in train_ent:
print("entity", entity)
print("gold", train_gold[entity])
print("desc", train_desc[entity])
print("sentence ID", train_sent[entity])
print("sentence text", train_sent_texts[train_sent[entity]])
print("article ID", train_art[entity])
print("article text", train_art_texts[train_art[entity]])
print()
2019-05-23 00:40:10 +03:00
2019-05-23 17:59:11 +03:00
train_pos_entities = [k for k, v in train_gold.items() if v]
train_neg_entities = [k for k, v in train_gold.items() if not v]
2019-05-23 00:40:10 +03:00
train_pos_count = len(train_pos_entities)
train_neg_count = len(train_neg_entities)
2019-05-24 23:04:25 +03:00
if self.UPSAMPLE:
if to_print:
print()
print("Upsampling, original training instances pos/neg:", train_pos_count, train_neg_count)
2019-05-23 00:40:10 +03:00
2019-05-24 23:04:25 +03:00
# upsample positives to 50-50 distribution
while train_pos_count < train_neg_count:
train_ent.append(random.choice(train_pos_entities))
train_pos_count += 1
2019-05-23 00:40:10 +03:00
2019-05-24 23:04:25 +03:00
# upsample negatives to 50-50 distribution
while train_neg_count < train_pos_count:
train_ent.append(random.choice(train_neg_entities))
train_neg_count += 1
2019-05-23 00:40:10 +03:00
self._begin_training()
if to_print:
print()
2019-05-23 16:37:05 +03:00
print("Training on", len(train_ent), "entities in", len(train_art_texts), "articles")
print("Training instances pos/neg:", train_pos_count, train_neg_count)
2019-05-23 00:40:10 +03:00
print()
2019-05-23 16:37:05 +03:00
print("Dev test on", len(dev_ent), "entities in", len(dev_art_texts), "articles")
print("Dev instances pos/neg:", dev_pos_count, dev_neg_count)
2019-05-17 18:44:11 +03:00
print()
print(" CUTOFF", self.CUTOFF)
2019-05-23 16:37:05 +03:00
print(" DOC_CUTOFF", self.DOC_CUTOFF)
2019-05-17 18:44:11 +03:00
print(" INPUT_DIM", self.INPUT_DIM)
2019-05-27 00:39:46 +03:00
# print(" HIDDEN_1_WIDTH", self.HIDDEN_1_WIDTH)
2019-05-23 00:40:10 +03:00
print(" DESC_WIDTH", self.DESC_WIDTH)
2019-05-17 18:44:11 +03:00
print(" ARTICLE_WIDTH", self.ARTICLE_WIDTH)
2019-05-23 17:59:11 +03:00
print(" SENT_WIDTH", self.SENT_WIDTH)
2019-05-27 00:39:46 +03:00
# print(" HIDDEN_2_WIDTH", self.HIDDEN_2_WIDTH)
2019-05-17 18:44:11 +03:00
print(" DROP", self.DROP)
2019-05-27 00:39:46 +03:00
print(" LEARNING RATE", self.LEARN_RATE)
print(" UPSAMPLE", self.UPSAMPLE)
2019-05-17 18:44:11 +03:00
print()
2019-05-23 17:59:11 +03:00
self._test_dev(dev_ent, dev_gold, dev_desc, dev_art, dev_art_texts, dev_sent, dev_sent_texts,
print_string="dev_random", calc_random=True)
2019-05-27 00:39:46 +03:00
2019-05-23 17:59:11 +03:00
self._test_dev(dev_ent, dev_gold, dev_desc, dev_art, dev_art_texts, dev_sent, dev_sent_texts,
print_string="dev_pre", avg=True)
2019-05-23 16:37:05 +03:00
print()
2019-05-27 00:39:46 +03:00
processed = 0
2019-05-24 23:04:25 +03:00
for i in range(self.EPOCHS):
shuffle(train_ent)
2019-05-23 00:40:10 +03:00
2019-05-24 23:04:25 +03:00
start = 0
stop = min(self.BATCH_SIZE, len(train_ent))
2019-05-23 00:40:10 +03:00
2019-05-24 23:04:25 +03:00
while start < len(train_ent):
next_batch = train_ent[start:stop]
2019-05-23 00:40:10 +03:00
2019-05-24 23:04:25 +03:00
golds = [train_gold[e] for e in next_batch]
descs = [train_desc[e] for e in next_batch]
article_texts = [train_art_texts[train_art[e]] for e in next_batch]
sent_texts = [train_sent_texts[train_sent[e]] for e in next_batch]
2019-05-23 00:40:10 +03:00
2019-05-24 23:04:25 +03:00
self.update(entities=next_batch, golds=golds, descs=descs, art_texts=article_texts, sent_texts=sent_texts)
2019-05-23 00:40:10 +03:00
2019-05-24 23:04:25 +03:00
processed += len(next_batch)
2019-05-24 23:04:25 +03:00
start = start + self.BATCH_SIZE
stop = min(stop + self.BATCH_SIZE, len(train_ent))
2019-05-27 00:39:46 +03:00
if self.PRINT_TRAIN:
2019-05-27 15:29:38 +03:00
print()
2019-05-27 00:39:46 +03:00
self._test_dev(train_ent, train_gold, train_desc, train_art, train_art_texts, train_sent, train_sent_texts,
print_string="train_inter_epoch " + str(i), avg=True)
self._test_dev(dev_ent, dev_gold, dev_desc, dev_art, dev_art_texts, dev_sent, dev_sent_texts,
print_string="dev_inter_epoch " + str(i), avg=True)
if to_print:
print()
print("Trained on", processed, "entities across", self.EPOCHS, "epochs")
2019-05-23 17:59:11 +03:00
def _test_dev(self, entities, gold_by_entity, desc_by_entity, art_by_entity, art_texts, sent_by_entity, sent_texts,
print_string, avg=True, calc_random=False):
2019-05-23 00:40:10 +03:00
golds = [gold_by_entity[e] for e in entities]
if calc_random:
predictions = self._predict_random(entities=entities)
2019-05-23 00:40:10 +03:00
else:
desc_docs = self.nlp.pipe([desc_by_entity[e] for e in entities])
2019-05-23 17:59:11 +03:00
article_docs = self.nlp.pipe([art_texts[art_by_entity[e]] for e in entities])
sent_docs = self.nlp.pipe([sent_texts[sent_by_entity[e]] for e in entities])
predictions = self._predict(entities=entities, article_docs=article_docs, sent_docs=sent_docs,
desc_docs=desc_docs, avg=avg)
2019-05-23 00:40:10 +03:00
# TODO: combine with prior probability
2019-05-23 16:37:05 +03:00
p, r, f, acc = run_el.evaluate(predictions, golds, to_print=False, times_hundred=False)
2019-05-22 13:46:40 +03:00
loss, gradient = self.get_loss(self.model.ops.asarray(predictions), self.model.ops.asarray(golds))
2019-05-23 00:40:10 +03:00
2019-05-23 17:59:11 +03:00
print("p/r/F/acc/loss", print_string, round(p, 2), round(r, 2), round(f, 2), round(acc, 2), round(loss, 2))
return loss, p, r, f
2019-05-13 15:26:04 +03:00
2019-05-23 17:59:11 +03:00
def _predict(self, entities, article_docs, sent_docs, desc_docs, avg=True, apply_threshold=True):
if avg:
2019-05-17 18:44:11 +03:00
with self.article_encoder.use_params(self.sgd_article.averages) \
2019-05-23 17:59:11 +03:00
and self.desc_encoder.use_params(self.sgd_desc.averages):
2019-05-23 00:40:10 +03:00
doc_encodings = self.article_encoder(article_docs)
desc_encodings = self.desc_encoder(desc_docs)
2019-05-23 17:59:11 +03:00
sent_encodings = self.sent_encoder(sent_docs)
2019-05-17 18:44:11 +03:00
else:
2019-05-23 00:40:10 +03:00
doc_encodings = self.article_encoder(article_docs)
desc_encodings = self.desc_encoder(desc_docs)
2019-05-23 17:59:11 +03:00
sent_encodings = self.sent_encoder(sent_docs)
concat_encodings = [list(doc_encodings[i]) + list(sent_encodings[i]) + list(desc_encodings[i]) for i in
range(len(entities))]
np_array_list = np.asarray(concat_encodings)
2019-05-17 18:44:11 +03:00
if avg:
with self.model.use_params(self.sgd.averages):
predictions = self.model(np_array_list)
2019-05-17 18:44:11 +03:00
else:
predictions = self.model(np_array_list)
2019-05-17 18:44:11 +03:00
predictions = self.model.ops.flatten(predictions)
predictions = [float(p) for p in predictions]
if apply_threshold:
predictions = [float(1.0) if p > self.CUTOFF else float(0.0) for p in predictions]
return predictions
def _predict_random(self, entities, apply_threshold=True):
if not apply_threshold:
2019-05-23 17:59:11 +03:00
return [float(random.uniform(0, 1)) for _ in entities]
else:
2019-05-23 17:59:11 +03:00
return [float(1.0) if random.uniform(0, 1) > self.CUTOFF else float(0.0) for _ in entities]
2019-05-27 00:39:46 +03:00
def _build_cnn_depr(self, embed_width, desc_width, article_width, sent_width, hidden_1_width, hidden_2_width):
with Model.define_operators({">>": chain, "|": concatenate, "**": clone}):
2019-05-27 00:39:46 +03:00
self.desc_encoder = self._encoder_depr(in_width=embed_width, hidden_with=hidden_1_width, end_width=desc_width)
self.article_encoder = self._encoder_depr(in_width=embed_width, hidden_with=hidden_1_width, end_width=article_width)
self.sent_encoder = self._encoder_depr(in_width=embed_width, hidden_with=hidden_1_width, end_width=sent_width)
2019-05-23 17:59:11 +03:00
in_width = article_width + sent_width + desc_width
2019-05-22 00:42:46 +03:00
out_width = hidden_2_width
2019-05-22 00:42:46 +03:00
self.model = Affine(out_width, in_width) \
>> LN(Maxout(out_width, out_width)) \
>> Affine(1, out_width) \
>> logistic
2019-05-27 00:39:46 +03:00
def _build_cnn(self, desc_width, article_width, sent_width):
with Model.define_operators({">>": chain, "|": concatenate, "**": clone}):
self.desc_encoder = self._encoder(width=desc_width)
self.article_encoder = self._encoder(width=article_width)
self.sent_encoder = self._encoder(width=sent_width)
in_width = desc_width + article_width + sent_width
2019-05-27 15:29:38 +03:00
self.model = Affine(self.HIDDEN_2_WIDTH, in_width) \
>> LN(Maxout(self.HIDDEN_2_WIDTH, self.HIDDEN_2_WIDTH)) \
>> Affine(1, self.HIDDEN_2_WIDTH) \
>> logistic
# output_layer = (
# zero_init(Affine(1, in_width, drop_factor=0.0)) >> logistic
# )
# self.model = output_layer
2019-05-27 00:39:46 +03:00
self.model.nO = 1
def _encoder(self, width):
tok2vec = Tok2Vec(width=width, embed_size=2000, pretrained_vectors=self.nlp.vocab.vectors.name, cnn_maxout_pieces=3,
2019-05-27 15:29:38 +03:00
subword_features=False, conv_depth=4, bilstm_depth=0)
2019-05-27 00:39:46 +03:00
return tok2vec >> flatten_add_lengths >> Pooling(mean_pool)
@staticmethod
2019-05-27 00:39:46 +03:00
def _encoder_depr(in_width, hidden_with, end_width):
2019-05-20 18:20:39 +03:00
conv_depth = 2
2019-05-20 12:58:48 +03:00
cnn_maxout_pieces = 3
with Model.define_operators({">>": chain}):
2019-05-23 17:59:11 +03:00
convolution = Residual((ExtractWindow(nW=1) >>
LN(Maxout(hidden_with, hidden_with * 3, pieces=cnn_maxout_pieces))))
2019-05-20 12:58:48 +03:00
encoder = SpacyVectors \
2019-05-22 00:42:46 +03:00
>> with_flatten(LN(Maxout(hidden_with, in_width)) >> convolution ** conv_depth, pad=conv_depth) \
2019-05-20 12:58:48 +03:00
>> flatten_add_lengths \
2019-05-22 00:42:46 +03:00
>> ParametricAttention(hidden_with)\
2019-05-20 12:58:48 +03:00
>> Pooling(mean_pool) \
2019-05-22 00:42:46 +03:00
>> Residual(zero_init(Maxout(hidden_with, hidden_with))) \
>> zero_init(Affine(end_width, hidden_with, drop_factor=0.0))
2019-05-21 00:54:55 +03:00
# TODO: ReLu or LN(Maxout) ?
2019-05-20 12:58:48 +03:00
# sum_pool or mean_pool ?
return encoder
def _begin_training(self):
2019-05-17 18:44:11 +03:00
self.sgd_article = create_default_optimizer(self.article_encoder.ops)
2019-05-24 23:04:25 +03:00
self.sgd_article.learn_rate = self.LEARN_RATE
2019-05-27 15:29:38 +03:00
self.sgd_article.L2 = self.L2
2019-05-27 00:39:46 +03:00
2019-05-23 17:59:11 +03:00
self.sgd_sent = create_default_optimizer(self.sent_encoder.ops)
2019-05-24 23:04:25 +03:00
self.sgd_sent.learn_rate = self.LEARN_RATE
2019-05-27 15:29:38 +03:00
self.sgd_sent.L2 = self.L2
2019-05-27 00:39:46 +03:00
2019-05-23 17:59:11 +03:00
self.sgd_desc = create_default_optimizer(self.desc_encoder.ops)
2019-05-24 23:04:25 +03:00
self.sgd_desc.learn_rate = self.LEARN_RATE
2019-05-27 15:29:38 +03:00
self.sgd_desc.L2 = self.L2
2019-05-27 00:39:46 +03:00
self.sgd = create_default_optimizer(self.model.ops)
2019-05-24 23:04:25 +03:00
self.sgd.learn_rate = self.LEARN_RATE
2019-05-27 15:29:38 +03:00
self.sgd.L2 = self.L2
@staticmethod
def get_loss(predictions, golds):
d_scores = (predictions - golds)
2019-05-23 00:40:10 +03:00
gradient = d_scores.mean()
2019-05-22 13:46:40 +03:00
loss = (d_scores ** 2).mean()
2019-05-23 00:40:10 +03:00
return loss, gradient
2019-05-23 17:59:11 +03:00
def update(self, entities, golds, descs, art_texts, sent_texts):
2019-05-23 00:40:10 +03:00
golds = self.model.ops.asarray(golds)
2019-05-23 17:59:11 +03:00
art_docs = self.nlp.pipe(art_texts)
sent_docs = self.nlp.pipe(sent_texts)
2019-05-23 00:40:10 +03:00
desc_docs = self.nlp.pipe(descs)
2019-05-20 12:58:48 +03:00
2019-05-23 17:59:11 +03:00
doc_encodings, bp_doc = self.article_encoder.begin_update(art_docs, drop=self.DROP)
sent_encodings, bp_sent = self.sent_encoder.begin_update(sent_docs, drop=self.DROP)
desc_encodings, bp_desc = self.desc_encoder.begin_update(desc_docs, drop=self.DROP)
2019-05-17 18:44:11 +03:00
2019-05-23 17:59:11 +03:00
concat_encodings = [list(doc_encodings[i]) + list(sent_encodings[i]) + list(desc_encodings[i])
for i in range(len(entities))]
2019-05-23 00:40:10 +03:00
predictions, bp_model = self.model.begin_update(np.asarray(concat_encodings), drop=self.DROP)
predictions = self.model.ops.flatten(predictions)
2019-05-23 00:40:10 +03:00
# print("entities", entities)
# print("predictions", predictions)
# print("golds", golds)
2019-05-23 00:40:10 +03:00
loss, gradient = self.get_loss(predictions, golds)
2019-05-23 00:40:10 +03:00
gradient = float(gradient)
# print("gradient", gradient)
# print("loss", loss)
2019-05-23 00:40:10 +03:00
model_gradient = bp_model(gradient, sgd=self.sgd)
# print("model_gradient", model_gradient)
2019-05-20 18:20:39 +03:00
2019-05-23 17:59:11 +03:00
# concat = doc + sent + desc, but doc is the same within this function
sent_start = self.ARTICLE_WIDTH
desc_start = self.ARTICLE_WIDTH + self.SENT_WIDTH
doc_gradient = model_gradient[0][0:sent_start]
sent_gradients = list()
desc_gradients = list()
2019-05-23 00:40:10 +03:00
for x in model_gradient:
2019-05-23 17:59:11 +03:00
sent_gradients.append(list(x[sent_start:desc_start]))
desc_gradients.append(list(x[desc_start:]))
2019-05-23 00:40:10 +03:00
# print("doc_gradient", doc_gradient)
2019-05-23 17:59:11 +03:00
# print("sent_gradients", sent_gradients)
# print("desc_gradients", desc_gradients)
2019-05-23 00:40:10 +03:00
bp_doc([doc_gradient], sgd=self.sgd_article)
2019-05-23 17:59:11 +03:00
bp_sent(sent_gradients, sgd=self.sgd_sent)
bp_desc(desc_gradients, sgd=self.sgd_desc)
2019-05-23 00:40:10 +03:00
def _get_training_data(self, training_dir, entity_descr_output, dev, limit, to_print):
id_to_descr = kb_creator._get_id_to_description(entity_descr_output)
correct_entries, incorrect_entries = training_set_creator.read_training_entities(training_output=training_dir,
collect_correct=True,
collect_incorrect=True)
2019-05-23 16:37:05 +03:00
entities = set()
2019-05-23 00:40:10 +03:00
gold_by_entity = dict()
desc_by_entity = dict()
article_by_entity = dict()
2019-05-23 16:37:05 +03:00
text_by_article = dict()
sentence_by_entity = dict()
text_by_sentence = dict()
cnt = 0
2019-05-23 16:37:05 +03:00
next_entity_nr = 1
next_sent_nr = 1
2019-05-23 00:40:10 +03:00
files = listdir(training_dir)
shuffle(files)
for f in files:
if not limit or cnt < limit:
2019-05-13 15:26:04 +03:00
if dev == run_el.is_dev(f):
article_id = f.replace(".txt", "")
if cnt % 500 == 0 and to_print:
print(datetime.datetime.now(), "processed", cnt, "files in the training dataset")
cnt += 1
2019-05-23 16:37:05 +03:00
# parse the article text
with open(os.path.join(training_dir, f), mode="r", encoding='utf8') as file:
text = file.read()
article_doc = self.nlp(text)
truncated_text = text[0:min(self.DOC_CUTOFF, len(text))]
text_by_article[article_id] = truncated_text
# process all positive and negative entities, collect all relevant mentions in this article
article_terms = set()
entities_by_mention = dict()
for mention, entity_pos in correct_entries[article_id].items():
descr = id_to_descr.get(entity_pos)
if descr:
2019-05-23 16:37:05 +03:00
entity = "E_" + str(next_entity_nr) + "_" + article_id + "_" + mention
2019-05-23 00:40:10 +03:00
next_entity_nr += 1
2019-05-23 16:37:05 +03:00
gold_by_entity[entity] = 1
desc_by_entity[entity] = descr
article_terms.add(mention)
mention_entities = entities_by_mention.get(mention, set())
mention_entities.add(entity)
entities_by_mention[mention] = mention_entities
for mention, entity_negs in incorrect_entries[article_id].items():
2019-05-23 00:40:10 +03:00
for entity_neg in entity_negs:
descr = id_to_descr.get(entity_neg)
if descr:
2019-05-23 16:37:05 +03:00
entity = "E_" + str(next_entity_nr) + "_" + article_id + "_" + mention
2019-05-23 00:40:10 +03:00
next_entity_nr += 1
2019-05-23 16:37:05 +03:00
gold_by_entity[entity] = 0
desc_by_entity[entity] = descr
article_terms.add(mention)
mention_entities = entities_by_mention.get(mention, set())
mention_entities.add(entity)
entities_by_mention[mention] = mention_entities
# find all matches in the doc for the mentions
# TODO: fix this - doesn't look like all entities are found
matcher = PhraseMatcher(self.nlp.vocab)
patterns = list(self.nlp.tokenizer.pipe(article_terms))
matcher.add("TerminologyList", None, *patterns)
matches = matcher(article_doc)
# store sentences
sentence_to_id = dict()
for match_id, start, end in matches:
span = article_doc[start:end]
2019-05-23 17:59:11 +03:00
sent_text = span.sent.text
2019-05-23 16:37:05 +03:00
sent_nr = sentence_to_id.get(sent_text, None)
2019-05-23 17:59:11 +03:00
mention = span.text
2019-05-23 16:37:05 +03:00
if sent_nr is None:
sent_nr = "S_" + str(next_sent_nr) + article_id
next_sent_nr += 1
text_by_sentence[sent_nr] = sent_text
sentence_to_id[sent_text] = sent_nr
2019-05-23 17:59:11 +03:00
mention_entities = entities_by_mention[mention]
2019-05-23 16:37:05 +03:00
for entity in mention_entities:
entities.add(entity)
sentence_by_entity[entity] = sent_nr
article_by_entity[entity] = article_id
# remove entities that didn't have all data
gold_by_entity = {k: v for k, v in gold_by_entity.items() if k in entities}
desc_by_entity = {k: v for k, v in desc_by_entity.items() if k in entities}
article_by_entity = {k: v for k, v in article_by_entity.items() if k in entities}
text_by_article = {k: v for k, v in text_by_article.items() if k in article_by_entity.values()}
sentence_by_entity = {k: v for k, v in sentence_by_entity.items() if k in entities}
text_by_sentence = {k: v for k, v in text_by_sentence.items() if k in sentence_by_entity.values()}
if to_print:
print()
print("Processed", cnt, "training articles, dev=" + str(dev))
print()
2019-05-23 17:59:11 +03:00
return list(entities), gold_by_entity, desc_by_entity, article_by_entity, text_by_article, \
sentence_by_entity, text_by_sentence
2019-05-23 00:40:10 +03:00