From 1b0663aa943ad0e2a595cf7e22df9bde495562f9 Mon Sep 17 00:00:00 2001 From: SohamTamba Date: Fri, 6 Sep 2019 03:04:53 +0530 Subject: [PATCH] Corrected path to coco_labels --- data/coco.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/coco.py b/data/coco.py index 765531761..4f3ac26e9 100644 --- a/data/coco.py +++ b/data/coco.py @@ -44,7 +44,7 @@ class COCOAnnotationTransform(object): Initilized with a dictionary lookup of classnames to indexes """ def __init__(self): - self.label_map = get_label_map(osp.join(COCO_ROOT, 'coco_labels.txt')) + self.label_map = get_label_map('data/coco_labels.txt') def __call__(self, target, width, height): """