mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 01:46:28 +03:00
Also apply hotfix to Ukrainian lemmaitzer
This commit is contained in:
parent
acd5bcb0b3
commit
206e8a5ac7
|
@ -70,7 +70,7 @@ class UkrainianLemmatizer(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