Improve dataset card and add paper link

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +50 -3
README.md CHANGED
@@ -1,3 +1,50 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - autonomous-driving
7
+ - carla
8
+ ---
9
+
10
+ # MVAdapt Dataset
11
+
12
+ 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).
13
+
14
+ MVAdapt is a physics-conditioned adaptation framework for multi-vehicle end-to-end (E2E) autonomous driving. The dataset includes driving data for 27 different vehicles in the CARLA simulator, covering a wide range of physical properties such as size, mass, and drivetrain characteristics.
15
+
16
+ [GitHub Repository](https://github.com/hae-sung-oh/MVAdapt)
17
+
18
+ ## Dataset Description
19
+
20
+ The dataset provides annotations and sensor data used to train and evaluate the MVAdapt model. It includes the following fields:
21
+
22
+ - `vehicle_id`: Vehicle model ids
23
+ - `gt_waypoint`: Ground truth waypoint for vehicle model
24
+ - `bs_waypoint`: Predicted waypoint from baseline model for default vehicle model
25
+ - `gt_control`: Ground truth control for vehicle model
26
+ - `bs_control`: Predicted control from baseline model for default vehicle model
27
+ - `scene_features`: Features that extracted by backbone model (TransFuser)
28
+ - `physics_params`: Physical properties for vehicle model
29
+ - `gear_params`: Gear properties for vehicle model
30
+ - `rgb`: RGB image
31
+ - `lidar_bev`: LiDAR BEV image
32
+ - `target_point`: Target heading point
33
+ - `ego_vel`: Speed for ego vehicle
34
+ - `command`: Command for ego vehicle
35
+
36
+ ## Citation
37
+
38
+ If you find this work or dataset useful, please consider citing:
39
+
40
+ ```bibtex
41
+ @misc{oh2026mvadaptzeroshotmultivehicleadaptation,
42
+ title={MVAdapt: Zero-Shot Multi-Vehicle Adaptation for End-to-End Autonomous Driving},
43
+ author={Haesung Oh and Jaeheung Park},
44
+ year={2026},
45
+ eprint={2604.11854},
46
+ archivePrefix={arXiv},
47
+ primaryClass={cs.RO},
48
+ url={https://arxiv.org/abs/2604.11854},
49
+ }
50
+ ```