python -m gensim.scripts.make_wiki
corpus_bow = corpora.MmCorpus('\wiki_bow.mm')
tfidf = models.TfidfModel(corpus_bow)
models.TfidfModel.save(tfidf, '\tfidf.model')Is that correct? Or is the tfidf model already generated through the script and I didn't see it?
Another question, as already mentioned in the tutorial: Has someone a more clean corpus of the Wikipedia or a "better" script to compute the Wikipedia corpus?
Thanks in advance.
Is that correct? Or is the tfidf model already generated through the script and I didn't see it?
Another question, as already mentioned in the tutorial: Has someone a more clean corpus of the Wikipedia or a "better" script to compute the Wikipedia corpus?
Thanks in advance.