datasets
Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.
SVRDD_YOLO
SVRDD Road Damage Detection
This repository is formatted for the Hugging Face Dataset Viewer. Each row
contains an image and its road-damage object annotations.
Load the dataset
from datasets import load_dataset
ds = load_dataset("YOUR_USERNAME/YOUR_DATASET_NAME")
example = ds["train"][0]
print(example["image"])
print(example["objects"])
Local unzip usage
If you want the images as regular local files, unzip the split archives:
unzip train.zip -d… See the full description on the dataset page: https://huggingface.co/datasets/ShuoZheLi/SVRDD_YOLO.image_6k8
