mirror of https://github.com/explosion/spaCy.git
fix(model): Add SPACE to es tag_map. Fixing error in morphology.pyx when SP tag is missing
This commit is contained in:
parent
daaa42dd25
commit
f0bcd0babb
|
@ -304,5 +304,5 @@ TAG_MAP = {
|
||||||
"VERB__VerbForm=Ger": {"morph": "VerbForm=Ger", "pos": "VERB"},
|
"VERB__VerbForm=Ger": {"morph": "VerbForm=Ger", "pos": "VERB"},
|
||||||
"VERB__VerbForm=Inf": {"morph": "VerbForm=Inf", "pos": "VERB"},
|
"VERB__VerbForm=Inf": {"morph": "VerbForm=Inf", "pos": "VERB"},
|
||||||
"X___": {"morph": "_", "pos": "X"},
|
"X___": {"morph": "_", "pos": "X"},
|
||||||
"SP": {"morph": "_", "pos": "SPACE"},
|
"SP": {"morph": "_", "pos": "SPACE"}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue