I want to print the number of dimensions for each word vector from the spacy language model 'en'. I installed both the language model and spacy. I have following lines of code
import spacy
nlp =spacy.load('en')
dim = nlp.vocab.vectors_length
print(dim)
It gives 0.
Can someone help me with this?