Package eu.stratosphere.example.java.clustering.KMeans

Examples of eu.stratosphere.example.java.clustering.KMeans.Centroid


public class KMeansData {

  public static DataSet<Centroid> getDefaultCentroidDataSet(ExecutionEnvironment env) {
   
    return env.fromElements(
        new Centroid(1, -31.85, -44.77),
        new Centroid(2, 35.16, 17.46),
        new Centroid(3, -5.16, 21.93),
        new Centroid(4, -24.06, 6.81)
        );
  }
View Full Code Here

TOP

Related Classes of eu.stratosphere.example.java.clustering.KMeans.Centroid

Copyright © 2018 www.massapicom. 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.