I just came across this StackOverflow post on word counts in a doc2vec model vocabulary. I wonder if there is another method to retrieve the word frequency, other than
for word, vocab_obj in model.wv.vocab.items():
print(str(word) + str(vocab_obj.count))
Maybe there is a more elegant way via the gensim library (i.e. output words and frequencies in a txt file)?