日本フィジカルAI新聞

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

週刊ニュースレター購読
強化学習arXiv:2609.02237v1

長期的オフライン目標条件付き強化学習のための再帰的価値学習

Recursive Value Learning for Long-Horizon Offline Goal-Conditioned RL

シェア:XThreadsFacebookLINEはてブBluesky

長期的な目標達成タスクを効率的に学習するため、軌跡を二分木に再帰的に分解し、葉から根へ価値を学習する手法DCRLを提案した。

詳しい要約

1. どんなもの?

DCRL (Divide-and-Conquer RL) は、長期的なオフライン Goal-Conditioned RL (GCRL) のための再帰的価値学習手法。軌道セグメントを balanced binary tree に再帰的に分解し、葉から根に向かって価値を学習する。各親ノードは子ノードの学習後に、観測された経路の正確な分解に基づいて更新される。

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

従来の flat offline GCRL 手法は、長期的な価値学習において、短期的な推定の誤差が蓄積し、max-based value backup による過大評価が増幅される問題があった。DCRL は、balanced binary tree により最悪の bootstrap depth を線形から対数に削減し、誤差の蓄積を遅くする。また、デモ経路に沿った価値学習と、軌道間の価値伝播を組み合わせることで、より短い経路の発見を可能にする。

3. 技術・手法の肝は?

手法の肝は、軌道セグメントを balanced binary tree に再帰的に分解し、葉から根へ価値を学習すること。各親ノードは、子ノードの価値を使用して、観測された経路の正確な factorization に基づいて更新される。これにより、max-based backup による過大評価を避ける。さらに、デモ経路に沿った価値学習に加えて、軌道間で価値を伝播させ、より短い経路を発見する。

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

多様な goal-reaching タスクで評価し、従来の flat offline GCRL 手法を大幅に上回る性能を示した。特に、最も困難な5つの長期的な OGBench タスクでは、従来の最良の平均スコアを55から64に改善し、すべての flat および hierarchical baseline を上回った。

5. 議論はある?

要旨からは、DCRL がデモ経路に沿った価値学習を行うため、必ずしも最適でない経路を学習する可能性があるが、軌道間の価値伝播により短い経路を発見できるとしている。また、balanced binary tree による誤差蓄積の緩和が実験的に確認されたが、理論的な保証や他のタスクへの汎用性については要旨からは不明。

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

要旨で参照されている OGBench タスクや、関連する offline GCRL の先行研究(例: flat offline GCRL 手法、hierarchical baselines)が挙げられる。具体的な論文名は要旨にないため、同分野の定番として 'Offline Goal-Conditioned Reinforcement Learning' や 'Hierarchical Reinforcement Learning' に関する論文を読むとよい。

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

著者: Hyeonseong Jeon, Youngwoon Lee

分類: cs.LG, cs.RO

原文アブストラクト

Scaling offline goal-conditioned reinforcement learning (GCRL) to long-horizon tasks is difficult because (1) long-range value learning depends on shorter-range estimates that may still be inaccurate, and (2) max-based value backups can amplify overestimation through repeated propagation. We propose DCRL (Divide-and-Conquer RL), which recursively decomposes each trajectory segment into a balanced binary tree and trains the values from leaves to root. Each parent is therefore updated only after its children, using an exact factorization of the observed route rather than selecting among noisy alternatives. Since this objective learns values along demonstrated routes that are not necessarily optimal, DCRL jointly propagates values across trajectories to discover shorter routes. Thanks to the balanced binary tree, DCRL reduces worst-case bootstrap depth from linear to logarithmic, and this shorter dependency structure empirically corresponds to much slower error accumulation. Across diverse goal-reaching tasks, DCRL substantially outperforms prior flat offline GCRL methods, and on the five most challenging long-horizon OGBench tasks, it improves the best prior average score from 55 to 64, surpassing all flat and hierarchical baselines.

関連論文