I’m going through the Roboflow “getting started” tutorial for for hardware bolts. A “bolt” should be the entire assembly: hex head + threaded body. It’s kinda a tricky objective once you dig into it…
While the model successfully detects complete bolts, it also potentially has two major major issues:
- Partial Misclassification: It often identifies just the hex head portion of a bolt and incorrectly labels it as a full “bolt.”
- Redundant Detections: Sometimes, it creates two overlapping boxes for the same physical bolt: one for just the head and another for the entire bolt (head+threads), both labeled “bolt.”
How can we best address this through annotation and training strategies, particularly within a platform like Roboflow?
It’s intuitive to imagine why the model has a hard time with double labels in this kind of situation with bolts jumbled together, laying across each other, sometimes standing on end so that only the hex is visible, etc. I’m just curious what best practices are in ML for handling these kinds of scenarios in general.
I guess maybe one strategy would be to just annotate the heads and exclude the threaded body?
Curious what the community thinks about problems like these in general.