knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

Single-Criteria Optimization AutoxgboostMC

axgb = AutoxgboostMC$new(measures = list(auc))
axgb$fit(pid.task, time.budget = 5L)
p = axgb$predict(iris.task)

Multi-Criteria Optimization AutoxgboostMC

axgb = AutoxgboostMC$new(measures = list(auc, timepredict))
axgb$fit(pid.task, time.budget = 5L)
p = axgb$predict(iris.task)

axgb$optim.result$pareto.front
axgb$optim.result$pareto.set
axgb$optim.result$pareto.inds


ja-thomas/autoxgboostMC documentation built on May 17, 2019, 4:22 a.m.