Skip to contents

Classification auto learner.

Value

Object of class R6::R6Class and LearnerClassifAutoCatboost.

Super classes

mlr3::Learner -> LearnerAuto -> LearnerClassifAuto -> LearnerClassifAutoCatboost

Methods

Inherited methods


LearnerClassifAutoCatboost$new()

Creates a new instance of this R6 class.

Usage

LearnerClassifAutoCatboost$new(id = "classif.auto_catboost", rush = NULL)

Arguments

id

(character(1))
Identifier for the new instance.

rush

rush::Rush
Rush instance.


LearnerClassifAutoCatboost$clone()

The objects of this class are cloneable with this method.

Usage

LearnerClassifAutoCatboost$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

if (mlr3misc::require_namespaces(c("mlr3extralearners", "catboost"), quietly = TRUE)) {
  learner = lrn("classif.auto_catboost")
  learner
}