Model Pipeline - YOLO architecture 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.
Loss
12.5 |************
10.0 |********
7.5 |******
5.0 |****
2.5 |**
0.0 +----------------
1 5 10 15 20 Epochs| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | 12.5 | 0.15 | High loss and low accuracy as model starts learning |
| 5 | 8.2 | 0.45 | Loss decreasing and accuracy improving steadily |
| 10 | 5.1 | 0.65 | Model learning important features, better predictions |
| 15 | 3.7 | 0.75 | Loss continues to drop, accuracy rises |
| 20 | 2.9 | 0.82 | Model converging with good detection performance |