Model Pipeline - Non-maximum suppression
Non-maximum suppression (NMS) is a technique used in object detection to remove overlapping bounding boxes. It keeps only the most confident box for each object, helping the model make clear decisions.
Non-maximum suppression (NMS) is a technique used in object detection to remove overlapping bounding boxes. It keeps only the most confident box for each object, helping the model make clear decisions.
Loss 1.2 |**** 0.9 |*** 0.7 |** 0.5 |* 0.4 |
| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | 1.2 | 0.45 | Initial training with high loss and low accuracy |
| 2 | 0.9 | 0.60 | Loss decreased, accuracy improved as model learns |
| 3 | 0.7 | 0.72 | Better bounding box predictions, NMS helps reduce duplicates |
| 4 | 0.5 | 0.80 | Model converging, NMS effectively filters overlapping boxes |
| 5 | 0.4 | 0.85 | Final epoch with good balance of precision and recall |