mirror of https://github.com/explosion/spaCy.git
Add lookup argument to Lemmatizer.load
This commit is contained in:
parent
95f6174516
commit
95f866f99f
|
@ -7,8 +7,8 @@ from .symbols import VerbForm_inf, VerbForm_none, Number_sing, Degree_pos
|
||||||
|
|
||||||
class Lemmatizer(object):
|
class Lemmatizer(object):
|
||||||
@classmethod
|
@classmethod
|
||||||
def load(cls, path, index=None, exc=None, rules=None):
|
def load(cls, path, index=None, exc=None, rules=None, lookup=None):
|
||||||
return cls(index or {}, exc or {}, rules or {})
|
return cls(index or {}, exc or {}, rules or {}, lookup or {})
|
||||||
|
|
||||||
def __init__(self, index=None, exceptions=None, rules=None, lookup=None):
|
def __init__(self, index=None, exceptions=None, rules=None, lookup=None):
|
||||||
self.index = index if index is not None else {}
|
self.index = index if index is not None else {}
|
||||||
|
|
Loading…
Reference in New Issue