ShoufaChen / DiffusionDet

[ICCV2023 Best Paper Finalist] PyTorch implementation of DiffusionDet (https://arxiv.org/abs/2211.09788)
Other
2.08k stars 163 forks source link

Prepare datasets #99

Open l-dawei opened 1 year ago

l-dawei commented 1 year ago

Great project, thank you to the author for their excellent work.

1.coco

ln -s /path_to_coco_dataset/train2017 datasets/coco/train2017 ln -s /path_to_coco_dataset/val2017 datasets/coco/val2017 Does train2017 here refer to images or labels?

  1. lvis

image Is it ok to just download the LVIS data set marked in the figure?

Could you help me? Thanks a lot.

hhhhhhluo commented 1 year ago

when reading the code , you will find the train2017 refers to images, and it's a default dataset so you must ensure your dataset folder name is the same with coco2017 because detectron2 hard code the default dataset properties.