VietPhong/kitti-yolo11n-robustness-benchmark
KITTI YOLO11n Robustness & Adversarial Benchmark Suite This dataset contains 649,425 benchmark samples evaluating the perception robustness of YOLO11n (Ultralytics YOLOv11 nano in original FP32 precision) on the official KITTI Object Detection train set (3,711 images) under 35 attack & corruption techniques across 5 severity levels. ?? Benchmark Leaderboard (mAP@0.5 Drop on YOLO11n) Clean Baseline AP50: 0.3555 Evaluation Model: YOLO11n (Original weights:… See the full description on the dataset page: https://huggingface.co/datasets/VietPhong/kitti-yolo11n-robustness-benchmark.
KITTI YOLO11n Robustness & Adversarial Benchmark Suite
This dataset contains 649,425 benchmark samples evaluating the perception robustness of YOLO11n (Ultralytics YOLOv11 nano in original FP32 precision) on the official KITTI Object Detection train set (3,711 images) under 35 attack & corruption techniques across 5 severity levels.
?? Benchmark Leaderboard (mAP@0.5 Drop on YOLO11n)
- Clean Baseline AP50:
0.3555 - Evaluation Model: YOLO11n (Original weights:
yolo11n.pt, FP32 precision, size: 640x640) - Target Classes:
Car,Pedestrian,Cyclist
?? Dataset Structure
Each sample is stored in Apache Parquet format containing image bytes and rich detection metadata:
from datasets import load_dataset
dataset = load_dataset("VietPhong/kitti-yolo11n-robustness-benchmark", split="train", streaming=True)
sample = next(iter(dataset))
print("Original Image ID:", sample["original_image_id"])
print("Attack:", sample["attack_name"], "Severity:", sample["severity"])
print("PSNR (dB):", sample["psnr_db"], "SSIM:", sample["ssim"])
print("YOLO11n Clean Predictions:", sample["clean_predictions"])
print("YOLO11n Attacked Predictions:", sample["attacked_predictions"])??? Reproduction & Provenance
Generated using the AdverTest Framework. All evaluations use strict FP32 baseline execution.
