Warm tip: This article is reproduced from serverfault.com, please click

How to save gensim LDA topics output to csv along with the scores?

发布于 2015-06-08 20:27:31

How to save the output? I am using the following code:

%time lda1 = models.LdaModel(corpus1, num_topics=20, id2word=dictionary1, update_every=5, chunksize=10000, passes=100)
Questioner
VP10
Viewed
0
Feng Mai 2018-06-15 06:25:29

To export topic mixtures of each document to a csv file:

import pandas as pd

mixture = [dict(lda_model[x]) for x in corpus1]
pd.DataFrame(mixture).to_csv("topic_mixture.csv")

To export the top words for each topic to a csv file:

top_words_per_topic = []
for t in range(lda_model.num_topics):
    top_words_per_topic.extend([(t, ) + x for x in lda_model.show_topic(t, topn = 5)])

pd.DataFrame(top_words_per_topic, columns=['Topic', 'Word', 'P']).to_csv("top_words.csv")

The CSV file will have the following format

Topic Word  P  
0     w1    0.004437  
0     w2    0.003553  
0     w3    0.002953  
0     w4    0.002866  
0     w5    0.008813  
1     w6    0.003393  
1     w7    0.003289  
1     w8    0.003197 
...