'YOLO object detection confused when see symmetrically pics
Solution 1:[1]
The general reasons for your error case will be
Data augmention. Remove the augmention step for your dataset. Re-train the model with raw data
Try to have as much as data possible for training. As per official docs, you must have 1000 images per instance in-order to have an average performing model. And also, be careful in not leading it to overfitting.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Vijay P |