Package edu.uci.jforestsx.util

Examples of edu.uci.jforestsx.util.Timer.start()


      evaluationMetric = getEvaluationMetric(trainingConfig.evaluationMetric);

      createLearner();

      Timer timer = new Timer();
      timer.start();
      Ensemble ensemble = topLearner.learn(trainSet, validSet);
      System.out.println("Time taken to build model: " + (timer.getElapsedMillis() / 1000.0) + " seconds.");
      return ensemble;

    } catch (Exception e) {
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.