Package edu.uci.jforestsx.dataset

Examples of edu.uci.jforestsx.dataset.Dataset


    if (options.has("ranking")) {
      RankingDataset dataset = new RankingDataset();
      RankingDatasetLoader.load(in, dataset);
      sample = new RankingSample(dataset);
    } else {
      Dataset dataset = new Dataset();
      DatasetLoader.load(in, dataset);
      sample = new Sample(dataset);
    }
    in.close();
View Full Code Here


  protected double getMeasurement(double[] scores, Sample sample) throws Exception {
    return sample.evaluate(scores, evaluationMetric, 1.0);
  }

  protected Dataset newDataset() {
    return new Dataset();
  }
View Full Code Here

TOP

Related Classes of edu.uci.jforestsx.dataset.Dataset

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.