日本フィジカルAI新聞

世界のフィジカルAIを、日本語で。

週刊ニュースレター購読
動作計画arXiv:2608.15440v1

凸集合グラフのニューラル予測による混合離散連続動作計画の高速化

Accelerating Mixed Discrete-Continuous Motion Planning via Neural Graphs of Convex Sets

シェア:XThreadsFacebookLINEはてブBluesky

動作計画を凸集合グラフ(GCS)で定式化し、高コストな凸緩和をグラフ注意ネットワークによる候補経路予測と軽量ランキングで置き換え、早期探索終了で高速化する手法を提案。3Dクアッドロータや7自由度マニピュレータ、平面押し操作で最大2桁の高速化を達成。

詳しい要約

1. どんなもの?

本論文は、離散決定と連続軌道を結合するMotion Planning問題を解くための学習ベースの手法を提案している。具体的には、Graphs of Convex Sets (GCS)フレームワークの計算ボトルネックを緩和するため、Graph Attention Network (GAT)を用いて高確率な候補パスを予測し、軽量なランキングネットワークでコスト順に並べ、早期終了することで高速化を実現する。

2. 先行研究と比べてどこがすごい?

従来のGCSは凸緩和ステップが計算コスト高く、オンライン再計画には不向きだった。本手法は、この凸緩和を学習ベースの推論に置き換えることで、計算時間を大幅に削減しつつ、ほぼ最適な解を維持する点が新しい。

3. 技術・手法の肝は?

手法の核は、GCSの凸緩和ステップをGATの単一フォワードパスに置き換え、候補パスを生成すること。その後、軽量なランキングネットワークが推定コストで候補を順序付け、その順に評価して早期終了する。これにより、全候補を評価せずに近似的な最適解を得る。

4. どうやって有効だと検証した?

3Dクアッドローターの衝突回避、7自由度マニピュレータの衝突回避、平面押し操作の接触計画など、多様なロボットタスクで検証。凸および非凸のコスト・制約設定の両方で、従来のGCSと比較して最大2桁の高速化を達成し、成功率100%を維持しつつ、解の最適性は若干犠牲になることを示した。

5. 議論はある?

要旨からは、解の最適性の低下が議論の対象となる可能性が示唆されるが、具体的なトレードオフの詳細や限界については不明。また、学習ベースのアプローチの一般化可能性や、異なる問題設定への適用性についての議論は要旨には含まれていない。

6. 次に読むべき論文は?

要旨で参照されているGCSフレームワークの元論文(Tobia Marcucci et al.のGraphs of Convex Sets)や、Graph Attention Networkの元論文(Petar Veličković et al.)が関連する。また、学習ベースのMotion Planningの分野では、Motion Planning NetworksやMPNetなどの関連研究が挙げられる。

※ AIが要旨から生成した要約です。正確性は原文をご確認ください。

著者: Ananya Trivedi, Sarvesh Prajapati, Mohamed Khalid M Jaffar, Zhexin Xu, David Rosen, Taskin Padir

分類: cs.RO

原文アブストラクト

Motion planning problems such as collision-free navigation and contact-rich manipulation can be naturally formulated as optimization problems that couple discrete decisions with continuous trajectories. The Graphs of Convex Sets (GCS) framework offers a practical solution to these problems. It represents discrete decisions as nodes of a graph and encodes continuous trajectories in the edges connecting them. However, the resulting optimization subproblems can become computationally prohibitive for online replanning. In this work, we propose a learning-based strategy to mitigate this limitation. Specifically, we replace the costly convex relaxation step required by nominal GCS with a single forward pass through a Graph Attention Network that predicts a set of highly probable candidate paths through the graph. A lightweight ranking network then orders these candidates by their estimated trajectory cost. Evaluating them in this order, we terminate our search early while still recovering a near-optimal motion plan. We validate the resulting pipeline across diverse robotic tasks, including collision-free motion planning for a 3D quadrotor and a 7-DoF manipulator, and planning through contact for planar pushing. Across both convex and non-convex cost and constraint settings, our approach yields up to two orders of magnitude speedup over nominal GCS while maintaining a 100% success rate, at the cost of some suboptimality in the recovered solutions. Code implementations and video demonstrations can be found at https://neural-gcs.github.io/.