Dataset Viewer
Full Screen Viewer
Full Screen
The viewer is disabled because this dataset repo requires arbitrary Python code execution. Please consider
removing the
loading script
and relying on
automated data support
(you can use
convert_to_parquet
from the datasets
library). If this is not possible, please
open a discussion
for direct help.
YAML Metadata
Warning:
empty or missing yaml metadata in repo card
(https://huggingface.co/docs/hub/datasets-cards)
Usage
For testing purpose, you can use the hosted dummy dataset (dummy_data
) as follows:
import datasets
ds = datasets.load_dataset("christti/coco_dataset_multi_label_script", "2017", data_dir="./dummy_data/")
For using the COCO dataset (2017), you need to download it manually first:
wget http://images.cocodataset.org/zips/train2017.zip
wget http://images.cocodataset.org/zips/val2017.zip
wget http://images.cocodataset.org/zips/test2017.zip
wget http://images.cocodataset.org/annotations/annotations_trainval2017.zip
wget http://images.cocodataset.org/annotations/image_info_test2017.zip
Then to load the dataset:
COCO_DIR = ...(path to the downloaded dataset directory)...
ds = datasets.load_dataset("christti/coco_dataset_multi_label_script", "2017", data_dir=COCO_DIR)
- Downloads last month
- 27