mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-29 11:26:28 +03:00
Fix apparent bug in Spanish lemmatizer. Not sure why this emerges in v4 not in v3
This commit is contained in:
parent
4eec3bfad1
commit
64b22be76e
|
@ -53,6 +53,9 @@ class SpanishLemmatizer(Lemmatizer):
|
|||
else:
|
||||
rule_pos = pos
|
||||
rule = self.select_rule(rule_pos, list(features))
|
||||
if rule is None:
|
||||
lemmas = [string]
|
||||
else:
|
||||
index = self.lookups.get_table("lemma_index").get(rule_pos, [])
|
||||
lemmas = getattr(self, "lemmatize_" + rule_pos)(
|
||||
string, features, rule, index
|
||||
|
@ -203,6 +206,7 @@ class SpanishLemmatizer(Lemmatizer):
|
|||
word (str): The word to lemmatize.
|
||||
features (List[str]): The morphological features as a list of Feat=Val
|
||||
pairs.
|
||||
rule (str): The rule ID to use
|
||||
index (List[str]): The POS-specific lookup list.
|
||||
|
||||
RETURNS (List[str]): The list of lemmas.
|
||||
|
|
Loading…
Reference in New Issue
Block a user