I'm trying to train Faster R-CNN on custom dataset. When I train with no object image(image without bounding boxes), it returns value error 'All bounding boxes should have positive height and width'.
My dataset contains image, target([xmin, ymin, xmax, ymax], label). For non-object image, target is ([0, 0, 0, 0], 0).
Is there any way to solve this problem?
I'm following this code. https://pytorch.org/tutorials/intermediate/torchvision_tutorial.html
and which one is correct method for training non-object images?
- use [0, 0, 0, 0, 0] for non-object image
- use [0, 0, w, h, 0] for non-object image(w, h is size of original image)