RandomForestRegression
@Serializable
@SerialName(value = "RandomForestRegression")
Spec for RandomForestRegressionStat: ensembled VFDT regression forest.
Constructors
RandomForestRegression
constructor(featureSize: Int, splitCandidates: List<SerializableSplit>, nbrTrees: Int = 10, config: RegressionTreeConfig = RegressionTreeConfig(), bagging: Boolean = true, randomSeed: Int = 0)(source)
Properties
bagging
config
RegressionTree growth tunables (mtry defaults to ceil(sqrt(p)) when null).
featureSize
Number of input features.
nbrTrees
randomSeed
PRNG seed shared across trees.
splitCandidates
Candidate split pool.