Autonomous Driving Model Evaluation

Autonomous-driving evaluation measures whether perception, prediction, planning, and control behave acceptably under road scenarios that matter for safety. It is the evaluation companion to the broader autonomous driving application page. Inputs include camera, lidar, radar, maps, ego-motion, annotations, scenario tags, simulation results, and disengagement or intervention logs. Targets include object boxes, tracks, segmentation, predicted trajectories, planned maneuvers, and policy-level outcomes.

Framing

Perception evaluation uses object detection, tracking, and detection and segmentation metrics, but aggregate mAP is not enough. A safety review should combine offline evaluation, curated golden datasets, simulation, replay, and on-road review. Use risk-weighted error taxonomies for vulnerable road users, occlusions, night, rain, construction, emergency vehicles, and unusual signs. Probabilities should be checked with calibration before downstream planning consumes them.

nuScenes is a public benchmark anchor: the paper reports 1,000 scenes, each 20 seconds long, with 6 cameras, 5 radars, 1 lidar, 360-degree coverage, and 3D annotations for 23 classes and 8 attributes.

Worked Scenario Slice

This scenario table shows how aggregate recall can hide a high-risk slice:

scenariodetectedtotalrecallrisk weight
day clear9409820.9571
night rain35500.7008
occluded pedestrian7120.58320

The aggregate recall is . The risk-weighted miss rate is 0.372 because the occluded-pedestrian miss rate is high and its risk weight is large. The overall recall looks strong, but occluded-pedestrian recall is only 58.3%. That slice should drive model review before deployment even if the aggregate benchmark improves.

Failure Modes

Long-tail events dominate safety risk. Evaluation fails when logs overrepresent easy daylight driving, when simulation assets are unrealistic, or when labels miss ambiguous intent. Models can also trade false positives for braking discomfort, so system-level metrics must include planner consequences, not perception scores alone.

References