facebookresearch / unbiased-teacher

PyTorch code for ICLR 2021 paper Unbiased Teacher for Semi-Supervised Object Detection
https://arxiv.org/abs/2102.09480
MIT License
409 stars 84 forks source link

Data splits in form of COCO image ids #71

Open vadimkantorov opened 2 years ago

vadimkantorov commented 2 years ago

Splits as Image ID lists are more stable and reusable than image indices (as image indices may change depending on pre-filtering of the dataset).

Are image indices sampled after any filtering or before filtering? (e.g. difficult images or crowd images)

Thanks!