// now run the KMeans job
Path kmeansOutput = new Path(output, "kmeans");
KMeansDriver.run(conf, getTestTempDirPath("testdata"), new Path(output,
"clusters-0-final"), kmeansOutput, measure, 0.001, 10, true, 0.0, false);
// run ClusterDumper
ClusterDumper clusterDumper = new ClusterDumper(finalClusterPath(conf,
output, 10), new Path(kmeansOutput, "clusteredPoints"));
clusterDumper.printClusters(termDictionary);
}