AI-without-data
AI-without-data OP t1_jdzb8fd wrote
Reply to comment by qphyml in Training only Labelled Bbox for Object Detection. by AI-without-data
Ok I appreciate! I'm trying to filter out images.
AI-without-data OP t1_jdy05d6 wrote
Reply to comment by stuv_x in Training only Labelled Bbox for Object Detection. by AI-without-data
Ok I will try to modify loss function as you say. Thank you!
AI-without-data OP t1_jdviqi9 wrote
Reply to comment by thebruce87m in Training only Labelled Bbox for Object Detection. by AI-without-data
I got it. Thank you so much for your answer.
AI-without-data OP t1_jdvhnjr wrote
Reply to comment by deepForward in Training only Labelled Bbox for Object Detection. by AI-without-data
Thank you. But I don't understand it clearly.
Do people train the model in that way as well? In the COCO dataset, some images contain objects that are not labeled but are listed in the classes.
If people follow your suggested method for training the model, they would need to first filter out images with perfectly labeled objects (no missed labels) from the COCO dataset and use that filtered data to train the model. Then they would need to run the model on the remaining data to obtain labels for objects that are not included in the dataset, and update the entire dataset accordingly. Is this correct?
AI-without-data OP t1_jdvfwff wrote
Reply to comment by thebruce87m in Training only Labelled Bbox for Object Detection. by AI-without-data
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.
AI-without-data OP t1_jdv5l7k wrote
Reply to comment by mmeeh in Training only Labelled Bbox for Object Detection. by AI-without-data
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.
AI-without-data OP t1_jdurfc6 wrote
Reply to comment by mmeeh in Training only Labelled Bbox for Object Detection. by AI-without-data
Thank you for the comment. So do I need to modify images to remove chairs one by one by manually?
AI-without-data OP t1_je5078l wrote
Reply to comment by deepForward in Training only Labelled Bbox for Object Detection. by AI-without-data
I see. I think changing the threshold of confidence score and probaility is good idea. I should try the ways step by step. Thank you!