Hotfix Russian lemmatizer

This commit is contained in:
Ines Montani 2019-09-27 17:56:12 +02:00
parent a4d4c4bfa4
commit b21b2e27e5
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ class RussianLemmatizer(Lemmatizer):
if (
feature in morphology
and feature in analysis_morph
and morphology[feature] != analysis_morph[feature]
and morphology[feature].lower() != analysis_morph[feature].lower()
):
break
else: