File size: 4,950 Bytes
6f2b039 cbcd0b0 6f2b039 cbcd0b0 50e1657 44e9e09 50e1657 44e9e09 960c610 44e9e09 50e1657 d606e2a 5530995 d606e2a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | ---
license: apache-2.0
viewer: false
tags:
- autonomous-driving
- carla
- benchmark
- end-to-end-driving
- personalized-driving
---
# Person2Drive
**Person2Drive** is the dataset and benchmark repository for the ECCV 2026 paper:
**Driving like yourself: A Benchmark for Closed-Loop Personalized End-to-End Autonomous Driving**
## Overview
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.
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.
## Release Status
This Hugging Face repository is the stable public access page for Person2Drive.
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).
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.
## Dataset Statistics
The full Person2Drive release contains:
* 50 anonymized human drivers;
* 4 driving routes in closed-loop CARLA environments;
* driver-level folders under `drivers/`;
* route-level compressed archives for each driver;
* metadata files for driver-level and map-level organization.
Each `driverXX/` folder corresponds to one anonymized human driver. Route-level data are stored as `.tar.zst` archives.
## Dataset Contents
The released data include the information required for personalized end-to-end driving research, including:
* ego-vehicle states;
* control signals such as steering, throttle, and brake;
* ego trajectories;
* route and navigation information;
* selected sensor data used by end-to-end driving models;
* metadata for driver-level and route-level organization.
The dataset can be used for both open-loop behavior analysis and closed-loop personalized driving evaluation.
## Repository Structure
The repository is organized as follows:
```text
Person2Drive/
├── drivers/
│ ├── driver01/
│ │ ├── Town04_drive_1.tar.zst
│ │ ├── ...
│ │ ├── Town04_drive_8.tar.zst
│ │ ├── Town05_drive_1.tar.zst
│ │ ├── ...
│ │ ├── Town05_drive_8.tar.zst
│ │ └── b2d_infos_train.pkl
│ ├── driver02/
│ │ ├── Town04_drive_1.tar.zst
│ │ ├── ...
│ │ ├── Town05_drive_8.tar.zst
│ │ └── b2d_infos_train.pkl
│ └── ...
├── b2d_map_infos.pkl
├── RELEASE_MANIFEST.md
├── DATASET_DETAILS.md
└── README.md
```
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.
Detailed data organization and field descriptions are provided in [`DATASET_DETAILS.md`](DATASET_DETAILS.md).
## Download and Extraction
The released data are stored as `.tar.zst` archives. Each archive corresponds to a route-level driving record package for one anonymized driver.
To clone the repository with Git LFS:
```bash
git lfs install
git clone https://huggingface.co/datasets/dongxr7/Person2Drive
```
To extract an archive on Linux:
```bash
tar -I zstd -xvf Town04_drive_1.tar.zst
```
Alternatively, extraction can be performed in two steps:
```bash
zstd -d Town04_drive_1.tar.zst
tar -xvf Town04_drive_1.tar
```
On Windows, `.tar.zst` archives can be extracted with archive tools that support Zstandard compression, such as 7-Zip, PeaZip, or Bandizip.
## Benchmark Usage
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.
Typical evaluation settings include:
* driver-level personalization;
* route-level generalization;
* trajectory prediction quality;
* driving style similarity;
* closed-loop driving performance.
Benchmark scripts, evaluation protocols, and additional usage instructions will be released in this repository.
## Privacy and Anonymization
Driver identities are anonymized as `driverXX`. The dataset does not use real driver names in the public release.
## Citation
Citation information will be added after the ECCV 2026 camera-ready version is finalized.
## Contact
For questions about the dataset, please contact Xiaoru Dong at [xrdong@cs.hku.hk](mailto:xrdong@cs.hku.hk).
|