Classification Random Forest Learner
Source:R/learner_randomForest_classif_randomForest.R
mlr_learners_classif.randomForest.RdRandom forest for classification.
Calls randomForest::randomForest() from randomForest.
Meta Information
Task type: “classif”
Predict Types: “response”, “prob”
Feature Types: “logical”, “integer”, “numeric”, “factor”, “ordered”
Required Packages: mlr3, mlr3extralearners, randomForest
Parameters
| Id | Type | Default | Levels | Range |
| ntree | integer | 500 | \([1, \infty)\) | |
| mtry | integer | - | \([1, \infty)\) | |
| replace | logical | TRUE | TRUE, FALSE | - |
| classwt | untyped | NULL | - | |
| cutoff | untyped | - | - | |
| strata | untyped | - | - | |
| sampsize | untyped | - | - | |
| nodesize | integer | 1 | \([1, \infty)\) | |
| maxnodes | integer | - | \([1, \infty)\) | |
| importance | character | FALSE | accuracy, gini, none | - |
| localImp | logical | FALSE | TRUE, FALSE | - |
| proximity | logical | FALSE | TRUE, FALSE | - |
| oob.prox | logical | - | TRUE, FALSE | - |
| norm.votes | logical | TRUE | TRUE, FALSE | - |
| do.trace | logical | FALSE | TRUE, FALSE | - |
| keep.forest | logical | TRUE | TRUE, FALSE | - |
| keep.inbag | logical | FALSE | TRUE, FALSE | - |
| predict.all | logical | FALSE | TRUE, FALSE | - |
| nodes | logical | FALSE | TRUE, FALSE | - |
References
Breiman, Leo (2001). “Random Forests.” Machine Learning, 45(1), 5–32. ISSN 1573-0565, doi:10.1023/A:1010933404324 .
See also
as.data.table(mlr_learners)for a table of available Learners in the running session (depending on the loaded packages).Chapter in the mlr3book: https://mlr3book.mlr-org.com/chapters/chapter2/data_and_basic_modeling.html#sec-learners
mlr3learners for a selection of recommended learners.
mlr3cluster for unsupervised clustering learners.
mlr3pipelines to combine learners with pre- and postprocessing steps.
mlr3tuning for tuning of hyperparameters, mlr3tuningspaces for established default tuning spaces.
Super classes
mlr3::Learner -> mlr3::LearnerClassif -> LearnerClassifRandomForest
Methods
Inherited methods
mlr3::Learner$base_learner()mlr3::Learner$configure()mlr3::Learner$encapsulate()mlr3::Learner$format()mlr3::Learner$help()mlr3::Learner$predict()mlr3::Learner$predict_newdata()mlr3::Learner$print()mlr3::Learner$reset()mlr3::Learner$selected_features()mlr3::Learner$train()mlr3::LearnerClassif$predict_newdata_fast()
Method importance()
The importance scores are extracted from the slot importance.
Parameter 'importance' must be set to either "accuracy" or "gini".
Returns
Named numeric().
Examples
# Define the Learner
learner = lrn("classif.randomForest", importance = "accuracy")
print(learner)
#>
#> ── <LearnerClassifRandomForest> (classif.randomForest): Random Forest ──────────
#> • Model: -
#> • Parameters: importance=accuracy
#> • Packages: mlr3, mlr3extralearners, and randomForest
#> • Predict Types: [response] and prob
#> • Feature Types: logical, integer, numeric, factor, and ordered
#> • Encapsulation: none (fallback: -)
#> • Properties: importance, multiclass, oob_error, twoclass, and weights
#> • Other settings: use_weights = 'use', predict_raw = 'FALSE'
# Define a Task
task = tsk("sonar")
# Create train and test set
ids = partition(task)
# Train the learner on the training ids
learner$train(task, row_ids = ids$train)
print(learner$model)
#>
#> Call:
#> randomForest(formula = formula, data = data, classwt = classwt, cutoff = cutoff, importance = TRUE)
#> Type of random forest: classification
#> Number of trees: 500
#> No. of variables tried at each split: 7
#>
#> OOB estimate of error rate: 20.86%
#> Confusion matrix:
#> M R class.error
#> M 59 11 0.1571429
#> R 18 51 0.2608696
print(learner$importance())
#> V11 V9 V12 V10 V49
#> 3.152360e-02 2.197854e-02 1.893821e-02 1.859014e-02 1.198404e-02
#> V48 V36 V4 V45 V13
#> 1.101038e-02 8.358391e-03 8.264907e-03 7.188903e-03 6.262938e-03
#> V37 V52 V51 V28 V21
#> 5.973683e-03 5.105015e-03 5.025215e-03 4.663591e-03 4.441254e-03
#> V35 V5 V18 V15 V20
#> 3.846350e-03 3.743919e-03 3.248970e-03 3.225444e-03 3.146308e-03
#> V47 V17 V14 V19 V31
#> 2.877852e-03 2.761701e-03 2.399842e-03 2.398907e-03 2.330408e-03
#> V50 V27 V16 V22 V44
#> 2.281964e-03 2.268882e-03 2.221092e-03 2.170410e-03 2.045426e-03
#> V3 V38 V26 V29 V34
#> 1.869199e-03 1.755320e-03 1.693634e-03 1.635436e-03 1.479122e-03
#> V41 V32 V42 V46 V1
#> 1.393162e-03 1.344301e-03 1.291470e-03 1.266704e-03 1.223959e-03
#> V57 V54 V23 V8 V59
#> 1.147473e-03 9.405880e-04 9.074265e-04 8.659198e-04 7.560477e-04
#> V53 V24 V40 V7 V58
#> 7.136363e-04 6.783272e-04 6.033633e-04 5.993992e-04 4.350737e-04
#> V39 V43 V30 V55 V25
#> 3.883995e-04 3.754243e-04 3.087232e-04 1.767326e-04 1.751461e-04
#> V60 V6 V2 V33 V56
#> 5.024820e-05 1.553435e-05 -1.573278e-04 -4.743140e-04 -8.423865e-04
# Make predictions for the test rows
predictions = learner$predict(task, row_ids = ids$test)
# Score the predictions
predictions$score()
#> classif.ce
#> 0.2028986