kumulant

TreeClassificationSplitResult

@Serializable
@SerialName(value = "TreeClassificationSplitResult")
data class TreeClassificationSplitResult(val split: SerializableSplit, val pos: TreeClassificationNodeResult, val neg: TreeClassificationNodeResult, val value: ClassCountsResult) : TreeClassificationNodeResult(source)

Immutable classification split-node snapshot.

Properties

neg

Subtree taken when split is false.

pos

Subtree taken when split is true.

split

Routing predicate.

value

open override val value: ClassCountsResult(source)

Aggregate over every observation routed through this node.

Functions

findLeaf

Route x to the leaf this subtree assigns it to.