Model Pipeline - IoU (Intersection over Union)
This pipeline calculates the Intersection over Union (IoU) metric to measure how well predicted bounding boxes match the true boxes in object detection tasks.
This pipeline calculates the Intersection over Union (IoU) metric to measure how well predicted bounding boxes match the true boxes in object detection tasks.
Loss
1.0 |***************
0.8 |************
0.6 |********
0.4 |******
0.2 |***
0.0 +------------
1 2 3 4 5 Epochs
| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | 0.75 | 0.40 | Initial IoU scores are low, model starts learning bounding box locations |
| 2 | 0.60 | 0.55 | IoU improves as predicted boxes better overlap true boxes |
| 3 | 0.45 | 0.70 | Model predicts bounding boxes closer to ground truth, IoU increases |
| 4 | 0.35 | 0.80 | Good overlap achieved, IoU scores near 0.8 on average |
| 5 | 0.30 | 0.85 | Model converges with high IoU, bounding boxes well aligned |