I run K-Means using:
KMeansDriver.run(new Path("./bd.seq.file"), new Path(clustersLoc), new Path("output"),
new EuclideanDistanceMeasure(), 0.001, 10, true, 0.5, false);
My aim is to know what cluster each of my original vectors belong to. From what I understand, this is supposed to be in output/clusteredPoints/part-m-00000, however this file looks like an empty (120 bytes) sequence file.
What gives?