kumulant

AucResult

@Serializable
@SerialName(value = "AucResult")
data class AucResult(val auc: Double, val totalPositives: Double, val totalNegatives: Double, val positives: DoubleArray, val negatives: DoubleArray, val lowerBound: Double, val upperBound: Double) : Result(source)

AUC snapshot with the per-bin counts needed for merge. auc is NaN until at least one positive and one negative have been observed; consult totalPositives / totalNegatives to detect that case.

Constructors

Link copied to clipboard
constructor(auc: Double, totalPositives: Double, totalNegatives: Double, positives: DoubleArray, negatives: DoubleArray, lowerBound: Double, upperBound: Double)

Properties

Link copied to clipboard
val auc: Double

Estimated ROC area under curve at read time.

Link copied to clipboard

Inclusive lower bound on the score range.

Link copied to clipboard

Per-bin negative weights, parallel to positives.

Link copied to clipboard

Number of histogram bins (same length as positives / negatives).

Link copied to clipboard

Per-bin positive weights, parallel to negatives.

Link copied to clipboard

Cumulative negative-label weight observed across the stream.

Link copied to clipboard

Cumulative positive-label weight observed across the stream.

Link copied to clipboard

Inclusive upper bound on the score range.

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int

AucResult

constructor(auc: Double, totalPositives: Double, totalNegatives: Double, positives: DoubleArray, negatives: DoubleArray, lowerBound: Double, upperBound: Double)(source)

auc

Estimated ROC area under curve at read time.

equals

open operator override fun equals(other: Any?): Boolean(source)

hashCode

open override fun hashCode(): Int(source)

lowerBound

Inclusive lower bound on the score range.

negatives

Per-bin negative weights, parallel to positives.

numBins

Number of histogram bins (same length as positives / negatives).

positives

Per-bin positive weights, parallel to negatives.

totalNegatives

Cumulative negative-label weight observed across the stream.

totalPositives

Cumulative positive-label weight observed across the stream.

upperBound

Inclusive upper bound on the score range.