Views
No views yet
| Model | File | Size | Description |
|---|---|---|---|
| YOLO11n | yolo_carla_best.pt | ~6MB | Object detection (vehicles, pedestrians, traffic lights, speed signs) |
| UFLD | ufld_carla_best.pth | ~735MB | Lane detection fine-tuned on CARLA |
| TuSimple | tusimple_18.pth | ~245MB | Pre-trained lane detection backbone |



1from huggingface_hub import hf_hub_download
2
3# Download YOLO model
4yolo_path = hf_hub_download(
5 repo_id="jkdxbns/autonomous-driving-carla",
6 filename="yolo_carla_best.pt"
7)
8
9# Download UFLD model
10ufld_path = hf_hub_download(
11 repo_id="jkdxbns/autonomous-driving-carla",
12 filename="ufld_carla_best.pth"
13)