NLP - Word Embeddings
Given the following Python code using Gensim FastText model:
from gensim.models import FastText sentences = [['cat', 'sat', 'on', 'mat'], ['dog', 'barked']] model = FastText(sentences, vector_size=10, window=3, min_count=1, epochs=5) print(model.wv['cat'])What will be the output type of
model.wv['cat']?