NLP - Word Embeddings
Given the following code snippet using Gensim's Word2Vec with CBOW, what will be the shape of the learned word vectors?
from gensim.models import Word2Vec
sentences = [['cat', 'sat', 'on', 'mat'], ['dog', 'barked', 'loudly']]
model = Word2Vec(sentences, vector_size=50, window=2, sg=0, min_count=1)
print(model.wv['cat'].shape)
