Package website: release | dev
mlr3automl is the Automated Machine Learning (AutoML) package of the mlr3 ecosystem.
Install the development version from GitHub:
remotes::install_github("mlr-org/mlr3automl")
library("mlr3automl")
rush_plan(n_workers = 2)
task = tsk("spam")
learner = lrn("classif.auto",
terminator = trm("evals", n_evals = 100)
)
learner$train(task)