Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

Real Time Pothole Detection System Training Dataset & Model Files

Model Files

Primary model: pothole-detector.pt β€” this is the actual pre-trained YOLOv10b model used for this project.

You can download it directly from the Hugging Face Hub:

from huggingface_hub import hf_hub_download

model_path = hf_hub_download(
    repo_id="Anshulgada/RT-PDS",
    filename="pothole-detector.pt"
)

Other Available Ultralytics Variants

Model Description
yolov10n.pt Nano model, smallest & fastest
yolov10s.pt Small model
yolov10m.pt Medium model
yolov10b.pt Base model
yolov10l.pt Large model
yolov10x.pt Extra large, highest accuracy

By default, these Ultralytics weights are available from:

πŸ‘‰ https://github.com/ultralytics/assets/releases/download/v8.3.0/yolov10{variant-name[n,s,m,b,l,x]}.pt

A backup of these models may also be hosted on Hugging Face Hub.


Dataset Structure

The dataset follows the standard YOLO format with separate directories for training, validation, and testing. Each split contains both images/ and labels/ subdirectories with matching filenames.

Yolo/
β”œβ”€β”€ Inference Images/       # Example images for quick testing
└── Datasets/
    β”œβ”€β”€ train/
    β”‚   β”œβ”€β”€ images/         # ~38k training images
    β”‚   └── labels/         # YOLO-format labels
    β”œβ”€β”€ valid/
    β”‚   β”œβ”€β”€ images/         # 6k validation images
    β”‚   └── labels/         
    └── test/
        β”œβ”€β”€ images/         # 10k test images
        └── labels/         

You can download it directly from the Hugging Face Hub:

  • Direct download link: Yolo.zip

  • Python snippet:

from huggingface_hub import hf_hub_download

# Download the zipped YOLO dataset
dataset_path = hf_hub_download(
    repo_id="Anshulgada/RT-PDS",
    filename="Yolo.zip",
    repo_type="dataset"
)

print("Dataset downloaded to:", dataset_path)
Downloads last month
12