Apter commited on
Commit
58002d8
1 Parent(s): 413b42c

Fix urls error.

Browse files
Files changed (1) hide show
  1. tiny_coco.py +4 -5
tiny_coco.py CHANGED
@@ -5,12 +5,11 @@ from pycocotools.coco import COCO
5
 
6
  _DESCRIPTION = 'A tiny coco2017 dataset example.'
7
 
8
- _ROOT = 'https://huggingface.co/datasets/Apter/tiny_coco/blob/main/'
9
  _URLS = {
10
- 'train': _ROOT + 'train2017.zip',
11
- 'train_meta': _ROOT + 'annotations/instances_train2017.json',
12
- 'val': _ROOT + 'val2017.zip',
13
- 'val_meta': _ROOT + 'annotations/instances_val2017.json',
14
  }
15
 
16
  _CLASSES = ('person', 'bicycle', 'car', 'motorcycle', 'airplane', 'bus',
 
5
 
6
  _DESCRIPTION = 'A tiny coco2017 dataset example.'
7
 
 
8
  _URLS = {
9
+ 'train': 'train2017.zip',
10
+ 'train_meta': 'annotations/instances_train2017.json',
11
+ 'val': 'val2017.zip',
12
+ 'val_meta': 'annotations/instances_val2017.json',
13
  }
14
 
15
  _CLASSES = ('person', 'bicycle', 'car', 'motorcycle', 'airplane', 'bus',