Slot: recall
Recall is calculated as TP / (TP + FN)
URI: linkml_common:recall
Applicable Classes
Name | Description | Modifies Slot |
---|---|---|
OutcomeStatistics | A class for collecting totals of various outcomes | no |
PredictionSummaryStatistics | A class for collecting totals of various outcomes | no |
AggregatePrediction | no |
Properties
- Range: Float
Identifier and Mapping Information
Schema Source
- from schema: https://w3id.org/linkml/linkml-common
Mappings
Mapping Type | Mapped Value |
---|---|
self | linkml_common:recall |
native | linkml_common:recall |
LinkML Source
name: recall
description: Recall is calculated as TP / (TP + FN)
from_schema: https://w3id.org/linkml/linkml-common
rank: 1000
alias: recall
owner: OutcomeStatistics
domain_of:
- OutcomeStatistics
range: float
equals_expression: (true_positives) / (true_positives + false_negatives)