日本フィジカルAI新聞

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

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

SmoothRL: 非同期実行中のオンライン強化学習

SmoothRL: Online Reinforcement Learning During Asynchronous Execution

シェア:XThreadsFacebookLINEはてブBluesky

事前学習済みロボットポリシーを非同期推論ループ内でオンライン強化学習により微調整するフレームワークを提案。非同期実行を考慮した学習により、高レイテンシ環境でもスムーズな制御を実現する。

詳しい要約

1. どんなもの?

SmoothRLは、非同期推論ループ内で事前学習済みポリシーをオンライン強化学習(RL)で微調整するフレームワーク。実世界展開に必要な信頼性とスムーズなリアルタイム実行を両立するため、高レイテンシの基盤モデルを非同期実行(アクションチャンキング)で隠蔽しつつ、勾配ベースのオンラインRLを統合する。

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

従来は、オンラインRLによる適応と非同期実行が別々に扱われ、統合は未開拓だった。SmoothRLは、非同期実行下での勾配計算を正しく行うため、アクションチャンクをコミット領域・実行領域・破棄領域に分割し、実行領域のみに勾配を伝播する点が新しい。

3. 技術・手法の肝は?

value-gradientパラダイムに基づき、アクション値関数のアクションに対する勾配でポリシーを直接更新。非同期推論プロセスを明示的にモデル化し、各チャンクをフレームインデックスで3領域に分割。実行領域のみに勾配を伝播することで、非同期実行が誘導する軌道分布とポリシー最適化を整合させる。

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

実世界のロボットタスクで評価。高精度を要するタスクと、非同期実行が必須の高ダイナミクスタスクで有効性を検証した。

5. 議論はある?

要旨からは、非同期実行の遅延やチャンクサイズの影響、他のRLアルゴリズムとの比較、一般化の限界などは不明。

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

要旨で参照されている関連研究は明示されていないが、value-gradient法(例えば、Deterministic Policy Gradient)や非同期実行(action chunking)に関する論文が関連する。

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

著者: Guang Gao, Yuxuan Nong, Baifu Huang, Jianan Wang

分類: cs.RO

原文アブストラクト

Deploying robot policies in the physical world requires satisfying two fundamental desiderata: reliability and smooth real-time execution. However, deploying state-of-the-art generalist models presents challenges on both fronts. Achieving the precision and robustness required for real-world deployment necessitates sample-efficient online reinforcement learning (RL) to adapt pretrained models. Meanwhile, the increasing scale of robot foundation models has led to higher inference latency. To satisfy real-time constraints under high latency, modern systems adopt asynchronous inference with action chunking, overlapping policy computation with chunk execution to hide latency and enable smooth control. Despite their complementary roles, integrating asynchronous execution with gradient-based online RL remains underexplored. We present SmoothRL, an online RL framework that fine-tunes a pretrained policy within an asynchronous inference loop. SmoothRL follows a value-gradient paradigm, directly updating policy parameters using gradients of the action-value function with respect to policy actions. To enable correct optimization under asynchronous execution, SmoothRL explicitly models the asynchronous inference process during training. Specifically, each generated action chunk is partitioned by frame index into three regions: a committed region, consisting of actions committed by the previous inference cycle; an execution region, containing newly generated actions executed by the robot; and a discarded region, containing actions superseded by the next inference cycle. Gradients are propagated only through the execution region, ensuring policy optimization aligns with the trajectory distribution induced by asynchronous execution. We evaluate SmoothRL on real-world robotic tasks requiring high precision, as well as highly dynamic tasks that necessitate asynchronous execution.

関連論文