mirror of https://github.com/explosion/spaCy.git
Fix init_model
This commit is contained in:
parent
4a38a26cb5
commit
6692833887
|
@ -132,7 +132,7 @@ def create_model(lang, lex_attrs, vectors_data, vector_keys, prune_vectors):
|
||||||
lexeme = nlp.vocab[word]
|
lexeme = nlp.vocab[word]
|
||||||
lexeme.is_oov = False
|
lexeme.is_oov = False
|
||||||
lex_added += 1
|
lex_added += 1
|
||||||
if vectors_data:
|
if vectors_data is not None:
|
||||||
nlp.vocab.vectors = Vectors(data=vectors_data, keys=vector_keys)
|
nlp.vocab.vectors = Vectors(data=vectors_data, keys=vector_keys)
|
||||||
if prune_vectors >= 1:
|
if prune_vectors >= 1:
|
||||||
nlp.vocab.prune_vectors(prune_vectors)
|
nlp.vocab.prune_vectors(prune_vectors)
|
||||||
|
|
Loading…
Reference in New Issue