Examples of clusterInstance()


Examples of weka.clusterers.AbstractClusterer.clusterInstance()

            assert(txn_trace != null);
            Integer base_partition = this.getBasePartition(txn_trace);
            // Skip any txn that executes on a partition that we're not evaluating
            if (this.all_partitions.contains(base_partition) == false) continue;
           
            int c = (int)clusterer.clusterInstance(inst);

            // Debug Stuff
//            Pair<Long, Integer> key = Pair.of((Long)txn_trace.getParam(1), ((Object[])txn_trace.getParam(4)).length);
//            if (key_to_cluster.containsKey(key) == false) key_to_cluster.put(key, new Histogram());
//            key_to_cluster.get(key).put(c);
View Full Code Here

Examples of weka.clusterers.AbstractClusterer.clusterInstance()

            assertNotNull(txn_trace);
            Integer base_partition = p_estimator.getBasePartition(txn_trace);
            assertNotNull(base_partition);
            assertEquals(base_partition.intValue(), (int)inst.value(base_partition_idx));

            int c = clusterer.clusterInstance(inst);
            Histogram<Integer> h = p_c_xref.get(base_partition);
            if (h == null) {
                h = new ObjectHistogram<Integer>();
                p_c_xref.put(base_partition, h);
            }
View Full Code Here

Examples of weka.clusterers.EM.clusterInstance()

    try {
      clusterer.setOptions(options);
      clusterer.buildClusterer(dataset);
      Enumeration e = dataset.enumerateInstances();
      while (e.hasMoreElements()) {
        clusters.add(clusterer.clusterInstance((Instance) e
            .nextElement()));
      }
      ClusteringResult result = new ClusteringResult(clusters, null,
          clusterer.numberOfClusters(), parameters.getParameter(
              EMClustererParameters.visualization).getValue());
View Full Code Here

Examples of weka.clusterers.FarthestFirst.clusterInstance()

    try {
      clusterer.setOptions(options);
      clusterer.buildClusterer(dataset);
      Enumeration e = dataset.enumerateInstances();
      while (e.hasMoreElements()) {
        clusters.add(clusterer.clusterInstance((Instance) e
            .nextElement()));
      }
      ClusteringResult result = new ClusteringResult(clusters, null,
          clusterer.numberOfClusters(), parameters.getParameter(
              EMClustererParameters.visualization).getValue());
View Full Code Here

Examples of weka.clusterers.SimpleKMeans.clusterInstance()

    try {
      clusterer.setOptions(options);
      clusterer.buildClusterer(dataset);
      Enumeration e = dataset.enumerateInstances();
      while (e.hasMoreElements()) {
        clusters.add(clusterer.clusterInstance((Instance) e
            .nextElement()));
      }
      ClusteringResult result = new ClusteringResult(clusters, null,
          clusterer.numberOfClusters(), parameters.getParameter(
              EMClustererParameters.visualization).getValue());
View Full Code Here
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.