mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-25 09:26:27 +03:00
Hotfix Russian lemmatizer
This commit is contained in:
parent
a4d4c4bfa4
commit
b21b2e27e5
|
@ -73,7 +73,7 @@ class RussianLemmatizer(Lemmatizer):
|
||||||
if (
|
if (
|
||||||
feature in morphology
|
feature in morphology
|
||||||
and feature in analysis_morph
|
and feature in analysis_morph
|
||||||
and morphology[feature] != analysis_morph[feature]
|
and morphology[feature].lower() != analysis_morph[feature].lower()
|
||||||
):
|
):
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user