3

Is there efficient way clustering text documents? I thought about K-Means but it seems to be too time consuming. Can somebody provide me with an efficient method?

Radi
  • 6,332
  • 17
  • 59
  • 89
KNsiva
  • 357
  • 1
  • 7
  • 19

2 Answers2

1

clustering algorithm depends on your dataset , do you want to write a algorithm in java to cluster your documents ? , you can use weka instead of reinvent the wheel and to try another clustering algorithm on your dataset .

Radi
  • 6,332
  • 17
  • 59
  • 89
1

If K-Means actually does the job, and simply seems to be slow, then why not try to make it faster? The method I use is random-pausing.

It's usually the case that there is lots of room for speedup, in code you wouldn't have thought to be a problem, without changing the basic algorithm. Here's an example.

Community
  • 1
  • 1
Mike Dunlavey
  • 39,349
  • 13
  • 88
  • 132