2019-03-19 23:43:48 +03:00
|
|
|
# coding: utf-8
|
2019-03-19 19:39:35 +03:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
from spacy.kb import KnowledgeBase
|
|
|
|
|
|
|
|
|
|
|
|
def test_kb_valid_entities():
|
2019-03-19 23:43:48 +03:00
|
|
|
"""Test the valid construction of a KB with 3 entities and one alias"""
|
2019-03-19 19:39:35 +03:00
|
|
|
mykb = KnowledgeBase()
|
|
|
|
|
|
|
|
# adding entities
|
2019-03-19 23:43:48 +03:00
|
|
|
mykb.add_entity(entity_id="Q1", prob=0.9)
|
|
|
|
mykb.add_entity(entity_id="Q2", prob=0.2)
|
2019-03-19 19:39:35 +03:00
|
|
|
mykb.add_entity(entity_id="Q3", prob=0.5)
|
|
|
|
|
|
|
|
# adding aliases
|
2019-03-19 23:50:32 +03:00
|
|
|
mykb.add_alias(alias="douglas", entities=["Q2", "Q3"], probabilities=[0.8, 0.2])
|
|
|
|
mykb.add_alias(alias="adam", entities=["Q2"], probabilities=[0.9])
|
|
|
|
|
|
|
|
# test the size of the corresponding KB
|
|
|
|
assert(mykb.get_size_entities() == 3)
|
|
|
|
assert(mykb.get_size_aliases() == 2)
|
2019-03-19 19:39:35 +03:00
|
|
|
|
|
|
|
|
|
|
|
def test_kb_invalid_entities():
|
2019-03-19 23:43:48 +03:00
|
|
|
"""Test the invalid construction of a KB with an alias linked to a non-existing entity"""
|
2019-03-19 19:39:35 +03:00
|
|
|
mykb = KnowledgeBase()
|
|
|
|
|
|
|
|
# adding entities
|
2019-03-19 23:43:48 +03:00
|
|
|
mykb.add_entity(entity_id="Q1", prob=0.9)
|
|
|
|
mykb.add_entity(entity_id="Q2", prob=0.2)
|
2019-03-19 19:39:35 +03:00
|
|
|
mykb.add_entity(entity_id="Q3", prob=0.5)
|
|
|
|
|
|
|
|
# adding aliases - should fail because one of the given IDs is not valid
|
|
|
|
with pytest.raises(ValueError):
|
2019-03-19 23:50:32 +03:00
|
|
|
mykb.add_alias(alias="douglas", entities=["Q2", "Q342"], probabilities=[0.8, 0.2])
|
2019-03-19 19:39:35 +03:00
|
|
|
|
2019-03-19 23:43:48 +03:00
|
|
|
|
|
|
|
def test_kb_invalid_probabilities():
|
|
|
|
"""Test the invalid construction of a KB with wrong prior probabilities"""
|
|
|
|
mykb = KnowledgeBase()
|
|
|
|
|
|
|
|
# adding entities
|
|
|
|
mykb.add_entity(entity_id="Q1", prob=0.9)
|
|
|
|
mykb.add_entity(entity_id="Q2", prob=0.2)
|
|
|
|
mykb.add_entity(entity_id="Q3", prob=0.5)
|
|
|
|
|
|
|
|
# adding aliases - should fail because the sum of the probabilities exceeds 1
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
mykb.add_alias(alias="douglassss", entities=["Q2", "Q3"], probabilities=[0.8, 0.4])
|
|
|
|
|
2019-03-19 23:55:10 +03:00
|
|
|
|
|
|
|
def test_kb_invalid_combination():
|
|
|
|
"""Test the invalid construction of a KB with non-matching entity and probability lists"""
|
|
|
|
mykb = KnowledgeBase()
|
|
|
|
|
|
|
|
# adding entities
|
|
|
|
mykb.add_entity(entity_id="Q1", prob=0.9)
|
|
|
|
mykb.add_entity(entity_id="Q2", prob=0.2)
|
|
|
|
mykb.add_entity(entity_id="Q3", prob=0.5)
|
|
|
|
|
|
|
|
# adding aliases - should fail because the entities and probabilities vectors are not of equal length
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
mykb.add_alias(alias="douglassss", entities=["Q2", "Q3"], probabilities=[0.3, 0.4, 0.1])
|
|
|
|
|
2019-03-21 14:48:59 +03:00
|
|
|
|
|
|
|
def test_candidate_generation():
|
|
|
|
"""Test correct candidate generation"""
|
|
|
|
mykb = KnowledgeBase()
|
|
|
|
|
|
|
|
# adding entities
|
|
|
|
mykb.add_entity(entity_id="Q1", prob=0.9)
|
|
|
|
mykb.add_entity(entity_id="Q2", prob=0.2)
|
|
|
|
mykb.add_entity(entity_id="Q3", prob=0.5)
|
|
|
|
|
|
|
|
# adding aliases
|
|
|
|
mykb.add_alias(alias="douglas", entities=["Q2", "Q3"], probabilities=[0.8, 0.2])
|
|
|
|
mykb.add_alias(alias="adam", entities=["Q2"], probabilities=[0.9])
|
|
|
|
|
|
|
|
# test the size of the relevant candidates
|
|
|
|
assert(len(mykb.get_candidates("douglas")) == 2)
|
|
|
|
assert(len(mykb.get_candidates("adam")) == 1)
|
2019-03-21 17:24:40 +03:00
|
|
|
assert(len(mykb.get_candidates("shrubbery")) == 0)
|