mirror of https://github.com/explosion/spaCy.git
* Fix partial actions test
This commit is contained in:
parent
01be34d55a
commit
c044c0e18e
|
@ -4,5 +4,9 @@ import pytest
|
|||
def test_initial(EN):
|
||||
doc = EN.tokenizer(u'I ate the pizza with anchovies.')
|
||||
EN.tagger(doc)
|
||||
EN.parser(doc, initial_actions=['L-nsubj', 'S', 'L-det'])
|
||||
next_actions = EN.parser.partial(doc, actions=['L-nsubj', 'S', 'L-det'])
|
||||
assert doc[0].head.i == 1
|
||||
assert doc[1].head.i == 1
|
||||
assert doc[2].head.i == 2
|
||||
assert doc[3].head.i == 2
|
||||
assert doc
|
||||
|
|
Loading…
Reference in New Issue