
Classification Gradient Boosted Decision Trees Auto Learner
Source:R/LearnerClassifAutoCatboost.R
LearnerClassifAutoCatboost.RdClassification auto learner.
Value
Object of class R6::R6Class and LearnerClassifAutoCatboost.
Super classes
mlr3::Learner -> LearnerAuto -> LearnerClassifAuto -> LearnerClassifAutoCatboost
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.rushrush::Rush
Rush instance.
Examples
if (mlr3misc::require_namespaces(c("mlr3extralearners", "catboost"), quietly = TRUE)) {
learner = lrn("classif.auto_catboost")
learner
}