Dataset Viewer
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
Check out the documentation for more information.
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
- 19