Downloaded prodigy, installed with wheel on Mac OSX with Anaconda. Spacy is set to 2.0.11 and works fine with:
import spacy
nlp = spacy.load("en_vectors_web_lg")
But when using prodigy with:
$ prodigy terms.teach swear_words en_vectors_web_lg --seeds swear_words.txt
I get an error:
ValueError: [E010] Word vectors set to length 0. This may be because you don't have a model installed or loaded, or because your model doesn't include word vectors. For more info, see the docs:
But if I run the above prodigy command but as:
$ prodigy terms.teach swear_words en_core_web_lg --seeds swear_words.txt
It works fine, what are the reasons for this? Or does ‘en_core_web_lg’ also encompass the 300glove word-vectors that ‘en_vectors_web_lg’ offers?
Any help is greatly appreciated