kumulant

ForestRegressionResult

@Serializable
@SerialName(value = "ForestRegressionResult")
data class ForestRegressionResult(val trees: List<TreeRegressionResult>) : Result(source)

Snapshot of a RandomForestRegressionStat: per-tree immutable snapshots.

Constructors

Link copied to clipboard
constructor(trees: List<TreeRegressionResult>)

Properties

Link copied to clipboard

Sum of per-tree root totalWeights; nbrTrees * underlyingWeight under bagging.

Link copied to clipboard

Per-tree immutable snapshots; non-empty.

Functions

Link copied to clipboard

Merge the leaves that x routes to across every tree into a single weighted- variance aggregate. Useful for ensembled scoring.

Link copied to clipboard

ForestRegressionResult

constructor(trees: List<TreeRegressionResult>)(source)

findLeafMerged

Merge the leaves that x routes to across every tree into a single weighted- variance aggregate. Useful for ensembled scoring.

predict

totalWeights

Sum of per-tree root totalWeights; nbrTrees * underlyingWeight under bagging.

trees

Per-tree immutable snapshots; non-empty.