예제 #1
0
파일: CVPack.java 프로젝트: dmenin/xgboost
 /**
  * evaluation
  *
  * @param iter iteration num
  * @param eval customized eval
  * @return
  * @throws org.dmlc.xgboost4j.util.XGBoostError
  */
 public String eval(int iter, IEvaluation eval) throws XGBoostError {
   return booster.evalSet(dmats, names, iter, eval);
 }
예제 #2
0
파일: CVPack.java 프로젝트: dmenin/xgboost
 /**
  * update one iteration
  *
  * @param iter iteration num
  * @param obj customized objective
  * @throws org.dmlc.xgboost4j.util.XGBoostError
  */
 public void update(int iter, IObjective obj) throws XGBoostError {
   booster.update(dtrain, iter, obj);
 }
예제 #3
0
파일: CVPack.java 프로젝트: dmenin/xgboost
 /**
  * evaluation
  *
  * @param iter iteration num
  * @return
  * @throws org.dmlc.xgboost4j.util.XGBoostError
  */
 public String eval(int iter) throws XGBoostError {
   return booster.evalSet(dmats, names, iter);
 }
예제 #4
0
파일: CVPack.java 프로젝트: dmenin/xgboost
 /**
  * update one iteration
  *
  * @param iter iteration num
  * @throws org.dmlc.xgboost4j.util.XGBoostError
  */
 public void update(int iter) throws XGBoostError {
   booster.update(dtrain, iter);
 }