kumulant

Auc

@Serializable
@SerialName(value = "Auc")
data class Auc(val numBins: Int = 256, val lowerBound: Double = 0.0, val upperBound: Double = 1.0) : PairedStatSpec<AucResult> (source)

Spec for AucStat: streaming AUC over a fixed-resolution score histogram.

Constructors

Auc

constructor(numBins: Int = 256, lowerBound: Double = 0.0, upperBound: Double = 1.0)(source)

Properties

lowerBound

Inclusive lower bound on the score range.

numBins

Number of histogram bins covering [lowerBound, upperBound].

upperBound

Inclusive upper bound on the score range.