kumulant

FeatureRange

@Serializable
@SerialName(value = "FeatureRange")
data class FeatureRange(val low: Double, val high: Double)(source)

Per-feature (low, high) range used to seed random thresholds at tree construction.

Constructors

Link copied to clipboard
constructor(low: Double, high: Double)

Properties

Link copied to clipboard

Exclusive upper bound of the feature's expected value range.

Link copied to clipboard
val low: Double

Inclusive lower bound of the feature's expected value range.

FeatureRange

constructor(low: Double, high: Double)(source)

high

Exclusive upper bound of the feature's expected value range.

low

Inclusive lower bound of the feature's expected value range.