RandomForestClassifier
@Serializable
@SerialName(value = "RandomForestClassifier")
Spec for RandomForestClassifierStat: ensembled VFDT classification forest.
Constructors
RandomForestClassifier
constructor(featureSize: Int, numClasses: Int, splitCandidates: List<SerializableSplit>, nbrTrees: Int = 10, config: ClassificationTreeConfig = ClassificationTreeConfig(), 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
numClasses
Number of classes.
randomSeed
PRNG seed shared across trees.
splitCandidates
Candidate split pool.