I would like to clarify the relationship between latent Dirichlet allocation (LDA) and the generic task of document clustering.

The LDA analysis tends to output the topic proportions for each document. If my understanding is correct, this is not the direct result of document clustering. However, we can treat this probability proportions as a feature reprsentation for each document. Afterwards, we can invoke other established clustering method based on the feature configurations generated by LDA analysis.

Is my understanding correct? Thanks.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Yes, you can treat the output of LDA as features for your documents; this is exactly what Blei, Ng and Jordan did in the paper that introduced LDA. They did it for classification, but for clustering the procedure is the same.

(In machine learning terminology, this use of LDA is called dimensionality reduction because it reduces the feature space's number of dimensions from |V|, the vocabulary size, to some number k of topics selected by the user.)

link|improve this answer
But in their paper, they claimed to use posterior dirichlet parameter $\gamma(w)$, which is different with probability proportion here. I agree that the underlying thoughts are the same in terms of feature reduction. But my concern is that why they choose to use $\gamma(w)$, which seems to me that it does not have very clear physical meaning like probability proportion. I am very curious about their underlying reasons. But I did not got clear explanations in the paper. – user785099 Jul 7 '11 at 14:55
@user: I'm not too familiar with the LDA internals. I suggest you try clustering on the proportions, and if it doesn't work, ask over at metaoptimize.com what the reasons for this choice are. Post a link here if you do, I'm very interested. – larsmans Jul 7 '11 at 15:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.