I’m using following loglikelihood formula to compare the similarity between a document and a cluster: log p(d|c) = sum (c(w,d) * log p(w|c)); c(w,d) is the frequency of a word in a document and p(w|c) is the likelihood of word w being generated by a cluster c.
The problem is that based on this similarity the document is often assigned to the wrong cluster. If I assign the document to the cluster with the highest log p(d|c) (as it is usually negative value I take –log p(d|c)) then it will be the cluster that contains a lot of words from a document but the probability of these words in the cluster is low. If I assign the document to the cluster with the lowest log p(d|c) then it will be the cluster that has intersection with a document only in one word. Can someone explain me how to use the loglikelihood correctly? I try to implement this function in java. I already looked on google scholar, but didn’t found suitable explanation of loglikelihood in text mining. Thanks in advance