Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Please help me how to perform word clustering using k-means algorithm in java. From the set of documents, I get word and its frequency count. Then i dont know how to start for clustering.I already search google. But no idea. Please tell me steps to perform word clustering. Very needful now. Thanks in advance.

share|improve this question
You should work on your accept-rate. – missingfaktor Sep 9 '10 at 13:24

2 Answers

"Programming Collective Intelligence" by Toby Segaran has a wonderful chapter on how to do this. The examples are in Python, but they should be easy to port to Java.

share|improve this answer

In clustering most important thing is to build a method, which check how to things (for example) are "close" together. E.g. is you are interested in string with same lang, this could be like:

int calculateDistance(String s1, String s2) {
     return Math.abs(s1.length() - s2.length());
}

Then I'm not so sure, but in can be like this: 1. choose (can be randomly) first k string, 2. iterate for all string, and relate them to their "nearest" string.

Then can be something, like choosing from every "cluster" middle of it, and start it again. I don't remember it for 100% but I thing it is good way to start.

And remember, that most important is the method calculateDistance()!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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