Link Search Menu Expand Document

Recall

It represents the fraction of positive samples that are correctly predicted. It is defined as:

recall = tp/(tp + fn)

Example

from odin.classes import Metrics

my_metric = Metrics.RECALL_SCORE
# use my_metric as 'metric' parameter in the analyses

Tasks supported

Binary Classification Single-label Classification Multi-label Classification Object Detection Instance Segmentation
yes yes yes yes yes