Examples of LambdaMART


Examples of edu.uci.jforestsx.learning.boosting.LambdaMART

  @Override
  protected LearningModule getLearningModule(String name) throws Exception {
    int maxTrainInstances = getMaxTrainInstances();   
    if (name.equals("LambdaMART")) {
      LambdaMART learner = new LambdaMART();
      learner.init(configHolder, (RankingDataset) trainDataset, maxTrainInstances, (validDataset != null ? validDataset.numInstances
          : trainDataset.numInstances), evaluationMetric);
      return learner;
    } else {
      return super.getLearningModule(name);
    }
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.