基本信息

要点解读

这是什么

该研究评估了代码生成式机器人在必须避开障碍物的任务中的安全表现,发现现有系统在规划时倾向于只关注任务完成而忽视避障。通过将操控分解为路径阶段和接触阶段,提出了名为 SafeHarness 的框架,分别为路径规划和接触执行配备障碍感知模块,使安全约束能够被优先考虑。

用在哪里

适用于利用大语言模型生成控制代码的机器人研发团队,尤其是需要在程序化控制下实现安全避障的系统。安全关键的自动化装配、物流分拣或人机协作场景的设计者也可参考此方法进行安全约束的集成与验证。

可以推断的

推测:引入障碍感知模块后,智能体在规划阶段可能需要额外的计算资源来生成和验证多条候选路径。
推测:该方案有望迁移到其他类型的约束(如力度限制或姿态约束),只要在路径和接触层面分别加入相应的感知模块。

来源摘要/节选

Coding agents have emerged as a promising paradigm for robot manipulation: a language model writes the robot controller as a program, and agents built in this way now operate robots without robot-specific training.Whether this paradigm is also safe, however, has not been asked. We evaluate coding agent under a safety constraint, where each task pairs a manipulation goal with an obstacle the robot must not touch. The agent pursues the goal but collides with the obstacle in most cases, treating task completion as its sole objective while neglecting safety. The agent reasons about the obstacle in its traces, and the prompt already forbids touching it, so neither perception nor instruction is at fault; the fault lies in the planning, where the stated constraint never becomes a priority. By decomposing manipulation into a route phase and a contact-rich moment, we locate the source of the failure. Along the route, the model cannot prioritize the safety constraint, having no notion of a clearing route and none of replanning once a chosen route becomes infeasible. At the contact, it is unaware that contact execution is bounded by the same constraint. To close this gap, we present SafeHarness, which equips the model with two obstacle-aware harnesses that enable it to prioritize the safety constraint. Obstacle-aware route planning grounds the objects as bounding boxes and draws candidate routes over them as sequences of waypoints. The agent then plans a route in advance, verifies it, replans when necessary, and only then executes it. Obstacle-aware contact execution instead selects the contact position so that the contact itself avoids the obstacle. SafeHarness attains 71.9% task success and 87.5% collision avoidance, surpassing the previous SOTA by 6.5% and 27.0%, respectively. These results are $2.3\times$ and $1.5\times$ those of the same agent without harnesses.

来源说明

当前保存的是来源摘要,不代表论文全文。请以原始来源为准。

「要点解读」由 AI Stack 依据上方已保存内容整理,不代表来源的完整表述;标注「推测:」的判断来自编辑,不是来源陈述。