By doc we can use this to read a word2vec model with genism
model = KeyedVectors.load_word2vec_format(\'word2vec.50d.txt\', binary=False)
This
The mappings from word-to-index are in the KeyedVectors vocab property, a dictionary with objects that include an index property.
KeyedVectors
vocab
index
For example:
word = "whatever" # for any word in model i = model.vocab[word].index model.index2word[i] == word # will be true