I am having trouble converting a fast FastText vector back to a word. Here is my python code:
from gensim.models import KeyedVectors
en_model = KeyedVectors.load_word2vec_format('wiki.en/wiki.en.vec')
vect = en_model.get_vector("turtles")
How can I take the vector (especially an arbitrary vector with the proper dimensions) and have it spit out a word?