Hi There, I have been trying to use eta to create a topic word matrix with values to guide the LDA process.
My expectation is the the LDA will converge using the set eta and my topics and topic order will be known.
For example: if I seed:
[0][word_index] then know 0 is topic 1
[1][word_index] then know 0 is topic 2
[2][word_index] then know 0 is topic 3
[3][word_index] then know 0 is topic 4
When I take the top 10 words for each topic the order is all scrambled. They seemed to be correctly clustered but the order is all off.
topic 1 is at index 3
topic 2 is at index 0
etc..
Am I setting eta wrong?
In the end I want to use gensim like this algorithm.
https://github.com/vi3k6i5/GuidedLDA/blob/master/guidedlda/guidedlda.pyPlease help