惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
Vercel News
Vercel News
U
Unit 42
L
LangChain Blog
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare Blog
F
Fortinet All Blogs
小众软件
小众软件
I
InfoQ
P
Proofpoint News Feed
D
DataBreaches.Net
Martin Fowler
Martin Fowler
H
Help Net Security
T
Tailwind CSS Blog
N
Netflix TechBlog - Medium
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
HERMES++ answers language queries while predicting roads
Papers Mache · 2026-05-14 · via DEV Community

Papers Mache

The prevailing view has been that autonomous‑driving world models must choose between two extremes: a perception‑only pipeline that reconstructs the current bird’s‑eye‑view (BEV) layout, or a generative model that rolls forward future geometry without a semantic grasp of the scene. HERMES++ demonstrates that a single network can inhabit both roles, answering natural‑language queries while extrapolating the road ahead.

Previously, scene‑understanding systems relied on dense BEV encoders tuned for detection and segmentation, whereas future‑prediction work such as point‑cloud roll‑outs treated the problem as a pure geometric sequence, often ignoring high‑level intent. Large language models, meanwhile, excel at reasoning over text but have no built‑in notion of spatial dynamics, leaving a gap between semantic instruction and physical simulation.

HERMES++ closes that gap with three key mechanisms. First, it collapses multi‑camera inputs into a compact BEV representation, a design choice that “mitigates the effects of token length constraints when processing high‑resolution multi‑view inputs” [1]. Second, the system introduces “world queries that interact directly with the LLM’s processing pipeline and act as temporal semantic carriers,” allowing the language model to steer both perception and generation [1]. Finally, a Current‑to‑Future link conditions the predicted road geometry on the semantic context extracted by the LLM, while a joint geometric optimisation step enforces consistency between learned latent priors and explicit geometric constraints.

Beyond architectural cleverness, the unified model translates into measurable gains. On the 3‑second horizon benchmark, HERMES++ “reduces the Chamfer Distance (CD) at the 3s horizon by 41.6% compared to ViDAR,” a specialist future‑prediction baseline [1]. The same framework also outperforms dedicated BEV perception nets on standard 3D scene‑understanding metrics, confirming that the joint training does not sacrifice accuracy on either side.

The paper acknowledges several boundaries. Evaluations are limited to curated datasets; real‑world sensor noise, adverse weather, and dynamic traffic participants remain untested. The latency introduced by routing BEV tokens through an LLM has not been quantified, raising questions about real‑time feasibility. Moreover, the world‑query interface is tied to a specific prompt schema, so extending it to arbitrary natural‑language instructions may require additional finetuning.

For teams experimenting with language‑driven autonomy, the immediate takeaway is practical: the released checkpoints and demo let you plug a single model into a simulation loop and issue high‑level commands like “show the drivable lane two seconds ahead.” Before committing to a full language‑controlled stack, benchmark dense BEV perception against the LLM‑augmented pipeline on your own sensor suite, and profile the end‑to‑end runtime to ensure that the added reasoning layer respects real‑time constraints. As the line between semantic grounding and geometric prediction continues to blur, HERMES++ offers a concrete reference point for building the next generation of language‑aware driving systems.

References

  1. HERMES++: Toward a Unified Driving World Model for 3D Scene Understanding and Generation