mirror of https://github.com/explosion/spaCy.git
Revert #1389: Don't overrule rules when lemma exception is present
This commit is contained in:
parent
01ace9734d
commit
2ec2192000
|
@ -95,7 +95,6 @@ def lemmatize(string, index, exceptions, rules):
|
||||||
forms = []
|
forms = []
|
||||||
forms.extend(exceptions.get(string, []))
|
forms.extend(exceptions.get(string, []))
|
||||||
oov_forms = []
|
oov_forms = []
|
||||||
if not forms:
|
|
||||||
for old, new in rules:
|
for old, new in rules:
|
||||||
if string.endswith(old):
|
if string.endswith(old):
|
||||||
form = string[:len(string) - len(old)] + new
|
form = string[:len(string) - len(old)] + new
|
||||||
|
|
Loading…
Reference in New Issue