I'm using mahout to run k-means clustering, and I got a problem of identifying the data entry when clustering, for example I have a 100 data entries

id      data
0       0.1 0.2 0.3 0.4
1       0.2 0.3 0.4 0.5
...     ...
100     0.2 0.4 0.4 0.5

after clustering, I need to get the id back from the cluster result to see which point belongs to which cluster, but there seems no method to maintain the id.

In the official mahout example of clustering synthetic control data, only data were inputted to mahout without id like

28.7812 34.4632 31.3381 31.2834 28.9207 ...
...
24.8923 25.741  27.5532 32.8217 27.8789 ...

and the cluster result only have cluster-id and point value:

VL-539{n=38 c=[29.950, 30.459, ...
   Weight:  Point:
   1.0: [28.974, 29.026, 31.404, 27.894, 35.985...
   2.0: [24.214, 33.150, 31.521, 31.986, 29.064

but no point-id exists, so, can anyone have idea on how to add maintain a point-id when doing mahout clustering? thank you very much!

link|improve this question

75% accept rate
feedback

3 Answers

Your request is often overlooked by programmers who are not themselves practitioners... unfortunately. I do not know how to do it Mahout (so far), but I started with Apache-commons-math, which includes a K-means with the same defect. I adapted it such that your request is satisfied. You will find it here: http://code.google.com/p/noolabsimplecluster/ Additionally, don't forget to normalize (linearly) the data to the interval [0..1], otherwise any clustering algo will produce garbage!

link|improve this answer
feedback

I have a similar situation. I was using an org.apache.mahout.math.DenseVector and am now adding that DenseVector to an org.apache.mahout.math.NamedVector. However, I'm running into problems with NamedVector/VectorWritable and its use in RandomSeedGenerator.buildRandom.

link|improve this answer
feedback

The clusteredPoints directory which is produced by the kmeans contains this mapping. Please note that you should have used the -cl option to get this data.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.