-
Notifications
You must be signed in to change notification settings - Fork 82
Partially labelled dataset #10
Comments
If this helps, I can suggest you to:
Regarding the last part, to pick the images for the (un)supervised learning, the authors just randomly split images at the beginning by sampling a list of indices (see For the images that were picked to be used for the "unsupervised part", the authors just delete the labels inside the training loop (see At this point, I am not sure if you can supply Detectron2 with your 380 images without labels (it may skip them), - if yes, you can just put your images in a format similar to what you mentioned, but if at least 1bbox per image is required, one idea could be to add some random annotations for them, as, anyway, those would be removed inside the training loop. |
Does this mean all images (both labeled and unlabeled) should have annotations with them? |
@sarmientoj24 I think unlabeled images do not need to have annotations with them. You just need to make sure that the filter_empty field is set to False, as is done here. |
Hi Yen-Cheng,
I am working on a project where, because of some issues, we were able to label only a proportion of the dataset.
Let's say, out of 500 images only 120 were labelled.
Is it possible to use all the 120 as training labelled data and the rest as training unlabelled data?
If so, how do you recommend addressing this?
Below is an example of annotations (of course I can modify it)
The text was updated successfully, but these errors were encountered: