AI News AI资讯 6d ago Updated 6d ago 更新于 6天前 50

NVIDIA AI Introduces ASPIRE: A Self-Improving Robotics Framework Reaching 31% Zero-Shot on LIBERO-Pro Long Tasks NVIDIA AI 推出 ASPIRE:一种自改进机器人框架,在 LIBERO-Pro 长任务中零样本准确率达到 31%

NVIDIA introduces ASPIRE, a self-improving robotics framework that utilizes a coordinator-actor architecture to write and refine robot control programs via iterative exploration. The system employs a closed-loop execution engine providing per-primitive multimodal traces, enabling precise fault localization and validation of repairs rather than relying on coarse task-level feedback. Validated fixes are distilled into a reusable, transferable skill library, allowing the agent to accumulate experie NVIDIA联合多所高校推出ASPIRE框架,通过“协调者-执行者”架构实现具身智能体的持续学习与技能复用。 引入闭环执行引擎与细粒度多模态轨迹追踪,替代传统粗粒度反馈,实现故障根因定位与自动修复验证。 构建可转移的技能库,将经过调试验证的修复策略(如感知提示、运动基元)蒸馏为通用知识供后续任务调用。 在LIBERO-Pro、Robosuite等基准测试中显著超越现有代码即策略及端到端视觉语言动作模型,零样本迁移能力提升巨大。

72
Hot 热度
68
Quality 质量
75
Impact 影响力

Analysis 深度分析

TL;DR

  • NVIDIA introduces ASPIRE, a self-improving robotics framework that utilizes a coordinator-actor architecture to write and refine robot control programs via iterative exploration.
  • The system employs a closed-loop execution engine providing per-primitive multimodal traces, enabling precise fault localization and validation of repairs rather than relying on coarse task-level feedback.
  • Validated fixes are distilled into a reusable, transferable skill library, allowing the agent to accumulate experience across tasks and avoid discarding knowledge after individual episodes.
  • ASPIRE achieves significant performance gains, including a 31% zero-shot success rate on held-out LIBERO-Pro Long tasks, compared to a 4% saturation point for prior methods.
  • The framework demonstrates robust improvements across multiple benchmarks, such as increasing bimanual handover success in Robosuite from 20% to 92% and enhancing robustness in LIBERO-Pro by up to 77 points.

Why It Matters

This development addresses the critical scalability bottleneck in traditional robot programming by transforming static code-as-policy systems into dynamic, learning entities. By enabling robots to distill debugging experiences into reusable skills, ASPIRE offers a pathway toward more autonomous and adaptable robotic agents capable of handling complex, long-horizon tasks without continuous human intervention.

Technical Details

  • Architecture: Utilizes a coordinator-actor model where a central coordinator manages a shared skill library and dispatches coding agents (using Claude Code with a 1M-token context window) to specific tasks.
  • Execution Engine: Implements a closed-loop engine that records per-primitive multimodal traces (inputs, outputs, RGB keyframes, grasp candidates) to localize faults precisely, restricting access to simulator ground truth to ensure real-world applicability.
  • Skill Library: Stores heterogeneous, compact in-context guidance including failure signatures, application conditions, and repair strategies, which are admitted only after passing debug validation and API-policy checks.
  • Evolutionary Search: Prevents local repair loops by proposing K candidate programs conditioned on top-performing prior programs and remaining failure traces, ensuring broad exploration of distinct strategies.
  • Evaluation: Tested on LIBERO-Pro, Robosuite, and BEHAVIOR-1K, comparing against baselines like CaP-Agent0 and end-to-end VLA models (OpenVLA, π0, π0.5), showing superior zero-shot generalization and robustness.

Industry Insight

  • The shift from monolithic policy learning to modular, skill-based code-as-policy represents a viable path for industrial automation, offering greater interpretability and easier maintenance than black-box neural networks.
  • Organizations should prioritize infrastructure that supports fine-grained telemetry and trace-based debugging, as these are essential for enabling autonomous self-correction and continuous learning in robotic systems.
  • The demonstrated zero-shot generalization capability suggests that investing in robust skill libraries and iterative refinement loops can significantly reduce the cost and time required to deploy robots in new, unseen environments.

TL;DR

  • NVIDIA联合多所高校推出ASPIRE框架,通过“协调者-执行者”架构实现具身智能体的持续学习与技能复用。
  • 引入闭环执行引擎与细粒度多模态轨迹追踪,替代传统粗粒度反馈,实现故障根因定位与自动修复验证。
  • 构建可转移的技能库,将经过调试验证的修复策略(如感知提示、运动基元)蒸馏为通用知识供后续任务调用。
  • 在LIBERO-Pro、Robosuite等基准测试中显著超越现有代码即策略及端到端视觉语言动作模型,零样本迁移能力提升巨大。

为什么值得看

ASPIRE解决了传统机器人编程难以扩展和现有编码代理缺乏经验积累的核心痛点,通过持续学习机制实现了从“单次解决”到“终身成长”的跨越。对于AI从业者而言,它展示了如何将大模型的推理能力与机器人的物理交互约束有效结合,为构建具备自我改进能力的通用具身智能体提供了新的技术路径。

技术解析

  • 架构设计:采用协调者-执行者(Coordinator-Actor)模式,中央协调器管理共享技能库并分发任务,执行者仅交换蒸馏后的技能而非原始轨迹,确保知识的高效复用与隔离。
  • 闭环执行引擎:摒弃粗糙的任务级反馈,记录每次感知、规划和控制调用的输入、输出及状态,存储RGB关键帧、抓取候选项等多模态数据,使智能体能针对失败的具体环节进行局部故障定位与修复验证。
  • 技能库机制:存储异构的修复模式(如定位启发式规则、感知提示、运动基元),每个技能包含失败签名、适用条件、修复策略及代码片段,仅通过调试验证和API策略检查的技能方可入库。
  • 进化搜索策略:为避免陷入局部修复循环,每轮生成K个候选程序,基于表现最佳的先前程序及其剩余失败轨迹进行条件采样,促进探索不同的解决策略而非单一方案的微调。
  • 仿真与限制:在MuJoCo Playground上使用Claude Code(Opus 4.6模型,1M上下文窗口)编写CaP-X代码,严格禁止访问模拟器底层物理状态或资产文件,遵循“若真实相机机器人可见则允许”的原则以贴近现实约束。

行业启示

  • 从端到端到代码即策略的范式回归:在复杂长程任务中,基于LLM的代码生成与调试能力比端到端黑盒模型更具可解释性、可编辑性和鲁棒性,未来混合架构可能成为主流。
  • 经验积累是具身智能的关键壁垒:单纯的数据规模增长边际效应递减,建立有效的技能蒸馏与复用机制,使机器人具备“记忆”和“举一反三”的能力,是突破泛化瓶颈的核心方向。
  • 细粒度反馈驱动的自我改进:工业界应重视执行过程中的细粒度遥测数据采集与分析,构建能够自动诊断失败原因并生成修复代码的闭环系统,以降低机器人部署与维护成本。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Robotics 机器人 Agent Agent Code Generation 代码生成