spaCy/spacy/lang/uk/lemmatizer.py

16 lines
562 B
Python
Raw Normal View History

2019-02-08 16:14:49 +03:00
# coding: utf8
from __future__ import unicode_literals
from ..ru.lemmatizer import RussianLemmatizer
class UkrainianLemmatizer(RussianLemmatizer):
2019-02-08 16:14:49 +03:00
def __init__(self, pymorphy2_lang="ru"):
try:
2019-02-08 16:14:49 +03:00
super(UkrainianLemmatizer, self).__init__(pymorphy2_lang="uk")
except ImportError:
raise ImportError(
2019-02-08 16:14:49 +03:00
"The Ukrainian lemmatizer requires the pymorphy2 library and dictionaries: "
'try to fix it with "pip install git+https://github.com/kmike/pymorphy2.git pymorphy2-dicts-uk"'
)