In order to use the Latent semantic indexation method from gensim, I want to begin with a small "classique" example like :
import logging, gensim, bz2
id2word = gensim.corpora.Dictionary.load_from_text('wiki_en_wordids.txt')
mm = gensim.corpora.MmCorpus('wiki_en_tfidf.mm')
lsi = gensim.models.lsimodel.LsiModel(corpus=mm, id2word=id2word, num_topics=400)
etc..
My question is : How to get the corpus iterator 'wiki_en_tfidf.mm' ? Must I download it from somewhere ? I have searched on the Internet but I did not find anything. Help please ?
The first page of search results includes a link to:
https://radimrehurek.com/gensim/wiki.html
which says "First let’s load the corpus iterator and dictionary, created in the second step above."
Step 2 is