Model Pipeline - Faster R-CNN usage
Faster R-CNN is a model that finds objects in pictures. It looks at the image, guesses where objects might be, and then checks those guesses to say what the objects are.
Faster R-CNN is a model that finds objects in pictures. It looks at the image, guesses where objects might be, and then checks those guesses to say what the objects are.
Loss
1.2 |*
1.0 | *
0.8 | *
0.6 | *
0.4 | *
+---------
1 2 3 4 5 Epochs
| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | 1.2 | 0.45 | Model starts learning, loss is high, accuracy low |
| 2 | 0.9 | 0.60 | Loss decreases, accuracy improves as model learns features |
| 3 | 0.7 | 0.72 | Better object proposals and classification |
| 4 | 0.55 | 0.80 | Model refines bounding boxes and class predictions |
| 5 | 0.45 | 0.85 | Training converges with good detection performance |