Search papers, labs, and topics across Lattice.
C-TRAIL addresses the unreliability of LLM-based commonsense reasoning in autonomous driving by introducing a Commonsense World framework that couples LLM outputs with a trust mechanism. The framework uses a closed-loop Recall, Plan, and Update cycle to query an LLM, inject trust-weighted commonsense into Monte Carlo Tree Search (MCTS), and adaptively refine trust scores. Experiments demonstrate that C-TRAIL significantly outperforms state-of-the-art baselines in simulated and real-world driving scenarios, improving metrics like ADE, FDE, and SR.
Autonomous vehicles can drive more safely and reliably by grounding LLM reasoning in a "Commonsense World" that quantifies and leverages the trustworthiness of LLM outputs.
Trajectory planning for autonomous driving increasingly leverages large language models (LLMs) for commonsense reasoning, yet LLM outputs are inherently unreliable, posing risks in safety-critical applications. We propose C-TRAIL, a framework built on a Commonsense World that couples LLM-derived commonsense with a trust mechanism to guide trajectory planning. C-TRAIL operates through a closed-loop Recall, Plan, and Update cycle: the Recall module queries an LLM for semantic relations and quantifies their reliability via a dual-trust mechanism; the Plan module injects trust-weighted commonsense into Monte Carlo Tree Search (MCTS) through a Dirichlet trust policy; and the Update module adaptively refines trust scores and policy parameters from environmental feedback. Experiments on four simulated scenarios in Highway-env and two real-world levelXData datasets (highD, rounD) show that C-TRAIL consistently outperforms state-of-the-art baselines, reducing ADE by 40.2%, FDE by 51.7%, and improving SR by 16.9 percentage points on average. The source code is available at https://github.com/ZhihongCui/CTRAIL.