The problem — Choosing a metric by precedent or benchmark convention is one of the quietest ways a validation pipeline fails. Dice looks right for segmentation, mAP looks right for detection, and SSIM looks right for reconstruction — until none of them actually measures what the downstream decision requires. A model can score well on all three and still be wrong about the things that matter. Why mAP, Dice, and SSIM Are Not Enough traces the failure modes in detail.
What it is / how it works — Metrics Reloaded (Maier-Hein, Reinke et al., Nature Methods 2024) is a decision framework built around a problem fingerprint: a structured characterisation of domain interest, target properties (what you are trying to find), data properties (class balance, instance distribution, image dimensionality), and output type (mask, bounding box, label, scalar). Given the fingerprint, the framework maps each task type — instance segmentation, semantic segmentation, object detection, image-level classification, regression — to a shortlist of metrics that are actually appropriate, and explains why the excluded defaults are not. The companion paper (Reinke et al., 2024) catalogues the specific pitfalls each inappropriate metric introduces, making the "avoid X because Y" reasoning traceable.
Where it breaks — The framework assumes a well-defined domain interest: you must know what biological question the prediction is supposed to serve before the fingerprint resolves. When the downstream use is ambiguous — or when a pipeline serves multiple consumers with different tolerances — no single metric survives, and the framework correctly surfaces that conflict rather than hiding it. Validation Without a Ground Truth addresses the harder case where the reference annotation itself is uncertain.
At Fovea, Metrics Reloaded is applied at the readout and report stages as part of the quality gate: before a pipeline ships, every reported metric must be justified against the problem fingerprint. Inherited benchmark metrics are treated as evidence of missing validation, not prior art.