Skip to contents

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

IdTypeDefaultLevelsRange
baselearnercharacterbbsbbs, bols, btree-
dfbaseinteger4\((-\infty, \infty)\)
offsetnumericNULL\((-\infty, \infty)\)
familycharacterBinomialBinomial, AdaExp, AUC, custom-
custom.familyuntyped--
linkcharacterlogitlogit, probit-
typecharacteradaboostglm, adaboost-
mstopinteger100\((-\infty, \infty)\)
nunumeric0.1\((-\infty, \infty)\)
riskcharacterinbaginbag, oobag, none-
oobweightsuntyped-
tracelogicalFALSETRUE, FALSE-
stopinternuntypedFALSE-
na.actionuntyped:: , stats , na.omit-

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

Author

be-marc

Super classes

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

Methods

Inherited methods


Method new()

Create a LearnerClassifGAMBoost object.


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.

Examples

learner = mlr3::lrn("classif.gamboost")
print(learner)
#> <LearnerClassifGAMBoost:classif.gamboost>: Boosted Generalized Additive Model
#> * Model: -
#> * Parameters: list()
#> * Packages: mlr3, mlr3extralearners, mboost
#> * Predict Types:  [response], prob
#> * Feature Types: integer, numeric, factor, ordered
#> * Properties: twoclass, weights

# available parameters:
learner$param_set$ids()
#>  [1] "baselearner"   "dfbase"        "offset"        "family"       
#>  [5] "custom.family" "link"          "type"          "mstop"        
#>  [9] "nu"            "risk"          "oobweights"    "trace"        
#> [13] "stopintern"    "na.action"