2019-03-18 19:27:51 +03:00
|
|
|
# cython: profile=True
|
|
|
|
# coding: utf8
|
2019-03-19 23:35:24 +03:00
|
|
|
from spacy.errors import user_warning
|
2019-03-15 18:05:23 +03:00
|
|
|
|
2019-03-21 02:04:06 +03:00
|
|
|
|
|
|
|
cdef class Candidate:
|
|
|
|
|
2019-03-21 20:20:57 +03:00
|
|
|
def __init__(self, KnowledgeBase kb, entity_id_hash, alias_hash, prior_prob):
|
2019-03-21 15:26:12 +03:00
|
|
|
self.kb = kb
|
2019-03-21 20:20:57 +03:00
|
|
|
self.entity_id_hash = entity_id_hash
|
2019-03-21 14:31:02 +03:00
|
|
|
self.alias_hash = alias_hash
|
|
|
|
self.prior_prob = prior_prob
|
2019-03-21 02:04:06 +03:00
|
|
|
|
2019-03-21 20:20:57 +03:00
|
|
|
property entity_id:
|
|
|
|
"""RETURNS (uint64): hash of the entity's KB ID"""
|
|
|
|
def __get__(self):
|
|
|
|
return self.entity_id_hash
|
|
|
|
|
|
|
|
property entity_id_:
|
2019-03-21 15:26:12 +03:00
|
|
|
"""RETURNS (unicode): ID of this entity in the KB"""
|
|
|
|
def __get__(self):
|
2019-03-21 20:20:57 +03:00
|
|
|
return self.kb.strings[self.entity_id]
|
2019-03-21 15:26:12 +03:00
|
|
|
|
2019-03-21 20:20:57 +03:00
|
|
|
property entity_name:
|
|
|
|
"""RETURNS (uint64): hash of the entity's KB name"""
|
2019-03-21 15:26:12 +03:00
|
|
|
def __get__(self):
|
2019-03-21 20:20:57 +03:00
|
|
|
entry_index = <int64_t>self.kb._entry_index.get(self.entity_id)
|
|
|
|
return self.kb._entries[entry_index].entity_name_hash
|
2019-03-21 15:26:12 +03:00
|
|
|
|
2019-03-21 20:20:57 +03:00
|
|
|
property entity_name_:
|
|
|
|
"""RETURNS (unicode): name of this entity in the KB"""
|
2019-03-21 15:26:12 +03:00
|
|
|
def __get__(self):
|
2019-03-21 20:20:57 +03:00
|
|
|
return self.kb.strings[self.entity_name]
|
2019-03-21 02:04:06 +03:00
|
|
|
|
2019-03-21 15:26:12 +03:00
|
|
|
property alias:
|
|
|
|
"""RETURNS (uint64): hash of the alias"""
|
|
|
|
def __get__(self):
|
|
|
|
return self.alias_hash
|
2019-03-21 02:04:06 +03:00
|
|
|
|
2019-03-21 20:20:57 +03:00
|
|
|
property alias_:
|
|
|
|
"""RETURNS (unicode): ID of the original alias"""
|
|
|
|
def __get__(self):
|
|
|
|
return self.kb.strings[self.alias]
|
|
|
|
|
2019-03-21 14:31:02 +03:00
|
|
|
property prior_prob:
|
|
|
|
def __get__(self):
|
|
|
|
return self.prior_prob
|
2019-03-21 02:04:06 +03:00
|
|
|
|
|
|
|
|
2019-03-15 18:05:23 +03:00
|
|
|
cdef class KnowledgeBase:
|
2019-03-18 19:27:51 +03:00
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self._entry_index = PreshMap()
|
|
|
|
self._alias_index = PreshMap()
|
|
|
|
self.mem = Pool()
|
2019-03-19 18:43:23 +03:00
|
|
|
self.strings = StringStore()
|
2019-03-21 19:33:25 +03:00
|
|
|
self._create_empty_vectors()
|
2019-03-18 19:27:51 +03:00
|
|
|
|
2019-03-15 18:05:23 +03:00
|
|
|
def __len__(self):
|
2019-03-19 17:51:56 +03:00
|
|
|
return self.get_size_entities()
|
|
|
|
|
|
|
|
def get_size_entities(self):
|
2019-03-19 23:50:32 +03:00
|
|
|
return self._entries.size() - 1 # not counting dummy element on index 0
|
2019-03-15 18:05:23 +03:00
|
|
|
|
2019-03-19 17:51:56 +03:00
|
|
|
def get_size_aliases(self):
|
2019-03-19 23:50:32 +03:00
|
|
|
return self._aliases_table.size() - 1 # not counting dummy element on index 0
|
2019-03-19 17:51:56 +03:00
|
|
|
|
2019-03-21 20:20:57 +03:00
|
|
|
def add_entity(self, unicode entity_id, unicode entity_name=None, float prob=0.5, vectors=None, features=None):
|
2019-03-21 15:26:12 +03:00
|
|
|
"""
|
|
|
|
Add an entity to the KB.
|
|
|
|
Return the hash of the entity ID at the end
|
|
|
|
"""
|
2019-03-21 20:20:57 +03:00
|
|
|
if not entity_name:
|
|
|
|
entity_name = entity_id
|
2019-03-19 18:43:23 +03:00
|
|
|
cdef hash_t id_hash = self.strings.add(entity_id)
|
2019-03-21 20:20:57 +03:00
|
|
|
cdef hash_t name_hash = self.strings.add(entity_name)
|
2019-03-18 19:27:51 +03:00
|
|
|
|
2019-03-19 23:35:24 +03:00
|
|
|
# Return if this entity was added before
|
2019-03-18 19:27:51 +03:00
|
|
|
if id_hash in self._entry_index:
|
2019-03-19 23:35:24 +03:00
|
|
|
user_warning("Entity " + entity_id + " already exists in the KB")
|
2019-03-15 18:05:23 +03:00
|
|
|
return
|
|
|
|
|
2019-03-18 12:31:01 +03:00
|
|
|
cdef int32_t dummy_value = 342
|
2019-03-21 20:55:01 +03:00
|
|
|
self.c_add_entity(entity_id_hash=id_hash, entity_name_hash=name_hash, prob=prob,
|
|
|
|
vector_rows=&dummy_value, feats_row=dummy_value)
|
2019-03-18 12:31:01 +03:00
|
|
|
# TODO self._vectors_table.get_pointer(vectors),
|
2019-03-18 14:38:40 +03:00
|
|
|
# self._features_table.get(features))
|
2019-03-15 18:05:23 +03:00
|
|
|
|
2019-03-21 15:26:12 +03:00
|
|
|
return id_hash
|
|
|
|
|
2019-03-18 19:27:51 +03:00
|
|
|
def add_alias(self, unicode alias, entities, probabilities):
|
2019-03-21 15:26:12 +03:00
|
|
|
"""
|
|
|
|
For a given alias, add its potential entities and prior probabilies to the KB.
|
|
|
|
Return the alias_hash at the end
|
|
|
|
"""
|
2019-03-19 23:43:48 +03:00
|
|
|
|
2019-03-19 23:55:10 +03:00
|
|
|
# Throw an error if the length of entities and probabilities are not the same
|
|
|
|
if not len(entities) == len(probabilities):
|
|
|
|
raise ValueError("The vectors for entities and probabilities for alias '" + alias
|
|
|
|
+ "' should have equal length, but found "
|
|
|
|
+ str(len(entities)) + " and " + str(len(probabilities)) + "respectively.")
|
|
|
|
|
|
|
|
|
2019-03-19 23:43:48 +03:00
|
|
|
# Throw an error if the probabilities sum up to more than 1
|
|
|
|
prob_sum = sum(probabilities)
|
|
|
|
if prob_sum > 1:
|
|
|
|
raise ValueError("The sum of prior probabilities for alias '" + alias + "' should not exceed 1, "
|
2019-03-19 23:55:10 +03:00
|
|
|
+ "but found " + str(prob_sum))
|
2019-03-19 23:43:48 +03:00
|
|
|
|
2019-03-19 18:43:23 +03:00
|
|
|
cdef hash_t alias_hash = self.strings.add(alias)
|
2019-03-19 23:35:24 +03:00
|
|
|
|
|
|
|
# Return if this alias was added before
|
|
|
|
if alias_hash in self._alias_index:
|
|
|
|
user_warning("Alias " + alias + " already exists in the KB")
|
|
|
|
return
|
|
|
|
|
2019-03-19 18:15:38 +03:00
|
|
|
cdef hash_t entity_hash
|
|
|
|
|
|
|
|
cdef vector[int64_t] entry_indices
|
|
|
|
cdef vector[float] probs
|
|
|
|
|
|
|
|
for entity, prob in zip(entities, probabilities):
|
2019-03-21 20:20:57 +03:00
|
|
|
entity_id_hash = self.strings[entity]
|
|
|
|
if not entity_id_hash in self._entry_index:
|
2019-03-19 19:39:35 +03:00
|
|
|
raise ValueError("Alias '" + alias + "' defined for unknown entity '" + entity + "'")
|
|
|
|
|
2019-03-21 20:20:57 +03:00
|
|
|
entry_index = <int64_t>self._entry_index.get(entity_id_hash)
|
2019-03-19 18:15:38 +03:00
|
|
|
entry_indices.push_back(int(entry_index))
|
|
|
|
probs.push_back(float(prob))
|
2019-03-18 14:38:40 +03:00
|
|
|
|
2019-03-21 14:31:02 +03:00
|
|
|
self.c_add_aliases(alias_hash=alias_hash, entry_indices=entry_indices, probs=probs)
|
2019-03-18 19:27:51 +03:00
|
|
|
|
2019-03-21 15:26:12 +03:00
|
|
|
return alias_hash
|
|
|
|
|
2019-03-19 23:35:24 +03:00
|
|
|
|
2019-03-18 19:50:01 +03:00
|
|
|
def get_candidates(self, unicode alias):
|
2019-03-21 20:55:01 +03:00
|
|
|
""" TODO: where to put this functionality ?"""
|
2019-03-21 02:04:06 +03:00
|
|
|
cdef hash_t alias_hash = self.strings[alias]
|
2019-03-19 17:51:56 +03:00
|
|
|
alias_index = <int64_t>self._alias_index.get(alias_hash)
|
2019-03-21 02:04:06 +03:00
|
|
|
alias_entry = self._aliases_table[alias_index]
|
|
|
|
|
2019-03-21 15:26:12 +03:00
|
|
|
return [Candidate(kb=self,
|
2019-03-21 20:20:57 +03:00
|
|
|
entity_id_hash=self._entries[entry_index].entity_id_hash,
|
2019-03-21 14:31:02 +03:00
|
|
|
alias_hash=alias_hash,
|
|
|
|
prior_prob=prob)
|
2019-03-21 17:24:40 +03:00
|
|
|
for (entry_index, prob) in zip(alias_entry.entry_indices, alias_entry.probs)
|
|
|
|
if entry_index != 0]
|