spaCy/spacy/tests/doc/test_add_entities.py

24 lines
662 B
Python
Raw Normal View History

2017-01-11 20:54:24 +03:00
# coding: utf-8
from __future__ import unicode_literals
2017-01-11 20:54:24 +03:00
from ...pipeline import EntityRecognizer
from ..util import get_doc
2017-01-11 20:54:24 +03:00
import pytest
2017-01-11 21:00:52 +03:00
def test_doc_add_entities_set_ents_iob(en_vocab):
2017-01-11 20:54:24 +03:00
text = ["This", "is", "a", "lion"]
doc = get_doc(en_vocab, text)
ner = EntityRecognizer(en_vocab, features=[(2,), (3,)])
ner(doc)
assert len(list(doc.ents)) == 0
2017-01-11 20:54:24 +03:00
assert [w.ent_iob_ for w in doc] == (['O'] * len(doc))
doc.ents = [(doc.vocab.strings['ANIMAL'], 3, 4)]
2017-01-11 20:54:24 +03:00
assert [w.ent_iob_ for w in doc] == ['O', 'O', 'O', 'B']
doc.ents = [(doc.vocab.strings['WORD'], 0, 2)]
2017-01-11 20:54:24 +03:00
assert [w.ent_iob_ for w in doc] == ['B', 'I', 'O', 'O']