-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Closed
Labels
bugBugs and behaviour differing from documentationBugs and behaviour differing from documentation
Description
I get different word vectors depending how I load the data model. For example:
import spacy.en
import spacy
import numpy
nlp1 = spacy.en.English()
nlp2 = spacy.load('en')
word = 'shop'
# The following assert fails:
assert(numpy.allclose(nlp1.vocab[word].vector, nlp2.vocab[word].vector))
My Environment
- OS X 10.11.6
- Python 3.5.2
- spacy 1.2.0
Metadata
Metadata
Assignees
Labels
bugBugs and behaviour differing from documentationBugs and behaviour differing from documentation