Hi,
I am working on a very simple k-means clustering example. Is there a way to
run clustering algorithms in mahout without using Hadoop? I am reading the
book "Mahout in Action". In chapter 7, the hello world clustering code
example, they use
==
KMeansDriver.run(conf, new Path("testdata/points"), new
Path("testdata/clusters"),
new Path("output"), new EuclideanDistanceMeasure(), 0.001, 10,
true, false);
==
to run the k-means algorithm. How can I run the k-means algorithm without
Hadoop?
Thanks!
Shan