Parameters for possible engine parameters for ranger
Source:R/param_engine_ranger.R
ranger_parameters.Rd
These parameters are auxiliary to random forest models that use the "ranger"
engine. They correspond to tuning parameters that would be specified using
set_engine("ranger", ...)
.
Usage
regularization_factor(range = c(0, 1), trans = NULL)
regularize_depth(values = c(TRUE, FALSE))
significance_threshold(range = c(-10, 0), trans = transform_log10())
lower_quantile(range = c(0, 1), trans = NULL)
splitting_rule(values = ranger_split_rules)
ranger_class_rules
ranger_reg_rules
ranger_split_rules
num_random_splits(range = c(1L, 15L), trans = NULL)
Format
An object of class character
of length 4.
An object of class character
of length 3.
An object of class character
of length 7.
Arguments
- range
A two-element vector holding the defaults for the smallest and largest possible values, respectively. If a transformation is specified, these values should be in the transformed units.
- trans
A
trans
object from thescales
package, such asscales::transform_log10()
orscales::transform_reciprocal()
. If not provided, the default is used which matches the units used inrange
. If no transformation,NULL
.- values
For
splitting_rule()
, a character string of possible values. Seeranger_split_rules
,ranger_class_rules
, andranger_reg_rules
for appropriate values. Forregularize_depth()
, eitherTRUE
orFALSE
.