Fix init-model if no vectors provided

This commit is contained in:
Matthew Honnibal 2018-06-25 17:58:45 +02:00
parent c4698f5712
commit 664f89327a
1 changed files with 6 additions and 5 deletions

View File

@ -90,6 +90,7 @@ def create_model(lang, probs, oov_prob, clusters, vectors_data, vector_keys, pru
lexeme.cluster = 0
lex_added += 1
nlp.vocab.cfg.update({'oov_prob': oov_prob})
if vector_keys is not None:
for word in vector_keys:
if word not in nlp.vocab:
lexeme = nlp.vocab[word]