mirror of https://github.com/explosion/spaCy.git
* Don't look for index.adv in le,matizer
This commit is contained in:
parent
1ae55cb63a
commit
631c843ed1
|
@ -15,7 +15,7 @@ class Lemmatizer(object):
|
||||||
def from_dir(cls, data_dir):
|
def from_dir(cls, data_dir):
|
||||||
index = {}
|
index = {}
|
||||||
exc = {}
|
exc = {}
|
||||||
for pos in ['adj', 'adv', 'noun', 'verb']:
|
for pos in ['adj', 'noun', 'verb']:
|
||||||
index[pos] = read_index(path.join(data_dir, 'wordnet', 'index.%s' % pos))
|
index[pos] = read_index(path.join(data_dir, 'wordnet', 'index.%s' % pos))
|
||||||
exc[pos] = read_exc(path.join(data_dir, 'wordnet', '%s.exc' % pos))
|
exc[pos] = read_exc(path.join(data_dir, 'wordnet', '%s.exc' % pos))
|
||||||
rules = json.load(open(path.join(data_dir, 'vocab', 'lemma_rules.json')))
|
rules = json.load(open(path.join(data_dir, 'vocab', 'lemma_rules.json')))
|
||||||
|
|
Loading…
Reference in New Issue