public static interface BoundingBoxMetricsEntry.ConfidenceMetricsEntryOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getConfidenceThreshold()
public abstract float getConfidenceThreshold()
Output only. The confidence threshold value used to compute the metrics.
float confidence_threshold = 1;
Returns | |
---|---|
Type | Description |
float |
The confidenceThreshold. |
getF1Score()
public abstract float getF1Score()
Output only. The harmonic mean of recall and precision.
float f1_score = 4;
Returns | |
---|---|
Type | Description |
float |
The f1Score. |
getPrecision()
public abstract float getPrecision()
Output only. Precision under the given confidence threshold.
float precision = 3;
Returns | |
---|---|
Type | Description |
float |
The precision. |
getRecall()
public abstract float getRecall()
Output only. Recall under the given confidence threshold.
float recall = 2;
Returns | |
---|---|
Type | Description |
float |
The recall. |