Update README.md
Browse files
README.md
CHANGED
|
@@ -16,3 +16,126 @@ tags:
|
|
| 16 |
|
| 17 |
**Driving like yourself: A Benchmark for Closed-Loop Personalized End-to-End Autonomous Driving**
|
| 18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
|
| 17 |
**Driving like yourself: A Benchmark for Closed-Loop Personalized End-to-End Autonomous Driving**
|
| 18 |
|
| 19 |
+
## Overview
|
| 20 |
+
|
| 21 |
+
Person2Drive is a CARLA-based benchmark for studying personalized end-to-end autonomous driving. It contains human driving records collected in closed-loop simulation environments and is organized at the driver level.
|
| 22 |
+
|
| 23 |
+
The goal of the benchmark is to support research on human driving style modeling, driver-level personalization, route-level generalization, and closed-loop evaluation of end-to-end driving models. Unlike conventional driving datasets that mainly capture generic driving behavior, Person2Drive provides multiple driving records from anonymized human drivers under shared or comparable simulation settings.
|
| 24 |
+
|
| 25 |
+
## Release Status
|
| 26 |
+
|
| 27 |
+
This Hugging Face repository is the stable public access page for Person2Drive.
|
| 28 |
+
|
| 29 |
+
The dataset is being uploaded and organized progressively. Files already available in this repository are part of the public release. The current upload status is summarized in [`RELEASE_MANIFEST.md`](RELEASE_MANIFEST.md).
|
| 30 |
+
|
| 31 |
+
Additional metadata, benchmark documentation, and usage instructions will be added to this repository as the release is finalized for the ECCV 2026 camera-ready version.
|
| 32 |
+
|
| 33 |
+
## Dataset Statistics
|
| 34 |
+
|
| 35 |
+
The full Person2Drive release contains:
|
| 36 |
+
|
| 37 |
+
* 50 anonymized human drivers;
|
| 38 |
+
* 4 driving routes in closed-loop CARLA environments;
|
| 39 |
+
* driver-level folders under `drivers/`;
|
| 40 |
+
* route-level compressed archives for each driver;
|
| 41 |
+
* metadata files for driver-level and map-level organization.
|
| 42 |
+
|
| 43 |
+
Each `driverXX/` folder corresponds to one anonymized human driver. Route-level data are stored as `.tar.zst` archives.
|
| 44 |
+
|
| 45 |
+
## Dataset Contents
|
| 46 |
+
|
| 47 |
+
The released data include the information required for personalized end-to-end driving research, including:
|
| 48 |
+
|
| 49 |
+
* ego-vehicle states;
|
| 50 |
+
* control signals such as steering, throttle, and brake;
|
| 51 |
+
* ego trajectories;
|
| 52 |
+
* route and navigation information;
|
| 53 |
+
* selected sensor data used by end-to-end driving models;
|
| 54 |
+
* metadata for driver-level and route-level organization.
|
| 55 |
+
|
| 56 |
+
The dataset can be used for both open-loop behavior analysis and closed-loop personalized driving evaluation.
|
| 57 |
+
|
| 58 |
+
## Repository Structure
|
| 59 |
+
|
| 60 |
+
The repository is organized as follows:
|
| 61 |
+
|
| 62 |
+
```text
|
| 63 |
+
Person2Drive/
|
| 64 |
+
├── drivers/
|
| 65 |
+
│ ├── driver01/
|
| 66 |
+
│ │ ├── Town04_drive_1.tar.zst
|
| 67 |
+
│ │ ├── ...
|
| 68 |
+
│ │ ├── Town04_drive_8.tar.zst
|
| 69 |
+
│ │ ├── Town05_drive_1.tar.zst
|
| 70 |
+
│ │ ├── ...
|
| 71 |
+
│ │ ├── Town05_drive_8.tar.zst
|
| 72 |
+
│ │ └── b2d_infos_train.pkl
|
| 73 |
+
│ ├── driver02/
|
| 74 |
+
│ │ ├── Town04_drive_1.tar.zst
|
| 75 |
+
│ │ ├── ...
|
| 76 |
+
│ │ ├── Town05_drive_8.tar.zst
|
| 77 |
+
│ │ └── b2d_infos_train.pkl
|
| 78 |
+
│ └── ...
|
| 79 |
+
├── b2d_map_infos.pkl
|
| 80 |
+
├── RELEASE_MANIFEST.md
|
| 81 |
+
├── DATASET_DETAILS.md
|
| 82 |
+
└── README.md
|
| 83 |
+
```
|
| 84 |
+
|
| 85 |
+
The file `b2d_infos_train.pkl` stores metadata associated with the corresponding driver data. The file `b2d_map_infos.pkl` contains map-level metadata used by the benchmark and evaluation pipeline.
|
| 86 |
+
|
| 87 |
+
Please refer to [`RELEASE_MANIFEST.md`](RELEASE_MANIFEST.md) for the current upload status and [`DATASET_DETAILS.md`](DATASET_DETAILS.md) for detailed data organization.
|
| 88 |
+
|
| 89 |
+
## Download and Extraction
|
| 90 |
+
|
| 91 |
+
The released data are stored as `.tar.zst` archives. Each archive corresponds to a route-level driving record package for one anonymized driver.
|
| 92 |
+
|
| 93 |
+
To clone the repository with Git LFS:
|
| 94 |
+
|
| 95 |
+
```bash
|
| 96 |
+
git lfs install
|
| 97 |
+
git clone https://huggingface.co/datasets/dongxr7/Person2Drive
|
| 98 |
+
```
|
| 99 |
+
|
| 100 |
+
To extract an archive on Linux:
|
| 101 |
+
|
| 102 |
+
```bash
|
| 103 |
+
tar -I zstd -xvf Town04_drive_1.tar.zst
|
| 104 |
+
```
|
| 105 |
+
|
| 106 |
+
Alternatively, extraction can be performed in two steps:
|
| 107 |
+
|
| 108 |
+
```bash
|
| 109 |
+
zstd -d Town04_drive_1.tar.zst
|
| 110 |
+
tar -xvf Town04_drive_1.tar
|
| 111 |
+
```
|
| 112 |
+
|
| 113 |
+
On Windows, `.tar.zst` archives can be extracted with archive tools that support Zstandard compression, such as 7-Zip, PeaZip, or Bandizip.
|
| 114 |
+
|
| 115 |
+
## Benchmark Usage
|
| 116 |
+
|
| 117 |
+
Person2Drive is intended for evaluating whether an end-to-end driving model can adapt to individual human driving styles while maintaining safe closed-loop performance.
|
| 118 |
+
|
| 119 |
+
Typical evaluation settings include:
|
| 120 |
+
|
| 121 |
+
* driver-level personalization;
|
| 122 |
+
* route-level generalization;
|
| 123 |
+
* trajectory prediction quality;
|
| 124 |
+
* driving style similarity;
|
| 125 |
+
* closed-loop driving performance.
|
| 126 |
+
|
| 127 |
+
Benchmark scripts, evaluation protocols, and additional usage instructions will be released in this repository.
|
| 128 |
+
|
| 129 |
+
## Privacy and Anonymization
|
| 130 |
+
|
| 131 |
+
Driver identities are anonymized as `driverXX`. The dataset does not use real driver names in the public release.
|
| 132 |
+
|
| 133 |
+
## Citation
|
| 134 |
+
|
| 135 |
+
Citation information will be added after the ECCV 2026 camera-ready version is finalized.
|
| 136 |
+
|
| 137 |
+
## Contact
|
| 138 |
+
|
| 139 |
+
For questions about the dataset, please contact Xiaoru Dong at [xrdong@cs.hku.hk](mailto:xrdong@cs.hku.hk).
|
| 140 |
+
|
| 141 |
+
|