TreeRegressionResult
@Serializable
@SerialName(value = "TreeRegressionResult")
Immutable, wire-portable snapshot of a RegressionTree over a dense VectorView context. Carries the tree structure (SerializableSplit predicates + per-node weighted-variance aggregates) so callers can route a context vector to its leaf without reaching back into the live stat.
Serialization is only meaningful for the VectorView feature representation (the splits must be wire-portable); trees grown over other Split row types use the live RegressionTree directly and are not snapshotted to this type.
The root's WeightedVarianceResult is exposed as the canonical scalar snapshot; callers wanting context-specific predictions use findLeaf or predict.
Constructors
TreeRegressionResult
Properties
root
Root of the snapshot tree.
rootMean
totalWeights
Cumulative weight folded into the tree.