mirror of https://github.com/explosion/spaCy.git
Add test for 1305: Incorrect lemmatization of VBZ for English
This commit is contained in:
parent
33fa91feb7
commit
5384fff5ce
|
@ -0,0 +1,8 @@
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
@pytest.mark.models('en')
|
||||||
|
def test_issue1305(EN):
|
||||||
|
'''Test lemmatization of English VBZ'''
|
||||||
|
assert EN.vocab.morphology.lemmatizer('works', 'verb') == set(['work'])
|
||||||
|
doc = EN(u'This app works well')
|
||||||
|
assert doc[2].lemma_ == 'work'
|
Loading…
Reference in New Issue