NLP-with-Python
NLP-with-Python copied to clipboard
About code
for idx, topic in lda_model_tfidf.print_topics(-1): print('Topic: {} Word: {}'.format(idx, topic)) whats the significance of -1 in first line...
'print_topics(-1)' prints the top words for all topics in the LDA model.