Commit e60f4ec8 authored by Ren Jin's avatar Ren Jin Committed by Francisco Massa

fix keypoint dataset path error in paths_catalog.py (#443)

parent 6b1ab017
...@@ -33,19 +33,19 @@ class DatasetCatalog(object): ...@@ -33,19 +33,19 @@ class DatasetCatalog(object):
}, },
"keypoints_coco_2014_train": { "keypoints_coco_2014_train": {
"img_dir": "coco/train2014", "img_dir": "coco/train2014",
"ann_file": "annotations/person_keypoints_train2014.json", "ann_file": "coco/annotations/person_keypoints_train2014.json",
}, },
"keypoints_coco_2014_val": { "keypoints_coco_2014_val": {
"img_dir": "coco/val2014", "img_dir": "coco/val2014",
"ann_file": "coco/annotations/instances_val2014.json" "ann_file": "coco/annotations/person_keypoints_val2014.json"
}, },
"keypoints_coco_2014_minival": { "keypoints_coco_2014_minival": {
"img_dir": "coco/val2014", "img_dir": "coco/val2014",
"ann_file": "annotations/person_keypoints_minival2014.json", "ann_file": "coco/annotations/person_keypoints_minival2014.json",
}, },
"keypoints_coco_2014_valminusminival": { "keypoints_coco_2014_valminusminival": {
"img_dir": "coco/val2014", "img_dir": "coco/val2014",
"ann_file": "annotations/person_keypoints_valminusminival2014.json", "ann_file": "coco/annotations/person_keypoints_valminusminival2014.json",
}, },
"voc_2007_train": { "voc_2007_train": {
"data_dir": "voc/VOC2007", "data_dir": "voc/VOC2007",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment