Average displacement error at 3 seconds dropped from 0.47 to 0.26. That's a 45% reduction, and it comes from training a driving VLA on reasoning traces extracted from old-school rule-based planners, not from more data or bigger models.
Driving vision-language-action models (VLAs) that use chain-of-thought (CoT) reasoning are popular because they expose intermediate decisions in natural language and leverage pretrained VLM representations. Problem is, those rationales are often causally disconnected from the actual motion. The model talks about stopping for a pedestrian but the steering angle doesn't change. The reasoning is post-hoc, not structurally coupled to the trajectory.
Why Rule-Based Planners Are Better Teachers Than Human Annotations
The authors behind Neuro-Symbolic Drive (arXiv:2606.23938) realized that classical rule-based planners are already symbolic reasoning engines. They evaluate safety constraints, search over candidate maneuvers, and select a final trajectory. Every decision step leaves a trace. Instead of discarding that trace like everyone else does, they instrumented the planner in simulation to capture both the executed trajectory and the internal decision chain at each rule-evaluation step.
Each trace gets serialized into a structured, rule-grounded reasoning passage and paired with the trajectory. They used this data to fine-tune Qwen3.5-4B as a driving VLA. Because the reasoning traces are derived directly from the planner states that determine the action, the model learns that "I must stop because lane is occupied" should actually correlate with a brake command. Causal coupling by construction, not by alignment.
Concrete Numbers: Three Cameras vs Eight Cameras
On their simulator-generated benchmark, the improvements hold across sensor configurations. Under three-camera perception, ADE@3s went from 0.47 to 0.26 and miss rate from 8.30% to 6.40%. Under eight-camera perception, ADE@3s dropped from 0.54 to 0.26 and miss rate from 10.13% to 5.99%. Adding more cameras helped the baseline more than the Neuro-Symbolic Drive model, but even with three cameras the new approach outperformed the eight-camera baseline.
What this tells me: the bottleneck isn't perception resolution. It's the quality of the reasoning supervision. Give a small model causally grounded traces and it makes better decisions than a larger model trained on free-text rationales.
Turning Planning Logic Into Structured Supervision
The core insight is simple: use the symbolic reasoner you already have to generate training data for the neural reasoner you want. The code is on GitHub (XiangboGaoBarry/Neural-Symbolic-Drive). This is an open invitation to stop treating rule-based planners as legacy components and start treating them as ground-truth reasoning generators.
Next time someone tells you neuro-symbolic AI is too slow or too brittle, point them to a 4B model beating larger VLAs on driving metrics by learning from the planning logic we already trust.
Source: Neuro-Symbolic Drive: Rule-Grounded Faithful Reasoning for Driving VLAs
Domain: arxiv.org
Comments load interactively on the live page.