v004_update.md

August 11, 2026 ยท View on GitHub

Bench2Drive Benchmark

  1. We released a new evaluation set with 220 routes (44 scenarios * 5) in it. The xml file is at leaderboard/data/bench2drive_0.0.4_val.xml
  2. Results:
MethodDriving ScoreSuccess RateEfficiencyComfortOvertakingMergingEmergency_BrakeGive_WayTraffic_SignsMean
TCP51.4426.3675.6730.1614.4914.0659.6433.3363.9537.10
ThinkTwice52.8427.7390.7319.7620.2920.3159.6433.3366.8640.09
DriveAdapter54.9630.4591.8220.6326.0921.8864.9033.3369.1843.08
ADMLP35.390.0064.9220.950.000.000.000.0045.359.07
UniAD38.6919.09120.1664.0911.5910.9440.3533.338.1420.87
VAD38.6517.27163.7467.3413.0417.1929.8216.6719.7719.30
DriveTrans60.2035.91168.8717.2230.4339.0649.120.0061.6336.05
Drive-pi069.7145.91178.0710.8024.6439.0673.6833.3366.8647.52
Simlingo86.5570.45251.7235.4763.7760.9491.2350.0090.7071.34
LEAD95.5987.28201.5520.5689.8673.4498.2550.0097.6781.84

Bench2Drive Data Collection

  1. We released a new training set collected by Think2Drive, containing 44 scenarios * 25 routes = 1100 routes. Please visit https://huggingface.co/datasets/rethinklab/Bench2Drive-V0.0.4 for more details. In the new dataset:
  2. Depth is no longer stored as .png files, but as .npz files to avoid precision loss. The dataset is available at https://huggingface.co/datasets/rethinklab/Bench2Drive-V0.0.4-depth Related issue: https://github.com/Thinklab-SJTU/Bench2Drive/issues/21
  3. We introduced a new modality: 3D occupancy (3D occ).
  4. We fixed the bug in the Radar sensor position.
  5. We fixed the skeleton collection bug. Related issue: https://huggingface.co/datasets/rethinklab/Bench2Drive-Map-V0.0.4
  6. When vehicles in the scene disappear due to CARLA scenario or Traffic Manager issues, they will now be annotated.

Visualizer

  1. We open-sourced a data visualizer under B2DVisualize, feel free to try it out.

Bench2Drive Data Fixes

  1. We fixed duplicated lane points in the Map GT: https://github.com/Thinklab-SJTU/Bench2Drive/issues/149. The updated map is available at https://huggingface.co/datasets/rethinklab/Bench2Drive-Map-V0.0.4

Bench2Drive Zoo

  1. Reduced memory usage in data preprocessing and loading during training. (https://github.com/Thinklab-SJTU/Bench2DriveZoo/issues/92 https://github.com/Thinklab-SJTU/Bench2DriveZoo/issues/28)
  2. Fixed ego_lcf_feat in VAD. (https://github.com/Thinklab-SJTU/Bench2DriveZoo/issues/46)
  3. Fixed ego pose calculation during closed-loop inference. (https://github.com/Thinklab-SJTU/Bench2DriveZoo/pull/102)
  4. Fixed OccHead in UniAD. (https://github.com/Thinklab-SJTU/Bench2DriveZoo/issues/113)
  5. Fixed duplicate NameMapping entries in configs. (https://github.com/Thinklab-SJTU/Bench2DriveZoo/issues/57)
  6. Improved readability of some code.