Mistral Robostral Navigate:最先进的机器人导航模型
Mistral's Robostral Navigate: a state of the art robotics navigation model

原始链接: https://mistral.ai/news/robostral-navigate/

Robostral Navigate 是一款专为自动具身导航设计的 8B 参数新模型。与依赖深度传感器或激光雷达的传统系统不同,该模型仅凭单个 RGB 摄像头即可实现业内领先的性能。它能够成功遵循自然语言指令穿越复杂的陌生环境,在 R2R-CE 基准测试中表现优于现有的多传感器系统。 该模型通过预测摄像头视野中的目标坐标或利用局部位移指令进行导航。它完全自主构建,在 40 万条模拟轨迹上进行训练,并利用“前缀缓存”(prefix-caching)将训练速度提升了 22 倍。此外,通过在线强化学习(CISPO)的应用,该模型能够通过反复试验不断自我优化,使成功率提高了 3.2%。 Robostral Navigate 兼容轮式、足式及飞行机器人等多种机器人平台,对不同的摄像头内参和环境尺度具有强大的鲁棒性。通过证明高性能导航可以源于视觉语言基础模型,团队旨在将此模型打造为制造业、物流业和酒店业通用机器人的基础构建模块。

Mistral AI 发布了 **Robostral Navigate**,这是一款无需地图的最先进机器人导航模型。与依赖预先采集地图或激光雷达(LiDAR)的传统系统不同,该模型仅通过文本提示和 RGB 摄像头输入即可在环境中进行导航。 Hacker News 社区的反应褒贬不一: * **技术兴趣:** 开发人员对其极简主义且与硬件无关的设计印象深刻,一些人希望它能解决业余机器人爱好者的路径规划问题。Mistral 已确认该模型甚至可以处理“返回起点”的指令。 * **商业策略:** 批评者指出,Mistral 似乎更专注于企业合作伙伴关系(工业/物流),而非个人爱好者。许多人对该模型的可靠性提出质疑,并指出在机器人领域,76% 的成功率往往不足以支持现实世界的部署,因为边缘情况频繁出现且故障代价高昂。 * **“利基”之争:** 讨论涉及了专用模型与通用模型的可行性。支持者认为,对于机器人而言,小型、本地运行的专用模型优于庞大且依赖云端的大型语言模型(LLM),因为前者具有更低的延迟、更高的成本效益和更好的隐私保护。 总体而言,虽然社区看到了 Mistral“具身智能”战略的潜力,但在模型可供更广泛测试和进行现实世界验证之前,许多人仍持怀疑态度。
相关文章

原文

Today we're introducing Robostral Navigate, our first model built for embodied navigation. It's an 8B model that takes RGB images and a plain-language instruction and moves a robot through an environment:

“Leave the lobby, walk through the corridor, enter the supply room, and stop to face the second shelf.”

To perform such tasks, other models often employ depth sensors, LiDAR, or several cameras working together. Robostral Navigate uses only one ordinary RGB camera and no depth sensors, yet still achieves 76.6% on R2R-CE (Room-to-Room in Continuous Environments) validation unseen, the benchmark for following instructions in environments held out of training. Consequently, it beats the best single-camera approach by 9.7 points and the best system using depth or multiple cameras by 4.5 points, despite using neither.

Navigation

Our model is designed for robotic navigation, enabling robots to autonomously navigate complex environments, including offices, residential and commercial buildings, and outdoor settings.

Robostral Navigate running fully autonomously in one long-horizon instruction route through a working office.

This technology unlocks numerous applications across manufacturing, delivery, logistics, and hospitality, making it one of the most in-demand capabilities for our customers today. Give Robostral Navigate one instruction and it completes the entire task on its own, moving through a live space full of people and obstacles it was never shown, capable of adapting to any setting.

Highlights

  • State-of-the-art performance on R2R-CE

  • Operates from a single RGB camera, with no LiDAR or depth sensors

  • 8B model, built in-house and trained entirely in simulation

  • Runs on wheeled, legged, and flying robots, and generalizes across robot sizes

  • Robust to differences in camera intrinsics

  • Token-efficient training via prefix-caching

Navigation via pointing

Given a task and a history of observations, Robostral Navigate predicts where the robot should move next via pointing: it infers the image coordinates of the target location in the robot's current camera view, together with the desired orientation upon arrival. Unlike commands relying on metric displacements, pointing makes the policy naturally robust to changes in camera intrinsics and world scale.

However, this method cannot handle cases where the target location lies outside the current field of view. When pointing does not apply, the model falls back to displacements in the robot's local coordinate frame, such as:

"Move 2 meters forward, 1.5 meters to the left, and turn 25 degrees left."

Built from the ground up

Robostral Navigate is built entirely in-house and does not rely on existing open-source VLMs.

The model is initialized from our vision-language model specialized for grounding tasks such as pointing, counting, and object localization. Navigation emerges as a natural extension of these capabilities: once it understands where things are, it learns how to move.

We built an efficient data generation pipeline entirely in simulation. This enabled rapid iteration on the data, resulting in a dataset of approximately 400,000 trajectories collected across 6,000 scenes.

Efficient supervised training

A key ingredient of Robostral Navigate is an efficient training algorithm based on prefix-caching. Using a tree-based attention-masking strategy, our method compresses an entire episode into a single sequence, enabling training on all time steps in a single forward pass while preventing information leakage between time steps.

Compared to training with one sample per time step, our approach reduces the number of training tokens by 22× while preserving all of the learning signals. In practice, this method transforms training runs that would take months into runs that complete in days.

Online reinforcement learning

We leverage our knowledge of post-training LLMs at scale, using online reinforcement learning, to boost the performance of Robostral Navigate. After the supervised training stage, we further improve the model's performance using CISPO, an online reinforcement learning algorithm. This enables the model to learn from trial and error, recover from failures, and acquire exploratory behaviors, effectively mitigating the distribution shift issue of vanilla behavior cloning. This alone improved the success rate by 3.2%. We are not seeing any plateauing, so we are confident that more training and more experiments will continue to push this number up.

What's Next

Robostral Navigate is only the first step toward a unified embodied agent.

We believe navigation is a foundational capability for general-purpose robotics. By combining large-scale simulation, efficient training, and strong grounding priors, Robostral Navigate demonstrates that state-of-the-art embodied navigation can be achieved with a compact model and a single RGB camera.

Start your journey to embodied frontier AI, talk with our team.

BTW, we're hiring!

The release of our navigation models marks a significant step forward, but our journey is far from over. Our ambition is to enable robots to autonomously navigate complex environments—offices, homes, commercial buildings, and outdoor spaces—and there's a lot more work to do. We are actively expanding our robotics team and looking for talented research scientists and engineers who share our ambition.

If you're interested in joining us on our mission to bring seamless navigation to robots everywhere, we welcome your applications to join our team!

By Théo Cachet, Arjun Majumdar, Srijan Mishra, Thomas Chabal, Chris Bamford, Elliot Chane-Sane, Benjamin Tibi, Ludovic Ho Fuh, Olivier Duchenne - AI Science Robotics

联系我们 contact @ memedata.com