CoolFace
Datasetpublic

ShuoZheLi/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.

sourceHugging Facecc-by-4.0updated 5mo agoView on Hugging Face
1likes275downloads
Dataset Card

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

python
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:

bash
unzip train.zip -d train_images
unzip validation.zip -d validation_images
unzip test.zip -d test_images

Annotation schema

  • image: the road image rendered by the Dataset Viewer.
  • file_name: image path referenced by the metadata row.
  • region: original Beijing district folder.
  • image_id: original image filename without extension.
  • width, height: image size in pixels.
  • objects: all annotations for the image.
  • bbox: [x_min, y_min, width, height] in absolute pixel coordinates.
  • bbox_yolo: [x_center, y_center, width, height] normalized to [0, 1].
  • categories: integer class ids from the YOLO labels.
  • category_names: human-readable class names.

Classes

IDClass
0longitudinal crack
1transverse crack
2alligator crack
3pothole
4manhole cover
5longitudinal patch
6transverse patch

Dataset Summary

  • Images: 8000
  • Objects: 20804
  • Regions: Chaoyang, Dongcheng, Fengtai, Haidian, Xicheng

Split Counts

SplitImagesObjects
train600015620
validation10002612
test10002572

Class Distribution

IDClassObjects
0longitudinal crack4665
1transverse crack3404
2alligator crack1728
3pothole918
4manhole cover3339
5longitudinal patch4128
6transverse patch2622