研究者がネットワーク層を追加し続けると、RLエージェントが転倒からパルクールへ進化
プリンストン大学などの研究チームは、強化学習のネットワーク層を1024層まで深くすることで性能が最大50倍向上し、歩行や障害物回避といった新たな行動を自律的に習得することに成功した。
キーポイント
ネットワーク深度の劇的な拡張
従来の2〜5層から1024層へのスケールアップにより、タスク依存で2倍〜50倍の性能向上を実現した。
Contrastive RLによるスパースフィードバック問題の解決
人間の報酬設計や手動例に依存せず、行動が目標への経路の一部かどうかを自己学習することでフィードバックの希薄さを克服した。
安定訓練のための必須アーキテクチャ要素
深いネットワークの学習を安定させるため、残差接続、正規化手法、特殊な活性化関数の3要素を組み合わせる必要があると実証した。
ヒューマノイドの複雑な行動創出
迷路ナビゲーションや壁越えなどの高度なタスクにおいて、深度閾値を超えた時点で性能が急上昇し、新たな運動パターンを習得した。
CRLによるsparse feedbackの解決
Contrastive Learningは自己教師ありで試行錯誤を重ね、ゴールへ繋がる行動パターンを認識させることで強化学習のsparse feedback問題を解決する。
ネットワーク深度の閾値が複雑行動を創発
4層では転倒、16層で直立歩行、256層で壁越えなどのアクロバットな行動が現れ、残差結合・正規化・特殊活性化関数の組み合わせが深度スケーリングに不可欠である。
深度は幅より効果的だが計算・一般化のトレードオフ存在
CRLでは層数を倍増させることが幅を広げるより高性能かつパラメータ効率が良いが、訓練時間の増加やシミュレーション限定の現状、オフライン学習での限定的な効果などの課題が残る。
重要な引用
While most reinforcement learning algorithms use two to five network layers, a research team achieved 2x to 50x performance gains by scaling network depth up to 1,024 layers in a self-supervised agent and saw entirely new behaviors emerge in the process.
The core challenge of scaling RL is that an agent receives far less feedback than a language model.
According to the study, depth scaling only works when all three components are used together.
Previous work has mainly scaled the width of RL networks, the number of neurons per layer. The researchers show that depth is the more effective lever: doubling depth to eight layers outperforms even the widest networks while using fewer parameters.
影響分析・編集コメントを表示
影響分析
本研究は長年「強化学習ではモデルのスケールアップが効かない」とされてきた常識を覆すもので、自律型ロボットや複雑な意思決定システムの実用化に大きな道を開く。Contrastive RLの導入により、報酬設計のコストを大幅に削減しつつ高性能なエージェントの開発が可能になるため、次世代AIの基盤技術として注目される。
編集コメント
強化学習の「深さ」が性能を左右する今、報酬設計の手間を省くContrastive RLの手法は実装コスト削減に直結する。今後のロボット制御や自律走行分野での応用展開を注視したい。

大半の強化学習(RL)アルゴリズムは2〜5層のネットワークを使用するが、ある研究チームは、自己教師ありエージェントにおいてネットワークの深さを1,024層までスケールアップすることで、性能を2倍から50倍向上させることに成功した。その過程では、全く新しい行動の出現も確認されている。
本記事「研究者がネットワーク層を追加し続けると、RLエージェントは顔面着地からパルクールへと進化する」は、The Decoderで最初に公開されました。
原文を表示
Mar 15, 2026
Nano Banana Pro prompted by THE DECODER
Contrastive learning tackles RL's sparse feedback problemHumanoid agents learn to walk upright and vault over wallsDepth beats width, but only with the right algorithm
While most reinforcement learning algorithms use two to five network layers, a research team achieved 2x to 50x performance gains by scaling network depth up to 1,024 layers in a self-supervised agent and saw entirely new behaviors emerge in the process.
In language and image processing, scaling up models has led to major breakthroughs. But in reinforcement learning (RL), where AI agents learn through trial and error, a similar scaling effect has remained elusive, according to a research team from Princeton University and the Warsaw University of Technology. Most RL systems use just two to five network layers, while language models like Llama 3 run on hundreds.
The team now shows that greater network depth can improve performance by 2x to 50x depending on the task. In the most challenging scenarios—where a humanoid figure has to navigate a maze—the researchers tested the system with up to 1,024 layers. The key is an algorithm called Contrastive RL (CRL), which transfers several principles from successful language model scaling to reinforcement learning.
A network with 4 layers fails to solve the maze. | Video: Wang, Javali, Bortkiewicz et al.
A network with 64 layers learns to navigate the maze successfully. | Video: Wang, Javali, Bortkiewicz et al.
Contrastive learning tackles RL's sparse feedback problem
The core challenge of scaling RL is that an agent receives far less feedback than a language model. During language model training, every single word in a text serves as a learning signal. An RL agent, by contrast, often gets only sparse feedback about whether it reached a goal or not.
CRL teaches the agent a simple skill: to tell whether a move looks like part of a path that really leads to the goal, or not. The agent learns this from its own trial and error, without being given human examples or hand-written rewards. In essence, the system learns by asking a basic question over and over: does this action seem to belong to a path that reaches the goal, or doesn't it? Matching combinations get pulled closer together during training, while non-matching ones get pushed apart.
To keep such deep networks stable during training, the researchers combine three established architecture techniques: residual connections that prevent information loss in deep networks, a normalization method for more stable learning steps, and a specialized activation function. According to the study, depth scaling only works when all three components are used together.
Humanoid agents learn to walk upright and vault over walls
One of the most striking findings is that performance jumps sharply once a critical depth threshold is crossed. With a simulated humanoid agent, a 4-layer model simply throws itself toward the goal. Only at 16 layers does the agent learn to walk upright. At 256 layers, the study reports, it develops acrobatic strategies and overcomes obstacles by vaulting over walls. The researchers call these the first documented behaviors of this kind in a goal-conditioned RL approach for humanoid environments.
As network depth increases, emergent capabilities appear in the humanoid agent: depth-4 models collapse, depth 16 enables upright walking, depth 64 fails in the U-maze, and depth 256 produces acrobatic wall-vaulting. | Image: Wang, Javali, Bortkiewicz et al.
In 8 out of 10 tested tasks, the scaled CRL approach outperforms all other goal-conditioned RL baselines. On the hardest task, the improvement over the standard network exceeds 1,000x.
Depth beats width, but only with the right algorithm
Previous work has mainly scaled the width of RL networks, the number of neurons per layer. The researchers show that depth is the more effective lever: doubling depth to eight layers outperforms even the widest networks while using fewer parameters. Traditional RL methods, by contrast, don't benefit from additional depth in the team's experiments. CRL's self-supervised nature appears to be the decisive factor.
The tradeoff is computational cost: deeper networks take longer to train. Moreover, all results so far come from simulations. It's also unclear how well the approach generalizes to significantly different scenarios. While the study includes an initial test with previously unseen goal combinations, broader testing under varied conditions is still missing. In an offline setting, where the agent no longer interacts with its environment, additional depth showed little benefit so far. The code is publicly available.
Back in 2022, researchers at Goethe University Frankfurt showed that scaling laws familiar from large language models could also apply to reinforcement learning algorithms like AlphaZero. In their analysis, agent performance scaled as a power law with network size. This new work provides further evidence that scaling can work in RL too—with network depth, not just overall size, identified as the critical factor.
AI News Without the Hype – Curated by Humans
Subscribe to THE DECODER for ad-free reading, a weekly AI newsletter, our exclusive "AI Radar" frontier report six times a year, full archive access, and access to our comment section.
Subscribe now
More than 16% discount.
Read without distractions – no Google ads.
Access to comments and community discussions.
Weekly AI newsletter.
6 times a year: “AI Radar” – deep dives on key AI topics.
Up to 25 % off on KI Pro online events.
Access to our full ten-year archive.
Get the latest AI news from The Decoder.
Subscribe to The Decoder
関連記事
今日のまとめ
AI日報で今日の重要ニュースをまとめ読み