Unable to find KMeans Cluster class

2012-08-01 Thread Abhinav M Kulkarni
Hi, I have following code snippet from the book 'Hadoop in Action': Vector vec = vectors.get(i); Cluster cluster = new Cluster(vec, i, new EuclideanDistanceMeasure()); I am unable to find Cluster class anywhere with constructor as above. In fact under package org.apache.mahout.clustering

Re: Unable to find KMeans Cluster class

2012-08-01 Thread Sean Owen
That may be a typo in the book. I don't know if it was non-abstract in the past. But try against version 0.5 to be sure. I don't know what the replacement code is if so but someone else here likely does. On Wed, Aug 1, 2012 at 9:20 PM, Abhinav M Kulkarni abhinavkulka...@gmail.com wrote: Hi,

Re: Unable to find KMeans Cluster class

2012-08-01 Thread Abhinav M Kulkarni
Okay, I used Kluster class under org.apache.mahout.clustering.kmeans package. This implements interface Cluster. On 08/01/2012 01:25 PM, Sean Owen wrote: That may be a typo in the book. I don't know if it was non-abstract in the past. But try against version 0.5 to be sure. I don't know what