mlr_learners_classif.gamboost: Boosted Generalized Additive Classification Learner

mlr_learners_classif.gamboostR Documentation

Boosted Generalized Additive Classification Learner

Description

Fit a generalized additive classification model using a boosting algorithm. Calls mboost::gamboost() from mboost.

Dictionary

This Learner can be instantiated via the dictionary mlr_learners or with the associated sugar function lrn():

mlr_learners$get("classif.gamboost")
lrn("classif.gamboost")

Meta Information

  • Task type: “classif”

  • Predict Types: “response”, “prob”

  • Feature Types: “integer”, “numeric”, “factor”, “ordered”

  • Required Packages: mlr3, mlr3extralearners, mboost

Parameters

Id Type Default Levels Range
baselearner character bbs bbs, bols, btree -
dfbase integer 4 (-\infty, \infty)
offset numeric NULL (-\infty, \infty)
family character Binomial Binomial, AdaExp, AUC, custom -
custom.family untyped - -
link character logit logit, probit -
type character adaboost glm, adaboost -
mstop integer 100 (-\infty, \infty)
nu numeric 0.1 (-\infty, \infty)
risk character inbag inbag, oobag, none -
oobweights untyped NULL -
trace logical FALSE TRUE, FALSE -
stopintern untyped FALSE -
na.action untyped stats::na.omit -

Super classes

mlr3::Learner -> mlr3::LearnerClassif -> LearnerClassifGAMBoost

Methods

Public methods

Inherited methods

Method new()

Create a LearnerClassifGAMBoost object.

Usage
LearnerClassifGAMBoost$new()

Method clone()

The objects of this class are cloneable with this method.

Usage
LearnerClassifGAMBoost$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

Author(s)

be-marc

References

Bühlmann, Peter, Yu, Bin (2003). “Boosting with the L 2 loss: regression and classification.” Journal of the American Statistical Association, 98(462), 324–339.

See Also

Examples

learner = mlr3::lrn("classif.gamboost")
print(learner)

# available parameters:
learner$param_set$ids()

mlr-org/mlr3extralearners documentation built on April 13, 2024, 5:25 a.m.