Add dataset card, link to paper and code

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +90 -0
README.md ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - robotics
4
+ ---
5
+
6
+ # MVAdapt Dataset
7
+
8
+ This repository contains the dataset for the paper [MVAdapt: Zero-Shot Multi-Vehicle Adaptation for End-to-End Autonomous Driving](https://huggingface.co/papers/2604.11854).
9
+
10
+ The official code is available at [GitHub - hae-sung-oh/MVAdapt](https://github.com/hae-sung-oh/MVAdapt).
11
+
12
+ ## Dataset Summary
13
+
14
+ MVAdapt is a physics-conditioned adaptation framework for multi-vehicle end-to-end (E2E) autonomous driving. This dataset provides the training and evaluation data collected from the CARLA simulator (version 0.9.12) to enable models to generalize across a wide range of vehicles by conditioning driving policies on explicit physical parameters.
15
+
16
+ ## Data Annotations
17
+
18
+ As described in the official repository, the dataset includes the following annotations:
19
+
20
+ - `vehicle_id`: Vehicle model ids
21
+ - `gt_waypoint`: Ground truth waypoint for vehicle model
22
+ - `bs_waypoint`: Predicted waypoint from baseline model for default vehicle model
23
+ - `gt_control`: Ground truth control for vehicle model
24
+ - `bs_control`: Predicted control from baseline model for default vehicle model
25
+ - `scene_features`: Features that extracted by backbone model (TransFuser)
26
+ - `physics_params`: Physical properties for vehicle model
27
+ - `gear_params`: Gear properties for vehicle model
28
+ - `rgb`: RGB image
29
+ - `lidar_bev`: LiDAR BEV image
30
+ - `target_point`: Target heading point
31
+ - `ego_vel`: Speed for ego vehicle
32
+ - `command`: Command for ego vehicle
33
+
34
+ ## Included Vehicles
35
+
36
+ The dataset contains data for various vehicles in the CARLA simulator:
37
+
38
+ ```
39
+ 0 vehicle.lincoln.mkz_2017
40
+ 1 vehicle.audi.a2
41
+ 2 vehicle.audi.etron
42
+ 3 vehicle.audi.tt
43
+ 4 vehicle.bh.crossbike
44
+ 5 vehicle.bmw.grandtourer
45
+ 6 vehicle.carlamotors.carlacola
46
+ 7 vehicle.carlamotors.firetruck
47
+ 8 vehicle.chevrolet.impala
48
+ 9 vehicle.citroen.c3
49
+ 10 vehicle.diamondback.century
50
+ 11 vehicle.dodge.charger_2020
51
+ 12 vehicle.dodge.charger_police
52
+ 13 vehicle.dodge.charger_police_2020
53
+ 14 vehicle.ford.ambulance
54
+ 15 vehicle.ford.mustang
55
+ 16 vehicle.gazelle.omafiets
56
+ 17 vehicle.harley-davidson.low_rider
57
+ 18 vehicle.jeep.wrangler_rubicon
58
+ 19 vehicle.kawasaki.ninja
59
+ 20 vehicle.lincoln.mkz_2020
60
+ 21 vehicle.mercedes.coupe
61
+ 22 vehicle.mercedes.coupe_2020
62
+ 23 vehicle.mercedes.sprinter
63
+ 24 vehicle.micro.microlino
64
+ 25 vehicle.mini.cooper_s
65
+ 26 vehicle.mini.cooper_s_2021
66
+ 27 vehicle.nissan.micra
67
+ 28 vehicle.nissan.patrol
68
+ 29 vehicle.nissan.patrol_2021
69
+ 30 vehicle.seat.leon
70
+ 31 vehicle.tesla.cybertruck
71
+ 32 vehicle.tesla.model3
72
+ 33 vehicle.toyota.prius
73
+ 34 vehicle.vespa.zx125
74
+ 35 vehicle.volkswagen.t2
75
+ 36 vehicle.yamaha.yzf
76
+ ```
77
+
78
+ ## Citation
79
+
80
+ ```bibtex
81
+ @misc{oh2026mvadaptzeroshotmultivehicleadaptation,
82
+ title={MVAdapt: Zero-Shot Multi-Vehicle Adaptation for End-to-End Autonomous Driving},
83
+ author={Haesung Oh and Jaeheung Park},
84
+ year={2026},
85
+ eprint={2604.11854},
86
+ archivePrefix={arXiv},
87
+ primaryClass={cs.RO},
88
+ url={https://arxiv.org/abs/2604.11854},
89
+ }
90
+ ```