Skip to content

Commit

Permalink
fix img path
Browse files Browse the repository at this point in the history
  • Loading branch information
HaydenFaulkner committed Jan 15, 2020
1 parent dfea68f commit b7bda36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datasets/mscoco.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def _parse_image_path(self, entry):
"""
dirname, filename = entry['coco_url'].split('/')[-2:]
abs_path = os.path.join(self.root, dirname, filename)
abs_path = os.path.join(self.root, 'images', dirname, filename)
return abs_path

def __len__(self):
Expand Down

0 comments on commit b7bda36

Please sign in to comment.