NLP - Word Embeddings
Consider the following Python code using Gensim's FastText:
from gensim.models import FastText sentences = [['data', 'science'], ['machine', 'learning']] model = FastText(sentences, vector_size=8, window=2, min_count=1, epochs=4) print(model.wv['machine'].shape)What will be the output?
