Hi,
I am training a YOLO object detector to detect people in an image. When I test the model on unseen data, there are certain false detections that keep on coming up. I want to include images in my training set that have no people in (ie: the labelled bounding box will be blank) so that the model can learn what a person is not.
However, an error is thrown when there are blank labels.
As a work around, I have taken the types of images that typically produce false detectens and I have synthetically pasted a person in the image. The idea is that the model will now see that the label is not where it typically detects it. However, this is time consuming.
Is there a way around this or any suggestions?