2017-10-09 04:42:35 +03:00
|
|
|
import pytest
|
2020-01-29 19:06:46 +03:00
|
|
|
from thinc.optimizers import Adam
|
|
|
|
from thinc.backends import NumpyOps
|
2018-07-25 00:38:44 +03:00
|
|
|
from spacy.attrs import NORM
|
|
|
|
from spacy.gold import GoldParse
|
|
|
|
from spacy.vocab import Vocab
|
|
|
|
from spacy.tokens import Doc
|
2019-03-23 14:35:29 +03:00
|
|
|
from spacy.pipeline import DependencyParser, EntityRecognizer
|
|
|
|
from spacy.util import fix_random_seed
|
2017-10-09 04:42:35 +03:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def vocab():
|
|
|
|
return Vocab(lex_attr_getters={NORM: lambda s: s})
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def parser(vocab):
|
2017-10-26 13:38:23 +03:00
|
|
|
parser = DependencyParser(vocab)
|
2019-03-23 14:35:29 +03:00
|
|
|
return parser
|
|
|
|
|
|
|
|
|
|
|
|
def test_init_parser(parser):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def _train_parser(parser):
|
|
|
|
fix_random_seed(1)
|
2018-11-27 03:09:36 +03:00
|
|
|
parser.add_label("left")
|
2017-10-09 04:42:35 +03:00
|
|
|
parser.begin_training([], **parser.cfg)
|
2020-01-29 19:06:46 +03:00
|
|
|
sgd = Adam(0.001, ops=NumpyOps())
|
2017-10-09 04:42:35 +03:00
|
|
|
|
2019-03-23 15:46:25 +03:00
|
|
|
for i in range(5):
|
2017-10-09 04:42:35 +03:00
|
|
|
losses = {}
|
2019-03-23 14:35:29 +03:00
|
|
|
doc = Doc(parser.vocab, words=["a", "b", "c", "d"])
|
2018-11-27 03:09:36 +03:00
|
|
|
gold = GoldParse(doc, heads=[1, 1, 3, 3], deps=["left", "ROOT", "left", "ROOT"])
|
2019-11-11 19:35:27 +03:00
|
|
|
parser.update((doc, gold), sgd=sgd, losses=losses)
|
2017-10-09 04:42:35 +03:00
|
|
|
return parser
|
|
|
|
|
2018-07-25 00:38:44 +03:00
|
|
|
|
2017-10-09 04:42:35 +03:00
|
|
|
def test_add_label(parser):
|
2019-03-23 14:35:29 +03:00
|
|
|
parser = _train_parser(parser)
|
2018-11-27 03:09:36 +03:00
|
|
|
parser.add_label("right")
|
2020-01-29 19:06:46 +03:00
|
|
|
sgd = Adam(0.001, ops=NumpyOps())
|
|
|
|
for i in range(100):
|
2017-10-09 04:42:35 +03:00
|
|
|
losses = {}
|
2018-11-27 03:09:36 +03:00
|
|
|
doc = Doc(parser.vocab, words=["a", "b", "c", "d"])
|
|
|
|
gold = GoldParse(
|
|
|
|
doc, heads=[1, 1, 3, 3], deps=["right", "ROOT", "left", "ROOT"]
|
|
|
|
)
|
2019-11-11 19:35:27 +03:00
|
|
|
parser.update((doc, gold), sgd=sgd, losses=losses)
|
2018-11-27 03:09:36 +03:00
|
|
|
doc = Doc(parser.vocab, words=["a", "b", "c", "d"])
|
2017-10-09 04:42:35 +03:00
|
|
|
doc = parser(doc)
|
2018-11-27 03:09:36 +03:00
|
|
|
assert doc[0].dep_ == "right"
|
|
|
|
assert doc[2].dep_ == "left"
|
2019-03-23 14:35:29 +03:00
|
|
|
|
|
|
|
|
|
|
|
def test_add_label_deserializes_correctly():
|
|
|
|
ner1 = EntityRecognizer(Vocab())
|
|
|
|
ner1.add_label("C")
|
|
|
|
ner1.add_label("B")
|
|
|
|
ner1.add_label("A")
|
|
|
|
ner1.begin_training([])
|
|
|
|
ner2 = EntityRecognizer(Vocab()).from_bytes(ner1.to_bytes())
|
|
|
|
assert ner1.moves.n_moves == ner2.moves.n_moves
|
|
|
|
for i in range(ner1.moves.n_moves):
|
|
|
|
assert ner1.moves.get_class_name(i) == ner2.moves.get_class_name(i)
|
2019-09-11 19:29:35 +03:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"pipe_cls,n_moves", [(DependencyParser, 5), (EntityRecognizer, 4)]
|
|
|
|
)
|
|
|
|
def test_add_label_get_label(pipe_cls, n_moves):
|
|
|
|
"""Test that added labels are returned correctly. This test was added to
|
|
|
|
test for a bug in DependencyParser.labels that'd cause it to fail when
|
|
|
|
splitting the move names.
|
|
|
|
"""
|
|
|
|
labels = ["A", "B", "C"]
|
|
|
|
pipe = pipe_cls(Vocab())
|
|
|
|
for label in labels:
|
|
|
|
pipe.add_label(label)
|
|
|
|
assert len(pipe.move_names) == len(labels) * n_moves
|
|
|
|
pipe_labels = sorted(list(pipe.labels))
|
|
|
|
assert pipe_labels == labels
|