spaCy/tests/test_morph_exceptions.py

26 lines
529 B
Python
Raw Normal View History

2014-12-19 16:51:25 +00:00
from __future__ import unicode_literals
from spacy.en import English
2014-12-19 16:51:25 +00:00
import pytest
from spacy.en import English
@pytest.fixture
def EN():
2014-12-30 10:34:09 +00:00
return English()
2014-12-19 16:51:25 +00:00
@pytest.fixture
def morph_exc():
return {
'PRP$': {'his': {'L': '-PRP-', 'person': 3, 'case': 2}},
}
def test_load_exc(EN, morph_exc):
2014-12-23 02:18:59 +00:00
EN.tagger.load_morph_exceptions(morph_exc)
tokens = EN('I like his style.', tag=True)
2014-12-19 16:51:25 +00:00
his = tokens[2]
2014-12-26 03:26:27 +00:00
assert EN.tagger.tag_names[his.fine_pos] == 'PRP$'
2014-12-19 16:51:25 +00:00
assert his.lemma == '-PRP-'