Skip to content
Preprint

Herding End-to-End Autonomous Driving via Neuro-Symbolic Safety Guards

Aug 2026 · 0 citations · 34 references
Computer Science Engineering

TL;DR

A neuro-symbolic safety guard is introduced, a lightweight module that attaches to the final command interface of an already-trained agent and checks the command against explicit safety rules and, only when necessary, replaces it with the nearest safe alternative.

Abstract

Modern end-to-end driving agents can achieve high average performance yet still violate basic traffic rules that a human driver would never miss. The reason is structural: they learn statistical patterns rather than the physical conditions that guarantee safe driving, leaving their decision-making process opaque and safety constraints unenforced. We introduce a neuro-symbolic safety guard, a lightweight module that attaches to the final command interface of an already-trained agent. Immediately before a command reaches the vehicle, it checks the command against explicit safety rules and, only when necessary, replaces it with the nearest safe alternative. Each intervention is directly executable and traceable to the rule that triggered it, while the guard itself requires no retraining and adds no learned component. Evaluated on the long-tail benchmarks Fail2Drive and Bench2Drive using the state-of-the-art TransFuser v6 (TFv6) as a case study, the guard improves Success Rate by 15% and reduces safety-critical collisions by up to 53%, while preserving the original Driving Score.

View source

Similar papers

Conference Jul 2026

LASA: Latency-Aware Safety Arbitration for Vision-Language-Action Autonomous Driving

Deploying Vision-Language-Action (VLA) models in real-time autonomous driving faces two barriers: the difficulty of safety assurance for black-box end-to-end outputs, and inference tail latency far exceeding the 20 ms control deadline at 50 Hz, which causes stale decisions to produce dangerous actions. The 50 Hz Fast Reflex layer performs lane detection via INT8-quantized YOLOv8-seg and drives the vehicle using a spline-based path planner. The 1-2 Hz Slow Brain (Qwen3-VL-8B-Instruct, LoRA fine-tuned) runs asynchronously and provides semantic decisions to assist driving in long-tail edge cases. The VLA emits only a Bounded Intermediate Representation comprising a lateral offset, speed scale, validity window, confidence score, and an observation frame timestamp. LASA (Latency-Aware Safety Arbitration) arbitrates this representation at 50 Hz, evaluating staleness against the observation timestamp rather than the IR arrival time, together with asymmetric confidence gating and slew-rate limiting. We validate LASA through a decision-level gate ablation and timing measurements on a physical 1/5-scale platform. Per-gate ablation on a synthetic event stream shows that observation-time arbitration contracts the published command envelope under lane ambiguity - lateral-command RMS drops from 23.2 to 5.4 px and mean speed scale from 0.68 to 0.39 -yielding a markedly smoother and more conservative trajectory than an ungated VLA. On hardware, the off-path distractor false-positive stop rate is 0%, and the 50 Hz reflex loop sustains a sub-millisecond serial-write P99 (0.77 ms) with zero clockmonotonicity violations across the pipeline.

Y. Suh, H. Park, H. Park et al. · 0 citations
#small language model Preprint Aug 2026

SafeBranch: Branch-Pair Safety Alignment for Embodied Agents

SafeBranch is proposed, a framework that aligns an embodied actor on safety through branch pairs constructed from the actor's own unsafe rollouts via environment rollback, achieving roughly ten times more safe successes than the untrained baseline on the unseen-object variant.

Hyunse Lee, Jiwoo Jeong, Haneul Lee et al. · 0 citations
Preprint Jul 2026

EvoPlan: Evolutionary Neuro-Symbolic Robot Planning with Spatio-Temporal Guarantees

LLM-based robot planners are fluent but cannot guarantee that their plans are executable or safe. Classical PDDL planners can guarantee these properties, but only after the problem is fully specified, and they make poor use of an LLM's ability to read context and repair plans. This paper presents a neuro-symbolic framework with three parts. All LLM calls use a locally-hosted open-weight model, so the pipeline can be deployed on-robot with no cloud dependency. First, an offline procedure that mines a single global Signal Temporal Logic (STL) constraint on mobility from demonstration data. The procedure recovers codified rules (e.g., stopping at red lights, mined from nuPlan driving logs) or population preferences (e.g., social-navigation comfort, mined from SCAND teleoperation), depending on what the demonstrations encode. Because the demonstrations are a one-class signal, we generate the missing negatives with counterfactual perturbations and an LLM violation generator and then fit the constraint by evolutionary search. We use the mined constraint to shield a vision-language driving policy on Bench2Drive and two discrete-action navigation policies on HA-VLN-CE. Second, an evolutionary PDDL planner: an LLM proposes and repairs plans, programmatic validators decide which ones survive, and the validated portion of the plan grows over iterations. We test the planner on the open-world ALFWorld Text benchmark, where it beats strong baselines and stays robust when the goal vocabulary does not match the action-model vocabulary. Third, a constrained execution loop: the planner's plan is compiled into waypoints, the waypoints are checked against the mined constraint, and the planner re-plans on a violation. We illustrate the full pipeline via demonstrations using the Gazebo simulator.

Bhavya Sai Nukapotula, Samin Moosavi, Haoze Wang et al. · 0 citations
Preprint Aug 2026

MANIGUARD: A Benchmark and Data Suite for Specification-Grounded Safety Evaluation and Improvement of Robotic Manipulation

Foundation-model policies for robotic manipulation are advancing rapidly on task success, but rigorous evaluation of whether they succeed safely is still lacking. We introduce ManiGuard, a specification-grounded framework for evaluating and improving the safety of foundation-model manipulation, comprising the ManiGuard-Bench task suite and a paired safety-annotated trajectory-generation pipeline. ManiGuard-Bench organizes six contact-rich household task families into 200 locked base tasks along a skill $\times$ constraint taxonomy, with safety specified independently of task success. Each task is evaluated under one in-distribution and four single-axis out-of-distribution perturbations that hold the safety specification fixed, giving 1,000 locked scenarios. Every rollout is runtime-checked by LTL$_f$-grounded automaton monitors over physics-grounded predicates rather than learned classifiers or LLM judges, in simulation and on a physical Franka platform. The pipeline pairs an automated motion-planning generator with human teleoperation, annotated by the same per-step monitor, and directly supports safety-aware fine-tuning; we release 8,000 safety-annotated demonstrations, 40 per base task. Benchmarking zero-shot and fine-tuned VLAs across more than 23,000 rollouts, we find: (i) safety must be evaluated independently of task success, as 6-21% of successful rollouts violate the specification; (ii) fine-tuning on our suite raises safe task completion from near zero to 7.5-29.8% and engaged-and-safe behavior from 16-40% to 51-72%; but (iii) a gap remains that scaling demonstrations does not close, with 21-42% of engaged rollouts still violating, two of six families below 2% safe success for every policy, and these failures persisting under distribution shift and on hardware.

Yi Peng, Philip Wang, S. Zhan et al. · 0 citations
Preprint Jul 2026

SAFETY SENTRY: Context-Aware Human Intervention via EXECUTE-ASK-REFUSE Routing

LLM agents act on real-world environments through tool calls, and a single misjudged action can cause irreversible harm. The standard safeguard is a guard model that labels each proposed action as safe or unsafe, but this binary view conflates two distinct decisions: whether the action is harmful in itself, and whether it is appropriate given the user's context. It also operates at the granularity of action categories rather than individual instances, producing routine interruptions that erode autonomy and train users to wave through the most consequential alerts. We reframe the problem as a per-instance three-way routing decision over {EXECUTE, ASK, REFUSE} and instantiate it with Safety Sentry, a lightweight guard model whose inference reduces to a single decoding call. A single decoding-time threshold lets one fixed checkpoint be re-positioned across deployments of differing risk tolerance without retraining. Safety Sentry outperforms a broad set of open-weight and frontier closed-source baselines on overall accuracy and safety-related recall, while controlling both directional error rates simultaneously.

Tianyu Chen, Chujiao Hu, Wenjie Wang · 0 citations
#machine learning Preprint Aug 2026

Driving on Memory

End-to-end autonomous driving models plan future trajectories from raw sensor input. While earlier driving benchmarks often measured deviation from the human trajectory, current benchmarks such as NAVSIM and Bench2Drive evaluate models with richer simulation-based metrics intended to capture safe and compliant driving. A high benchmark score should reflect that a model can understand the scene in front of it and act accordingly. But how much of that score specifically comes from reacting to the dynamic part of that scene? To probe this, we remove a model's camera input and replace it with memories from prior drives at the same location. The retrieved memories can provide persistent scene information, including road layout and location-conditioned regularities, but not the current traffic state. Surprisingly, memory is nearly sufficient on NAVSIM, reaching or even exceeding the performance of leading end-to-end methods without actually observing the evaluated scene. Our results suggest that a high NAVSIM score does not require a planner to react to the current traffic scene and should be treated with caution. This effect is benchmark-dependent: driving from memory causes substantially larger performance drops on Bench2Drive and RealEngine. We provide our code at https://github.com/boschresearch/MemoryDrivoR .

Christian Löwens, Thorben Funke, Alexandru Condurache · 0 citations