项目作者: a-hanf

项目描述 :
Automated machine learning in mlr3
高级语言: R
项目地址: git://github.com/a-hanf/mlr3automl.git
创建时间: 2020-05-21T14:53:03Z
项目社区:https://github.com/a-hanf/mlr3automl

开源协议:GNU Lesser General Public License v3.0

下载


mlr3automl

mlr3automl is an AutoML package for R based on mlr3.
The first version is up and running, feedback is very welcome!

Watch our “UseR! 2021” presentation on Youtube for an
introduction. The slides are here.

UseR! 2021 mlr3automl

Installation

Make sure to have the latest versions of the relevant mlr3 packages.

  1. devtools::install_github('https://github.com/mlr-org/mlr3extralearners')
  2. devtools::install_github('https://github.com/a-hanf/mlr3automl', dependencies = TRUE)

Using mlr3automl

You can create your AutoML learner by passing a classification or regression Task from mlr3.

  1. iris_task <- tsk('iris')
  2. model <- AutoML(iris_task)
  3. model$train()

Documentation

The vignette is a good starting point.

For the function reference, check the roxygen documentation:

  1. ?mlr3automl::AutoML