Connor Hoehn commited on
Commit
c917614
1 Parent(s): 8e9394a

Update path.

Browse files
Files changed (1) hide show
  1. card_display_v1.py +2 -1
card_display_v1.py CHANGED
@@ -92,7 +92,8 @@ class CardDisplayDetector(datasets.GeneratorBasedBuilder):
92
  # COCO -> x.json, images/
93
  gen_kwargs={
94
  "annotations_file": os.path.join(dataset_zip, "result.json"),
95
- "image_dir": os.path.join(dataset_zip, "images"),
 
96
  },
97
  )
98
  ]
 
92
  # COCO -> x.json, images/
93
  gen_kwargs={
94
  "annotations_file": os.path.join(dataset_zip, "result.json"),
95
+ # Annotator indicated there was a folder named 1 that doesn't exist
96
+ "image_dir": os.path.join(dataset_zip, "images/1/"),
97
  },
98
  )
99
  ]