mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-14 21:57:15 +03:00
10 lines
225 B
Python
10 lines
225 B
Python
|
from spacy.lang.el import Greek
|
||
|
|
||
|
|
||
|
def test_issue4272():
|
||
|
"""Test that lookup table can be accessed from Token.lemma if no POS tags
|
||
|
are available."""
|
||
|
nlp = Greek()
|
||
|
doc = nlp("Χθες")
|
||
|
assert doc[0].lemma_
|