mirror of https://github.com/explosion/spaCy.git
Fix vector loading for ud_train
This commit is contained in:
parent
044397e269
commit
8902754f0b
|
@ -256,7 +256,7 @@ def load_nlp(corpus, config):
|
||||||
lang = corpus.split('_')[0]
|
lang = corpus.split('_')[0]
|
||||||
nlp = spacy.blank(lang)
|
nlp = spacy.blank(lang)
|
||||||
if config.vectors:
|
if config.vectors:
|
||||||
nlp.vocab.from_disk(config.vectors / 'vocab')
|
nlp.vocab.from_disk(Path(config.vectors) / 'vocab')
|
||||||
return nlp
|
return nlp
|
||||||
|
|
||||||
def initialize_pipeline(nlp, docs, golds, config):
|
def initialize_pipeline(nlp, docs, golds, config):
|
||||||
|
|
Loading…
Reference in New Issue