2017-05-16 14:06:30 +03:00
|
|
|
# coding: utf8
|
|
|
|
from __future__ import unicode_literals
|
2017-05-15 22:46:08 +03:00
|
|
|
from thinc.neural import Model
|
|
|
|
import pytest
|
|
|
|
import numpy
|
|
|
|
|
|
|
|
from ..._ml import chain, Tok2Vec, doc2feats
|
|
|
|
from ...vocab import Vocab
|
2017-10-26 13:38:23 +03:00
|
|
|
from ...pipeline import Tensorizer
|
2017-05-15 22:46:08 +03:00
|
|
|
from ...syntax.arc_eager import ArcEager
|
|
|
|
from ...syntax.nn_parser import Parser
|
|
|
|
from ...tokens.doc import Doc
|
|
|
|
from ...gold import GoldParse
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def vocab():
|
|
|
|
return Vocab()
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def arc_eager(vocab):
|
|
|
|
actions = ArcEager.get_actions(left_labels=['L'], right_labels=['R'])
|
|
|
|
return ArcEager(vocab.strings, actions)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def tok2vec():
|
2017-09-17 21:13:20 +03:00
|
|
|
return Tok2Vec(8, 100)
|
2017-05-15 22:46:08 +03:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def parser(vocab, arc_eager):
|
|
|
|
return Parser(vocab, moves=arc_eager, model=None)
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def model(arc_eager, tok2vec):
|
2017-10-09 05:12:24 +03:00
|
|
|
return Parser.Model(arc_eager.n_moves, token_vector_width=tok2vec.nO,
|
|
|
|
hist_size=0)[0]
|
2017-05-15 22:46:08 +03:00
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def doc(vocab):
|
|
|
|
return Doc(vocab, words=['a', 'b', 'c'])
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def gold(doc):
|
|
|
|
return GoldParse(doc, heads=[1, 1, 1], deps=['L', 'ROOT', 'R'])
|
2017-07-20 01:16:52 +03:00
|
|
|
|
|
|
|
|
2017-05-15 22:46:08 +03:00
|
|
|
def test_can_init_nn_parser(parser):
|
|
|
|
assert parser.model is None
|
|
|
|
|
|
|
|
|
2017-05-16 17:17:30 +03:00
|
|
|
def test_build_model(parser):
|
2017-10-09 05:12:24 +03:00
|
|
|
parser.model = Parser.Model(parser.moves.n_moves, hist_size=0)[0]
|
2017-05-15 22:46:08 +03:00
|
|
|
assert parser.model is not None
|
|
|
|
|
|
|
|
|
2017-05-16 17:17:30 +03:00
|
|
|
def test_predict_doc(parser, tok2vec, model, doc):
|
2017-07-20 01:16:52 +03:00
|
|
|
doc.tensor = tok2vec([doc])[0]
|
2017-05-15 22:46:08 +03:00
|
|
|
parser.model = model
|
2017-05-20 02:11:29 +03:00
|
|
|
parser(doc)
|
2017-05-15 22:46:08 +03:00
|
|
|
|
|
|
|
|
2017-09-21 15:59:48 +03:00
|
|
|
def test_update_doc(parser, model, doc, gold):
|
2017-05-15 22:46:08 +03:00
|
|
|
parser.model = model
|
|
|
|
def optimize(weights, gradient, key=None):
|
|
|
|
weights -= 0.001 * gradient
|
2017-09-21 15:59:48 +03:00
|
|
|
parser.update([doc], [gold], sgd=optimize)
|
2017-07-20 16:03:10 +03:00
|
|
|
|
|
|
|
|
2017-09-21 15:59:48 +03:00
|
|
|
def test_predict_doc_beam(parser, model, doc):
|
2017-07-20 16:03:10 +03:00
|
|
|
parser.model = model
|
|
|
|
parser(doc, beam_width=32, beam_density=0.001)
|
2017-08-18 23:27:42 +03:00
|
|
|
|
|
|
|
|
2017-09-21 15:59:48 +03:00
|
|
|
def test_update_doc_beam(parser, model, doc, gold):
|
2017-08-18 23:27:42 +03:00
|
|
|
parser.model = model
|
|
|
|
def optimize(weights, gradient, key=None):
|
|
|
|
weights -= 0.001 * gradient
|
2017-09-21 15:59:48 +03:00
|
|
|
parser.update_beam([doc], [gold], sgd=optimize)
|
2017-08-18 23:27:42 +03:00
|
|
|
|
|
|
|
|