mlr_learners_regr.glmboost: Boosted Generalized Linear Regression Learner

mlr_learners_regr.glmboostR Documentation

Boosted Generalized Linear Regression Learner

Description

Fit a generalized linear regression model using a boosting algorithm. Calls mboost::glmboost() from mboost.

Dictionary

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

mlr_learners$get("regr.glmboost")
lrn("regr.glmboost")

Meta Information

  • Task type: “regr”

  • Predict Types: “response”

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

  • Required Packages: mlr3, mlr3extralearners, mboost

Parameters

Id Type Default Levels Range
offset numeric NULL (-\infty, \infty)
family character Gaussian Gaussian, Laplace, Huber, Poisson, GammaReg, NBinomial, Hurdle, custom -
custom.family untyped - -
nuirange untyped c(0, 100) -
d numeric NULL (-\infty, \infty)
center logical TRUE TRUE, FALSE -
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 -
contrasts.arg untyped - -

Super classes

mlr3::Learner -> mlr3::LearnerRegr -> LearnerRegrGLMBoost

Methods

Public methods

Inherited methods

Method new()

Create a LearnerRegrGLMBoost object.

Usage
LearnerRegrGLMBoost$new()

Method clone()

The objects of this class are cloneable with this method.

Usage
LearnerRegrGLMBoost$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("regr.glmboost")
print(learner)

# available parameters:
learner$param_set$ids()

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