Re: How KMeans clustering works in Mahout 0.8?

2014-01-27 Thread Andrew Musselman
In the source code you could take a look in the org.apache.mahout.clustering.kmeans package to get a start, if you want to understand the implementation. If you just want to run some clustering, take a look at examples/bin/cluster-reuters.sh which has an option to run kmeans. On Mon, Jan 27, 201

How KMeans clustering works in Mahout 0.8?

2014-01-27 Thread Saeed Adel Mehraban
I read Mahout KMeans Design of implementation and it seems to be clear wrt map-reduce paradigm. But when I refer to source code, I can not find the mapper, reducer, combiner or almost anything mentioned in the official website. What happened here and what I need to do to understand KMeans implement