Fully Convolutional Networks (FCNs) are mainly used for image segmentation. This means the model labels each pixel in an image. So, the key metrics measure how well the model predicts pixel classes.
Common metrics:
- Intersection over Union (IoU): Measures overlap between predicted and true pixel areas. Higher IoU means better segmentation.
- Pixel Accuracy: Percentage of pixels correctly classified. Simple but can be misleading if classes are imbalanced.
- Dice Coefficient (F1 score for pixels): Balances precision and recall for pixel classification.
These metrics help us understand how well the FCN segments images, which is the main goal.