mcahny / object_localization_network

Learning Open-World Object Proposals without Learning to Classify
Apache License 2.0
193 stars 26 forks source link

About Cross Category Evaluation #9

Closed curiosity654 closed 2 years ago

curiosity654 commented 2 years ago

Hi there, I have a question regarding cross-category evaluation. According to the code, the dataset filter out non-VOC annotations, but this does not filter out images. If the images contain other VOC classes, will they be included in the training set. image

wangchust commented 2 years ago

Images only contain non-VOC categories will excluded in training stage. Details can be found in function _filter_imgs() of coco_split.py

ids_in_cat = set() for i, class_id in enumerate(self.train_cat_ids): ids_in_cat |= set(self.coco.cat_img_map[class_id])

curiosity654 commented 2 years ago

Thank you for the explanation! I got it now.