Package mia.clustering.ch09

Source Code of mia.clustering.ch09.KMeansExample

/*
* Source code for Listing 9.1
*
*/
package mia.clustering.ch09;

import java.util.ArrayList;
import java.util.List;

import org.apache.mahout.clustering.kmeans.Cluster;
import org.apache.mahout.clustering.kmeans.KMeansClusterer;
import org.apache.mahout.common.distance.EuclideanDistanceMeasure;
import org.apache.mahout.math.Vector;

public class KMeansExample {

  public static void main(String[] args) {
    List<Vector> sampleData = new ArrayList<Vector>();

    RandomPointsUtil.generateSamples(sampleData, 400, 1, 1, 3);
    RandomPointsUtil.generateSamples(sampleData, 300, 1, 0, 0.5);
    RandomPointsUtil.generateSamples(sampleData, 300, 0, 2, 0.1);

    int k = 3;
    List<Vector> randomPoints = RandomPointsUtil.chooseRandomPoints(
        sampleData, k);
    List<Cluster> clusters = new ArrayList<Cluster>();

    int clusterId = 0;
    for (Vector v : randomPoints) {
      clusters.add(new Cluster(v, clusterId++, new EuclideanDistanceMeasure()));
    }

    List<List<Cluster>> finalClusters = KMeansClusterer.clusterPoints(
        sampleData, clusters, new EuclideanDistanceMeasure(), 3, 0.01);
    for (Cluster cluster : finalClusters.get(finalClusters.size() - 1)) {
      System.out.println("Cluster id: " + cluster.getId() + " center: "
          + cluster.getCenter().asFormatString());
    }
  }

}
TOP

Related Classes of mia.clustering.ch09.KMeansExample

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.