Examples of computePredictions()


Examples of org.apache.mahout.df.callback.ForestPredictions.computePredictions()

     
      FileSystem fs = dataPath.getFileSystem(getConf());
      int[] labels = Data.extractLabels(dataset, fs, dataPath);
     
      log.info("oob error estimate : "
                           + ErrorEstimate.errorRate(labels, callback.computePredictions(rng)));
    }
   
    return forest;
  }
 
View Full Code Here

Examples of org.apache.mahout.df.callback.ForestPredictions.computePredictions()

     
      FileSystem fs = dataPath.getFileSystem(getConf());
      int[] labels = Data.extractLabels(dataset, fs, dataPath);
     
      log.info("oob error estimate : "
                           + ErrorEstimate.errorRate(labels, callback.computePredictions(rng)));
    }
   
    return forest;
  }
 
View Full Code Here

Examples of org.apache.mahout.df.callback.ForestPredictions.computePredictions()

      FileSystem fs = dataPath.getFileSystem(getConf());
      int[] labels = Data.extractLabels(dataset, fs, dataPath);
     
      log.info("oob error estimate : {}",
               ErrorEstimate.errorRate(labels, callback.computePredictions(rng)));
    }
   
    return forest;
  }
 
View Full Code Here

Examples of org.apache.mahout.df.callback.ForestPredictions.computePredictions()

    log.info("Growing a forest with m={}", m);
    DecisionForest forestM = forestBuilder.build(nbtrees, errorM);
    sumTimeM += System.currentTimeMillis() - time;
    numNodesM += forestM.nbNodes();
   
    double oobM = ErrorEstimate.errorRate(trainLabels, errorM.computePredictions(rng)); // oob error estimate
                                                                                        // when m = log2(M)+1
   
    // grow a forest with m=1
    ForestPredictions errorOne = new ForestPredictions(train.size(), nblabels); // oob error when using m = 1
    treeBuilder.setM(1);
View Full Code Here

Examples of org.apache.mahout.df.callback.ForestPredictions.computePredictions()

    log.info("Growing a forest with m=1");
    DecisionForest forestOne = forestBuilder.build(nbtrees, errorOne);
    sumTimeOne += System.currentTimeMillis() - time;
    numNodesOne += forestOne.nbNodes();
   
    double oobOne = ErrorEstimate.errorRate(trainLabels, errorOne.computePredictions(rng)); // oob error
                                                                                            // estimate when m
                                                                                            // = 1
   
    // compute the test set error (Selection Error), and mean tree error (One Tree Error),
    // using the lowest oob error forest
View Full Code Here

Examples of org.apache.mahout.df.callback.ForestPredictions.computePredictions()

      forestOne.classify(test, errorOne);
    } else {
      forestOne.classify(test, new MultiCallback(testError, treeError, errorOne));
    }
   
    sumTestErr += ErrorEstimate.errorRate(testLabels, testError.computePredictions(rng));
    sumOneErr += ErrorEstimate.errorRate(testLabels, errorOne.computePredictions(rng));
    sumTreeErr += treeError.meanTreeError();
  }
 
  public static void main(String[] args) throws Exception {
View Full Code Here

Examples of org.apache.mahout.df.callback.ForestPredictions.computePredictions()

     
      FileSystem fs = dataPath.getFileSystem(getConf());
      int[] labels = Data.extractLabels(dataset, fs, dataPath);
     
      log.info("oob error estimate : "
                           + ErrorEstimate.errorRate(labels, callback.computePredictions(rng)));
    }

    // store the decision forest in the output path
    Path forestPath = new Path(outputPath, "forest.seq");
    log.info("Storing the forest in: " + forestPath);
View Full Code Here

Examples of org.apache.mahout.df.callback.ForestPredictions.computePredictions()

    long time = System.currentTimeMillis();
    log.info("Growing a forest with m=" + m);
    DecisionForest forestM = forestBuilder.build(nbtrees, errorM);
    sumTimeM += System.currentTimeMillis() - time;

    double oobM = ErrorEstimate.errorRate(trainLabels, errorM.computePredictions(rng)); // oob error estimate when m = log2(M)+1

    // grow a forest with m=1
    ForestPredictions errorOne = new ForestPredictions(dataSize, nblabels); // oob error when using m = 1
    treeBuilder.setM(1);
View Full Code Here

Examples of org.apache.mahout.df.callback.ForestPredictions.computePredictions()

    time = System.currentTimeMillis();
    log.info("Growing a forest with m=1");
    DecisionForest forestOne = forestBuilder.build(nbtrees, errorOne);
    sumTimeOne += System.currentTimeMillis() - time;

    double oobOne = ErrorEstimate.errorRate(trainLabels, errorOne.computePredictions(rng)); // oob error estimate when m = 1

    // compute the test set error (Selection Error), and mean tree error (One Tree Error),
    // using the lowest oob error forest
    ForestPredictions testError = new ForestPredictions(dataSize, nblabels); // test set error
    MeanTreeCollector treeError = new MeanTreeCollector(train, nbtrees); // mean tree error
View Full Code Here

Examples of org.apache.mahout.df.callback.ForestPredictions.computePredictions()

      FileSystem fs = dataPath.getFileSystem(getConf());
      int[] labels = Data.extractLabels(dataset, fs, dataPath);

      log.info("oob error estimate : "
          + ErrorEstimate.errorRate(labels, callback.computePredictions(rng)));
    }

    return forest;
  }
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.