You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 21, 2023. It is now read-only.
1 :
I download the COCO(2014) dataset from cocodataset.org website,that has the following file structure:
_ train2014
| |_ .jpg
| |_ ...
| |_ .jpg
|_ val2014
|_ test2014
|_ annotations
|_ instances_train2014.json
|_ instances_val2014.json
|_ captions_train2014.json
|_ captions_val2014.json
|_ person_keypoints_train2014.json
|_ person_keypoints_val2014.json
|_ image_info_test2014.json
compare with the coco dataset that define in your Detectron/lib/datasets/data/README.md
coco
|_ coco_train2014
| |_ .jpg
| |_ ...
| |_ .jpg
|_ coco_val2014
|_ ...
|_ annotations
|_ instances_train2014.json
|_ ...
should i just change the name of the directory from "train2014" to "coco_train2014" && "val2014" to "coco_val2014" && "test2014" to "coco_test2014", does this work?