Module vision
Expand description
Metrics module for vision tasks.
Structs§
- Dice
Input - Input type for the DiceMetric.
- Dice
Metric - The Dice-Sorenson coefficient (DSC) for evaluating overlap between two binary masks.
The DSC is defined as:
DSC = 2 * (|X ∩ Y|) / (|X| + |Y|)whereXis the model output andYis the ground truth target. - Dice
Metric Config - Configuration for the DiceMetric.