mlr_learners_classif.rpf: Classification Random Planted Forest Learner

mlr_learners_classif.rpfR Documentation

Classification Random Planted Forest Learner

Description

Random Planted Forest: A directly interpretable tree ensemble.

Calls randomPlantedForest::rpf() from 'randomPlantedForest'.

Initial parameter values

  • loss:

    • Actual default: "L2".

    • Initial value: "exponential".

    • Reason for change: Using "L2" (or "L1") loss does not guarantee predictions are valid probabilities and more akin to the linear predictor of a GLM.

Custom mlr3 parameters

  • max_interaction:

    • This hyperparameter can alternatively be set via max_interaction_ratio as max_interaction = max(ceiling(max_interaction_ratio * n_features), 1). The parameter max_interaction_limit can optionally be set as an upper bound, such that max_interaction_ratio * min(n_features, max_interaction_limit) is used instead. This is analogous to mtry.ratio in classif.ranger, with max_interaction_limit as an additional constraint. The parameter max_interaction_limit is initialized to Inf.

Dictionary

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

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

Meta Information

  • Task type: “classif”

  • Predict Types: “response”, “prob”

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

  • Required Packages: mlr3, randomPlantedForest

Parameters

Id Type Default Levels Range
max_interaction integer 1 [0, \infty)
max_interaction_ratio numeric - [0, 1]
max_interaction_limit integer - [1, \infty)
ntrees integer 50 [1, \infty)
splits integer 30 [1, \infty)
split_try integer 10 [1, \infty)
t_try numeric 0.4 [0, 1]
loss character L2 L1, L2, logit, exponential -
delta numeric 1 [0, 1]
epsilon numeric 0.1 [0, 1]
deterministic logical FALSE TRUE, FALSE -
nthreads integer 1 [1, \infty)
cv logical FALSE TRUE, FALSE -
purify logical FALSE TRUE, FALSE -

Installation

Package 'randomPlantedForest' is not on CRAN and has to be installed from GitHub via remotes::install_github("PlantedML/randomPlantedForest").

Super classes

mlr3::Learner -> mlr3::LearnerClassif -> LearnerClassifRandomPlantedForest

Methods

Public methods

Inherited methods

Method new()

Creates a new instance of this R6 class.

Usage
LearnerClassifRandomPlantedForest$new()

Method clone()

The objects of this class are cloneable with this method.

Usage
LearnerClassifRandomPlantedForest$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

Author(s)

jemus42

References

Hiabu, Munir, Mammen, Enno, Meyer, T. J (2023). “Random Planted Forest: a directly interpretable tree ensemble.” arXiv preprint arXiv:2012.14563. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.48550/ARXIV.2012.14563")}.

See Also

Examples

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

# available parameters:
learner$param_set$ids()

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