I have performed hard clustering(using tf-idf weights) on a text corpus and obtained ~= 200 clusters. If I want to obtain the topic of each cluster, how do i do this?
I have tried using LDA on the raw text corpus(pre-clustering) and obtained many topics, however I am unsure on how to map these topics onto each of my existing clusters. Is there any other way to recommend or is LDA the right approach, and how do i proceed with it?
Online material shows only how to map lda topics onto document sentences, not pre-existing clusters. If I do so, and segment those sentences according to their assigned topics, i will get a different result from my original clusters(this is not ideal).
Thank you for the help in advance, pardon if there are any conceptual errors as I am rather new to NLP.