fcdl94 / WILSON

Official implementation of "Incremental Learning in Semantic Segmentation from Image Labels"
https://arxiv.org/abs/2112.01882
MIT License
59 stars 9 forks source link

COCO-to-VOC Dataset #6

Closed novatt closed 1 year ago

novatt commented 1 year ago

Hi Fabio, I would like to ask some questions regarding the COCO-to-VOC dataset. How do the classes names and labels of COCO-to-VOC dataset correspond?

  1. Do the 1-60 keep the origin order of the remaining classes after removing all the ones in PASCAL VOC ? (ie 1: truck, 2: traffic light, ..., 60: toothbrush)
  2. Do 61-80 correspond to the 1-20 in PASCAL VOC ? (ie 61: airplane, 62: bicycle, ..., 80: tv)

If I understand incorrectly, could you tell me the correct corresponding order? Thanks!

fcdl94 commented 1 year ago

You can find here the class ordering: https://github.com/fcdl94/WILSON/blob/41c7d5b21b627722311d559ad5f6d835917f95d1/tasks.py#L3 ? In 'data' you can also find the script to convert Voc to the coco format

novatt commented 1 year ago

I have solved this problem with your help. Thanks for your quick reply.