Viewing a single comment thread. View all comments

mmeeh t1_jdusxmd wrote

each of this BBOX has a label when you are training with yolov, you can just write some code that identifies the BBOX which have the label of chair so you can exclude them from the dataset

1

AI-without-data OP t1_jdv5l7k wrote

I need the chair class for the model, but some images don't have the label of chair even though the images include chairs. And I want to use those images for training because they include other classes that should be trained.

1

thebruce87m t1_jdvby1c wrote

Sounds like you need to label the chairs.

2

AI-without-data OP t1_jdvfwff wrote

So do I need to label chairs in all the images?

Ok, for example, there is famous dataset which is COCO dataset. But some objects, for example 'book', exist but are not labeled in some images (not all. many of images have labeled 'book' object). And people use the dataset for training and detect 'book' object well somehow. I just want to know how they handle the unlabeled 'book' in some data.

1

thebruce87m t1_jdvhv7r wrote

If you want it to be good at detecting books then yes, all books should be labelled.

If they are not, what are the implications? Perhaps book detections will have lower confidence than they should? Maybe it will ignore some styles of books?

1