Autonomous Driving Carla
Pillar scores are computed during the next indexing cycle.
| Entity Passport | |
| Registry ID | hf-dataset--jkdxbns--autonomous-driving-carla |
| License | MIT |
| Provider | huggingface |
Cite this dataset
Academic & Research Attribution
@misc{hf_dataset__jkdxbns__autonomous_driving_carla,
author = {jkdxbns},
title = {Autonomous Driving Carla Dataset},
year = {2026},
howpublished = {\url{https://huggingface.co/datasets/jkdxbns/autonomous-driving-carla}},
note = {Accessed via Free2AITools Knowledge Fortress}
} đŦTechnical Deep Dive
Full Specifications [+]âž
âī¸ Nexus Index V2.0
đŦ Index Insight
FNI V2.0 for Autonomous Driving Carla: Semantic (S:0), Authority (A:0), Popularity (P:0), Recency (R:0), Quality (Q:0).
Verification Authority
đī¸ Data Preview
Row-level preview not available for this dataset.
Schema structure is shown in the Field Logic panel when available.
đ Explore Full Dataset âđ§Ŧ Field Logic
Schema not yet indexed for this dataset.
Dataset Specification
CARLA Autonomous Driving Dataset
Custom datasets for autonomous driving in CARLA simulator
Created for CMPE 789 - Robot Perception at Rochester Institute of Technology
đ Dataset Overview
This repository contains two custom-generated datasets from the CARLA 0.9.15 simulator for training autonomous driving perception models:
| Dataset | Task | Images | Format | Size |
|---|---|---|---|---|
| YOLO Dataset | Object Detection | 4,000 | YOLOv8/v11 | ~1.2 GB |
| UFLD Dataset | Lane Detection | 10,000 | TuSimple-like | ~3.4 GB |
đ YOLO Object Detection Dataset
Description
Custom object detection dataset generated from CARLA Town01 with optimized graphics settings. Contains annotations for vehicles, pedestrians, traffic lights, and speed limit signs.
Classes
| Class ID | Class Name | Total Annotations | Description |
|---|---|---|---|
| 0 | vehicle |
2,797 | Cars, trucks, vans |
| 1 | pedestrian |
3,329 | Walking pedestrians |
| 2 | traffic_light |
409 | Traffic signals |
| 3 | speed_limit |
43 | Speed limit signs |
Total Annotations: 6,578
Split Distribution
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
â YOLO Dataset Splits â
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¤
â Train (70.3%) ââââââââââââââââââââââââââââââââââââ 2,812 â
â Val (19.8%) ââââââââââââââââââââââââââââââââââââ 790 â
â Test (9.9%) ââââââââââââââââââââââââââââââââââââ 398 â
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
| Split | Images | Vehicle | Pedestrian | Traffic Light | Speed Limit |
|---|---|---|---|---|---|
| Train | 2,812 | 1,949 | 2,252 | 301 | 33 |
| Val | 790 | 562 | 712 | 77 | 5 |
| Test | 398 | 288 | 365 | 31 | 5 |
| Total | 4,000 | 2,797 | 3,329 | 409 | 43 |
Class Distribution Chart
Class Distribution (Total Annotations)
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
pedestrian ââââââââââââââââââââââââââââââââââââââââââââ 3,329 (50.6%)
vehicle ââââââââââââââââââââââââââââââââââââââââââââ 2,797 (42.5%)
traffic_light ââââââââââââââââââââââââââââââââââââââââââââ 409 (6.2%)
speed_limit ââââââââââââââââââââââââââââââââââââââââââââ 43 (0.7%)
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Format
Standard YOLO format with normalized bounding boxes:
Example:
0 0.499978 0.660904 0.117395 0.253719
1 0.726564 0.544706 0.078319 0.045380
2 0.545117 0.490625 0.004297 0.028472
Directory Structure
yolo_dataset/
âââ train/
â âââ images/ # 2,812 JPG images (1640Ã590)
â âââ labels/ # 2,812 TXT label files
âââ val/
â âââ images/ # 790 JPG images
â âââ labels/ # 790 TXT label files
âââ test/
â âââ images/ # 398 JPG images
â âââ labels/ # 398 TXT label files
âââ dataset.yaml # YOLO configuration file
âââ classes.json # Class ID mapping
đŖī¸ UFLD Lane Detection Dataset
Description
Lane detection dataset in TuSimple-like format, generated from CARLA Town01 for training Ultra-Fast Lane Detection (UFLD) models. Contains polyline annotations for left and right lane boundaries.
Split Distribution
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
â UFLD Dataset Splits â
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¤
â Train (70%) ââââââââââââââââââââââââââââââââââââ 7,000 â
â Val (20%) ââââââââââââââââââââââââââââââââââââ 2,000 â
â Test (10%) ââââââââââââââââââââââââââââââââââââ 1,000 â
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
| Split | Images | Percentage |
|---|---|---|
| Train | 7,000 | 70% |
| Val | 2,000 | 20% |
| Test | 1,000 | 10% |
| Total | 10,000 | 100% |
Annotation Format
Each image has:
- Polyline annotations (
.lines.txt): X,Y coordinate pairs for lane boundaries - Segmentation labels (
.png): Pixel-wise lane masks - Ground truth list (
train_gt.txt,val_gt.txt): Image paths with lane existence flags
Ground Truth Format:
Example:
/images/train/000000.jpg /labels/train/000000.png 1 1 0 0
(Two lanes detected: left and right)
Directory Structure
ufld_dataset/
âââ annotations/
â âââ train/ # 7,000 .lines.txt files
â âââ val/ # 2,000 .lines.txt files
â âââ test/ # 1,000 .lines.txt files
âââ images_train.zip # 7,000 JPG images (2.3 GB)
âââ images_val.zip # 2,000 JPG images (647 MB)
âââ images_test.zip # 1,000 JPG images (325 MB)
âââ labels_train.zip # 7,000 PNG segmentation masks (18 MB)
âââ labels_val.zip # 2,000 PNG segmentation masks (5.1 MB)
âââ labels_test.zip # 1,000 PNG segmentation masks (2.6 MB)
âââ list/
âââ train_gt.txt # Training split ground truth
âââ val_gt.txt # Validation split ground truth
âââ test.txt # Test image list
Note: Images and labels are provided as ZIP files to reduce file count. Extract after downloading.
đĨ Download Instructions
Using Hugging Face CLI
# Install huggingface_hub if needed
pip install huggingface_hub
# Download YOLO dataset (ready to use)
huggingface-cli download jkdxbns/autonomous-driving-carla yolo_dataset --repo-type dataset --local-dir ./
# Download UFLD dataset
huggingface-cli download jkdxbns/autonomous-driving-carla ufld_dataset --repo-type dataset --local-dir ./
Extract UFLD ZIP Files
cd ufld_dataset
# Extract images
unzip images_train.zip -d .
unzip images_val.zip -d .
unzip images_test.zip -d .
# Extract labels
unzip labels_train.zip -d .
unzip labels_val.zip -d .
unzip labels_test.zip -d .
Using Python
from huggingface_hub import snapshot_download
# Download entire dataset
snapshot_download(
repo_id="jkdxbns/autonomous-driving-carla",
repo_type="dataset",
local_dir="./datasets"
)
đŧī¸ Image Specifications
| Property | Value |
|---|---|
| Resolution | 1640 Ã 590 pixels |
| Format | JPEG |
| Color | RGB |
| FOV | 150° (wide-angle) |
| Camera Position | Front-mounted, 2.4m height |
| Simulator | CARLA 0.9.15 |
| Map | Town01 (optimized graphics) |
đ¯ Intended Use
These datasets are designed for:
- Training object detection models (YOLO, Faster R-CNN, etc.) for autonomous driving
- Training lane detection models (UFLD, LaneNet, etc.)
- Research in simulation-to-real transfer learning
- Educational purposes in robotics and computer vision courses
- Benchmarking perception algorithms in controlled environments
đ Training Results
Models trained on these datasets achieve:
| Model | Task | Performance |
|---|---|---|
| YOLO11n | Object Detection | mAP50: 0.85+ |
| UFLD ResNet-18 | Lane Detection | Accuracy: 92%+ |
Pre-trained weights available at: đ¤ jkdxbns/autonomous-driving-carla
đ Citation
If you use this dataset in your research, please cite:
@misc{carla_autonomous_driving_dataset_2024,
author = {Jatin Khokhani},
title = {CARLA Autonomous Driving Dataset},
year = {2024},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/jkdxbns/autonomous-driving-carla}
}
đ License
This dataset is released under the MIT License.
đ Related Resources
- GitHub Repository: autonomous-driving-carla
- Pre-trained Models: Hugging Face Models
- CARLA Simulator: carla.org
- UFLD Paper: Ultra Fast Structure-aware Deep Lane Detection
Created with â¤ī¸ for CMPE 789 - Robot Perception @ RIT
đ Structured Schema (Zero-Fabrication)
| Feature Key | Data Type |
|---|---|
text |
string |
Estimated Rows: 28,455
Social Proof
AI Summary: Based on Hugging Face metadata. Not a recommendation.
đĄī¸ Dataset Transparency Report
Verified data manifest for traceability and transparency.
đ Identity & Source
- id
- hf-dataset--jkdxbns--autonomous-driving-carla
- slug
- jkdxbns--autonomous-driving-carla
- source
- huggingface
- author
- jkdxbns
- license
- MIT
- tags
- task_categories:object-detection, task_categories:image-segmentation, language:en, license:mit, size_categories:10k
âī¸ Technical Specs
- architecture
- null
- params billions
- null
- context length
- null
- pipeline tag
đ Engagement & Metrics
- downloads
- 28,282
- stars
- 0
- forks
- 0
Free2AITools Constitutional Data Pipeline: Curated disclosure mode active. (V15.x Standard)