Initial commit
Browse files
README.md
CHANGED
@@ -4,7 +4,7 @@ For testing purpose, you can use the hosted dummy dataset (`dummy_data`) as foll
|
|
4 |
|
5 |
```
|
6 |
import datasets
|
7 |
-
ds = datasets.load_dataset("
|
8 |
```
|
9 |
|
10 |
For using the COCO dataset (2017), you need to download it manually first:
|
@@ -19,5 +19,5 @@ wget http://images.cocodataset.org/annotations/image_info_test2017.zip
|
|
19 |
Then to load the dataset:
|
20 |
```
|
21 |
COCO_DIR = ...(path to the downloaded dataset directory)...
|
22 |
-
ds = datasets.load_dataset("
|
23 |
```
|
|
|
4 |
|
5 |
```
|
6 |
import datasets
|
7 |
+
ds = datasets.load_dataset("christti/coco_dataset_multi_label_script", "2017", data_dir="./dummy_data/")
|
8 |
```
|
9 |
|
10 |
For using the COCO dataset (2017), you need to download it manually first:
|
|
|
19 |
Then to load the dataset:
|
20 |
```
|
21 |
COCO_DIR = ...(path to the downloaded dataset directory)...
|
22 |
+
ds = datasets.load_dataset("christti/coco_dataset_multi_label_script", "2017", data_dir=COCO_DIR)
|
23 |
```
|
coco_dataset_script.py → coco_dataset_multi_label_script.py
RENAMED
File without changes
|