Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Multi-Modal Road Damage Detection/.gitignore
Binary file not shown.
44 changes: 44 additions & 0 deletions Multi-Modal Road Damage Detection/Dataset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Dataset — RDD2022 (Road Damage Dataset 2022)

## Source
**Kaggle:** https://www.kaggle.com/datasets/aliabdelmenam/rdd-2022

## Description
RDD2022 is a large-scale multi-country road damage dataset used for
automatic road damage detection and classification.

- **Size:** ~10.3 GB
- **Total Images:** 38,385
- **Countries covered:** Japan, India, Czech Republic, Norway, United States, China (Drone & MotorBike)
- **Damage Categories:**
| Label | Description |
|-------|-------------|
| D00 | Longitudinal Cracks |
| D10 | Transverse Cracks |
| D20 | Alligator Cracks |
| D40 | Potholes |

## Dataset Structure
```
RDD_SPLIT/
├── train/
├── val/
└── test/
├── images/ ← .jpg files (country-prefixed filenames)
│ ├── China_Drone_*.jpg
│ ├── China_MotorBike_*.jpg
│ ├── Czech_*.jpg
│ ├── India_*.jpg
│ ├── Japan_*.jpg
│ ├── Norway_*.jpg
│ └── United_States_*.jpg
└── labels/ ← YOLO format .txt annotation files
├── China_Drone_*.txt
├── China_MotorBike_*.txt
├── Czech_*.txt
├── India_*.txt
├── Japan_*.txt
├── Norway_*.txt
└── United_States_*.txt
```
1 change: 1 addition & 0 deletions Multi-Modal Road Damage Detection/Images/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions Multi-Modal Road Damage Detection/Model/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

6,182 changes: 6,182 additions & 0 deletions Multi-Modal Road Damage Detection/Model/Road_Damage_Detection.ipynb

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
model,accuracy,precision,recall,f1,latency_ms
EfficientNet_B0,0.7131,0.7137,0.7131,0.7131,8.4771
ResNet50,0.7586,0.7572,0.7586,0.7573,8.6351
YOLOv8n,0.5659,0.6196,0.529,0.5707,7.5172
ViT_B16,0.7342,0.7362,0.7342,0.7275,12.9514
Loading
Loading