Interface BoundingBoxMetricsEntry.ConfidenceMetricsEntryOrBuilder (2.2.3)

public static interface BoundingBoxMetricsEntry.ConfidenceMetricsEntryOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getConfidenceThreshold()

public abstract float getConfidenceThreshold()

Output only. The confidence threshold value used to compute the metrics.

float confidence_threshold = 1;

Returns
TypeDescription
float

The confidenceThreshold.

getF1Score()

public abstract float getF1Score()

Output only. The harmonic mean of recall and precision.

float f1_score = 4;

Returns
TypeDescription
float

The f1Score.

getPrecision()

public abstract float getPrecision()

Output only. Precision under the given confidence threshold.

float precision = 3;

Returns
TypeDescription
float

The precision.

getRecall()

public abstract float getRecall()

Output only. Recall under the given confidence threshold.

float recall = 2;

Returns
TypeDescription
float

The recall.