Adding the CURE Clustering Algorithm to WEKA

I wrote a java program to perform CURE clustering. I want to add this program to weka as a clustering algorithm and visualize the clustering. Has anyone already implemented it on weka? Any links to this would be very helpful. How to do it?

+7
source share
2 answers

Weka is very weak in clustering. In fact, clustering in Weka practically does not exist. Implementations, for example. OPTICS - these are, in fact, external programs that are just called, but not integrated at all. Perhaps you should take a look at ELKI, http://elki.dbs.ifi.lmu.de/ , which is similar to Weka for detecting clustering and outlier detection (it has no classification, though - this is where Weka is strong). This one doesn't have a CURE yet. But a dozen other clusters and visualizations for them.

+3
source

There is a CURE on Weka project here: http://code.google.com/p/data-mining-cure-algorithm

+2
source

All Articles