Package edu.uci.jforestsx.learning.trees.decision

Examples of edu.uci.jforestsx.learning.trees.decision.RandomForest


    } else if (name.equals("RegressionTree")) {
      RegressionTreeLearner learner = new RegressionTreeLearner();
      learner.init(trainDataset, configHolder, maxNumTrainInstances);
      return learner;
    } else if (name.equals("RandomForest")) {
      RandomForest learner = new RandomForest();
      learner.init(trainDataset, configHolder, maxNumTrainInstances, maxNumValidInstances, evaluationMetric);
      return learner;
    } else {
      throw new Exception("Unknown algorithm: " + name);
    }
  }
View Full Code Here

TOP

Related Classes of edu.uci.jforestsx.learning.trees.decision.RandomForest

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.