Model Pipeline - YOLO concept
YOLO (You Only Look Once) is a fast object detection model that looks at the whole image once and predicts bounding boxes and class probabilities directly.
YOLO (You Only Look Once) is a fast object detection model that looks at the whole image once and predicts bounding boxes and class probabilities directly.
Epochs
20 | *
| *
15 | *
| *
10 | *
| *
5 | *
| *
1 | *
+----------------
Loss Decreasing
| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | 12.5 | 0.20 | High loss and low accuracy as model starts learning |
| 5 | 6.8 | 0.45 | Loss decreasing and accuracy improving steadily |
| 10 | 3.2 | 0.70 | Model learning important features, better predictions |
| 15 | 1.8 | 0.82 | Loss low and accuracy high, model converging well |
| 20 | 1.2 | 0.88 | Training stabilizes with good detection performance |