Key Takeaway
Regularizing a policy toward an exponential moving average of its own network weights steers self-play learning away from dominated (bad) actions, often lowering exploitability and speeding convergence with almost no extra cost.
ON THIS PAGE
What They Found
Replacing a fixed uniform regularization target with a parameter-space exponential moving average (EMA) of the policy’s weights produces an adaptive regularizer that forgets poor actions while remembering viable ones. Across standard two-player games and harder variants with many dominated actions, the EMA 'magnet' is competitive on normal benchmarks and clearly better when most actions are bad. The method requires only one extra EMA update per training step and often yields a magnet policy with lower exploitability than the final learned policy. This adaptive approach aligns with Evaluation-Driven Development pattern.
Data Highlights
1Evaluated on 3 standard games (Biased Rock-Paper-Scissors, 4-Card Goofspiel, Kuhn Poker) plus modified variants, with results averaged over 24 random seeds.
2The EMA magnet policy achieved the lowest exploitability in Goofspiel-4 and Kuhn Poker compared to the best uniform-regularized PPO baselines.
3Only a single extra exponential moving-average parameter update is added per training step beyond standard PPO, keeping computational overhead minimal.
Why It Matters
Engineers building self-play or multi-agent systems who want a simple, low-cost way to avoid wasted learning on obviously bad actions. Research leads and evaluation teams tracking agent reliability or agent-to-agent performance can use the EMA magnet as an easy-to-add regularizer that often reduces how exploitable agents are in practice. For broader design guidance, consider the Agentic RAG Pattern as a reference.
Explore evaluation patternsSee how to apply these findings
Key Figures

Fig 1: Figure 1: Self-play policy trajectories in Control Biased RPS (Lanier et al., 2026 ) , where agents must solve gridworld navigation tasks to execute each RPS action or else forfeit. (a,b) Regularizing toward uniform forces the policy to use strictly dominated strategies that fail navigation and forfeit. By the time annealed regularization is weak enough to avoid forfeiting, the policy fails to explore and find the Nash equilibrium (green diamond). (c) PPO-EMAg applies constant regularization toward an EMA of the last-iterate (dashed orange), which regularizes toward viable actions the policy has chosen in the past, enabling convergence.

Fig 2: Figure 2: Exploitability over environment steps for each game variant. Top row (a–c): standard games. Middle row (d–f): FF variants with a strictly dominated forfeit action added. Bottom row (g–i): control variants where most strategies are dominated. Best hyperparameter configuration per method (selected via Bayesian sweep), mean across 24 seeds with standard error bands. PPO-EMAg’s last-iterate and magnet policies both outperform baselines in FF and control variants, with the magnet consistently reaching lower exploitability than the last iterate. In the control games (g–i), PPO-EMAg also converges significantly faster than both baselines.
Ready to evaluate your AI agents?
Learn how ReputAgent helps teams build trustworthy AI through systematic evaluation.
Learn MoreLimitations
Results are from small-to-moderate benchmark games with exact exploitability measures; behavior in very large, real-time environments (e.g., complex strategy games) is not shown. Effectiveness likely depends on game structure (balance of cyclic vs. transitive strategies) and may require tuning of the EMA step-size and regularization strength. The magnet helps adapt where regularization is applied but does not replace other tools for large-scale stability or multi-agent evaluation. See the Planning Pattern for strategies that coordinate long-horizon decisions.
Deep Dive
Use an exponential moving average of the policy network weights as the target for regularization instead of pushing the policy toward a fixed uniform action distribution. The EMA 'magnet' is initialized to the policy weights and updated each training step with a small mixing factor, then used in a KL-style penalty so the current policy stays close to a smoothed history of its own parameters. That makes the regularizer adaptive: as the policy abandons dominated actions, the magnet stops pulling toward them; as useful options appear, the magnet retains them. This adaptive approach aligns with Semantic Capability Matching Pattern. Experimentally, this change—called PPO-EMAg when built on Proximal Policy Optimization—matches or outperforms PPO with uniform regularization on standard two-player zero-sum benchmarks, and outperforms it in variants with many strictly dominated actions. The magnet policy itself often attains lower exploitability than the final policy weights, and in control-style variants convergence is noticeably faster. Because the method only adds a single EMA parameter update per training step, it is simple to implement Tool Use Pattern. Future work should test how benefits scale to much larger games and how game structure affects the gain from adaptive regularization.
Test your agentsValidate against real scenarios
Credibility Assessment:
Authors include several recognizable names in AI/ML research, and the paper has a citation—above-average credibility.