NLP - Word Embeddings
What will be the output of the following code snippet?
from gensim.models import Word2Vec
sentences = [['hello', 'world'], ['hello', 'machine', 'learning']]
model = Word2Vec(sentences, vector_size=10, window=1, sg=1, min_count=1)
print(len(model.wv))
