Research
SimScale: Learning to Drive via Real-World Simulation at Scale
Overview Research area: End-to-end autonomous driving, specifically simulation-based data scaling for learned planners (computer vision, robotics, and generative simulation). Technical level: Intermed
- arXiv
- 2511.23369
- Published
- 2025-11-28
- Authors
- Haochen Tian, Tianyu Li, Haochen Liu, Jiazhi Yang, Yihang Qiu, Guang Li, Junli Wang, Yinfeng Gao, Zhang Zhang, Liang Wang, Hangjun Ye, Tieniu Tan, Long Chen, Hongyang Li
AI summary
Overview
Research area: End-to-end autonomous driving, specifically simulation-based data scaling for learned planners (computer vision, robotics, and generative simulation).
Technical level: Intermediate. Readers should be comfortable with end-to-end driving architectures, closed-loop evaluation metrics, and the general idea of photorealistic scene reconstruction, but the paper's core argument is conceptual and can be followed without deep mathematical background.
Scope: The paper introduces SimScale, a system that generates large volumes of synthetic driving data from existing real-world logs by perturbing ego trajectories, rendering novel views with 3D Gaussian Splatting, and labeling them with pseudo-expert demonstrations, then co-trains planners on real and simulated data.
What This Paper Is About
Real-world driving datasets are dominated by routine, safe driving, so the rare and safety-critical situations that planners most need to handle are poorly represented. SimScale addresses this by synthetically expanding existing logs: it perturbs the ego vehicle into out-of-distribution states, renders what the car would see from those states, and attaches feasible recovery trajectories as supervision. The goal is to show that scaling this kind of simulation data, while holding the real-world corpus fixed, produces predictable and substantial improvements in planner robustness and generalization.
Key Contributions
-
A scalable 3DGS-based simulation data engine that reconstructs real driving scenes as a static background plus movable vehicle assets, enabling controllable multi-view rendering from perturbed ego poses at scale.
-
A pseudo-expert scene simulation pipeline that perturbs ego trajectories into diverse, physically plausible out-of-distribution states, rolls them out in a reactive environment (IDM traffic agents, LQR ego control), and generates supervision via either a retrieval-based "recovery" expert or a privileged rule-based "planner" expert (PDM-Closed).
-
A model-agnostic sim-real co-training recipe validated across three planner paradigms — regression (LTF), diffusion (DiffusionDrive), and vocabulary scoring (GTRS-Dense) — showing consistent gains on the NAVSIM-v2 navhard and navtest benchmarks.
-
An empirical scaling analysis of simulation data under a fixed real-data budget, fitting a log-quadratic curve to characterize where planners saturate and which design choices (expert type, multimodality, reactivity) drive continued improvement.
Main Findings
-
Substantial benchmark gains: Sim-real co-training improves every tested planner, with up to +8.6 EPDMS on the challenging navhard benchmark and +2.9 on navtest. GTRS-Dense with a V2-99 backbone reaches 48.0 EPDMS on navhard, a new state of the art.
-
Weaker baselines benefit most: LTF and DiffusionDrive gain over 20% relative on navhard, suggesting simulation data unlocks latent capacity in models that were underutilizing the real dataset.
-
Exploratory experts beat conservative ones: Recovery-based experts (retrieving human trajectories) converge earlier and plateau at lower performance. Planner-based experts explore a broader action space and deliver better scaling, only losing in very small-data regimes where human-like supervision is easier to learn.
-
Reactive environments matter: Two rounds of non-reactive simulation produced 141K valid trajectories and no EPDMS improvement, while reactive simulation with fewer samples (120K) improved scores and continued improving at 167K samples, isolating interaction dynamics as a key factor.
-
Multimodal planners scale better: Though LTF and DiffusionDrive are comparable in size (56M vs 61M parameters), LTF saturates and degrades once simulated data roughly equals real data, while DiffusionDrive improves near-linearly. The authors attribute this to simulation introducing effectively multimodal supervision, which single-mode regression cannot represent.
-
Reward signals can replace simulated experts for scoring planners: With a real expert still present to stabilize training, GTRS-Dense trained only on simulated rewards (no simulated expert trajectories) matched or slightly exceeded expert-supervised co-training (48.0 vs 47.7 EPDMS for V2-99). Reward-only training on real data alone degrades performance, so simulation is what makes the reward signal useful.
-
Predictable, saturating scaling: Performance as a function of total data size fits a log-quadratic form, with the quadratic coefficient indicating whether a planner has hit a saturation point.
Methodology in Plain English
The pipeline starts from existing driving logs in the navtrain split of NAVSIM (built on nuPlan).
Scene reconstruction. Each scene is reconstructed in spatio-temporal blocks using 3D Gaussian Splatting, with the static background and each vehicle modeled as separate assets. Colored LiDAR points and 3D bounding boxes guide initialization. Blocks whose novel-view renderings fall below 27 PSNR are discarded to keep synthetic imagery clean.
Creating out-of-distribution states. For each clip, the ego trajectory is perturbed using candidates drawn from a vocabulary of 16,384 clustered human trajectories, restricted to plausible longitudinal shifts (up to 20 m), lateral shifts (up to 2 m), and heading changes (within 20 degrees). Trajectories that collide, leave the road, or simulate unstably are removed, and endpoints are sparsely gridded so that coverage of the state space is roughly uniform.
Reactive rollout. Both the perturbation phase and the recovery phase run in a closed loop: the ego follows an LQR controller while surrounding agents respond via the Intelligent Driver Model, so traffic reacts plausibly to the ego's actions rather than replaying a fixed script.
Generating supervision. From the perturbed end state, one of two pseudo-experts produces a target trajectory. The recovery expert retrieves the closest human maneuver from a large vocabulary by matching initial and final poses. The planner expert runs a privileged rule-based planner (PDM-Closed) on ground-truth states. Both are filtered against physical, kinematic, and traffic-rule constraints.
Rendering and training. Valid ego-and-agent rollouts are rendered into multi-view videos at 2048×512, and the samples are added to a pool of 147K recovery-based and 237K planner-based scenes. Training simply mixes real and simulated samples at random, using standard imitation loss for regression and diffusion planners, and imitation plus reward loss for the scoring planner.
Evaluation. navhard tests closed-loop performance in safety-critical conditions (244 real scenarios plus 4,164 synthetic 3DGS ones), while navtest tests generalization across 12,146 real scenarios. Both use the EPDMS metric, which multiplies penalty terms (collisions, drivable area, direction, traffic lights) with a weighted average of progress, comfort, lane keeping, and time-to-collision terms.
Why This Matters
Impact on research. The paper reframes simulation not as a closed-loop evaluation tool but as a training-data amplifier for end-to-end planners. It provides quantitative evidence that data scaling in driving can proceed without collecting more real miles, and it links that scaling to architectural properties — notably that multimodal planners benefit far more than unimodal regression. The released data and code make the recipe reproducible.
Real-world applications:
- Autonomous vehicle development: Expanding rare edge cases (near-collisions, lane drift, cut-ins, departures) into trainable supervision without physically encountering them.
- Safety validation: Generating controllable, repeatable safety-critical interactions for stress-testing planning stacks under conditions that are impractical to stage on public roads.
- Fleet data reuse: Extracting more value from already-collected driving logs, reducing the marginal cost of each new training iteration.
- Simulation tooling: The reactive 3DGS reconstruction pipeline is reusable for other embodied AI domains where perception and control must be learned jointly.
Industry relevance. The work is a collaboration between OpenDriveLab, the Chinese Academy of Sciences, and Xiaomi EV, and the modules it evaluates (LQR control, IDM traffic simulation, 3DGS reconstruction) are all standard industrial tooling. The finding that reward-only training works for scoring-based planners with a real-data anchor suggests a practical path toward reinforcement-style optimization in production planning stacks.
Future Directions
-
Closing the visual domain gap further: The authors acknowledge that rendering artifacts (temporal jitter, lighting inconsistencies) accumulate and eventually dominate performance under aggressive scaling.
-
Extending beyond Gaussian splatting assets: Current scenes are limited to what can be reconstructed from existing logs, so genuinely novel locations, weather, and sensor configurations are out of reach.
-
Better multimodal planner architectures: Since multimodal planners scale better, understanding which specific architectural components produce that advantage, and whether regression planners can be adapted to match it, remains open.
-
Multi-expert ensembles and varying real-data budgets: The supplementary material mentions initial experiments in this direction, but the interaction between simulated data volume and real data volume is not fully characterized.
-
Reward design for closed-loop reinforcement: Reward-only training succeeded only with a real expert providing an anchor. Establishing when reward signals can fully replace expert trajectories would make simulation data substantially cheaper to produce.
Target Audience
Researchers and engineers working on end-to-end autonomous driving, closed-loop planning, and driving simulation. It is also relevant to practitioners interested in data scaling laws beyond language and vision, and to anyone building photorealistic simulators for embodied agents. Readers focused purely on 3D reconstruction or graphics may find the rendering pipeline familiar, but the contribution lies in how the rendered data is labeled and used for policy learning.
Authors’ abstract
Achieving fully autonomous driving systems requires learning rational decisions in a wide span of scenarios, including safety-critical and out-of-distribution ones. However, such cases are underrepresented in real-world corpus collected by human experts. To complement for the lack of data diversity, we introduce a novel and scalable simulation framework capable of synthesizing massive unseen states upon existing driving logs. Our pipeline utilizes advanced neural rendering with a reactive environment to generate high-fidelity multi-view observations controlled by the perturbed ego trajectory. Furthermore, we develop a pseudo-expert trajectory generation mechanism for these newly simulated states to provide action supervision. Upon the synthesized data, we find that a simple co-training strategy on both real-world and simulated samples can lead to significant improvements in both robustness and generalization for various planning methods on challenging real-world benchmarks, up to +8.6 EPDMS on navhard and +2.9 on navtest. More importantly, such policy improvement scales smoothly by increasing simulation data only, even without extra real-world data streaming in. We further reveal several crucial findings of such a sim-real learning system, which we term SimScale, including the design of pseudo-experts and the scaling properties for different policy architectures. Simulation data and code have been released at https://github.com/OpenDriveLab/SimScale.