← Latest papers
🤖 machine learning

Emergence of Exploration in Policy Gradient Reinforcement Learning via Retrying

This paper introduces ReMax, a policy gradient objective that formalizes exploration as the expected maximum return over multiple trials, leading to the development of RePPO—a PPO variant that achieves effective, emergent stochastic exploration without explicit bonus terms by optimizing this objective with a continuous retry parameter.

Original authors: Soichiro Nishimori, Paavo Parmas, Sotetsu Koyamada, Tadashi Kozuno, Toshinori Kitamura, Shin Ishii, Yutaka Matsuo

Published 2026-06-02
📖 4 min read☕ Coffee break read

Original authors: Soichiro Nishimori, Paavo Parmas, Sotetsu Koyamada, Tadashi Kozuno, Toshinori Kitamura, Shin Ishii, Yutaka Matsuo

Original paper licensed under CC BY 4.0 (http://creativecommons.org/licenses/by/4.0/). This is an AI-generated explanation of the paper below. It is not written or endorsed by the authors. For technical accuracy, refer to the original paper. Read full disclaimer

Imagine you are trying to find the best route to a new coffee shop in a city you've never visited. You have a map, but it's incomplete.

The Old Way (Standard RL):
Most Reinforcement Learning (RL) agents act like a nervous tourist. They try one path, get a bad result, and immediately panic. To stop them from getting stuck, researchers usually give them a "bonus" or a "treat" just for trying new, weird paths. It's like a parent saying, "If you try a different street, I'll give you a cookie," even if that street might lead to a dead end. The agent only explores because of the cookie, not because it's smart.

The New Idea (ReMax):
This paper proposes a different approach called ReMax. Instead of giving a cookie for trying new things, ReMax changes how the agent thinks about success.

The core idea is simple: Don't just judge your decision based on one try; judge it based on your best try out of several.

The "Retry" Metaphor

Imagine you are taking a multiple-choice test.

  • Standard RL: You pick an answer, and that's it. If you picked wrong, you get zero points. You are terrified of guessing, so you only pick the answer you are 100% sure of (even if you're wrong).
  • ReMax: Imagine the teacher says, "You get to pick an answer, but if you're wrong, you get to retry up to 5 times. Your score is based on the best answer you got out of those 5 tries."

Suddenly, the strategy changes!

  • If you are 100% sure, you pick that answer every time.
  • But if you are unsure (maybe 50/50 between two answers), you don't just pick one and hope. You spread your bets. You try one option, and if it fails, you try the other. Because you get to keep the best result, trying a risky option becomes a smart move. You aren't exploring because of a "cookie"; you are exploring because retrying makes the risky path safer.

How It Works in the Paper

The authors, led by Soichiro Nishimori and Paavo Parmas, formalized this "retry" intuition into a mathematical formula called ReMax.

  1. The "M" Factor: They introduced a number, M, which represents how many times you get to "retry" or sample an action.

    • If M = 1, it's the old way: one shot, one score. The agent becomes greedy and stops exploring.
    • If M > 1, the agent realizes that if it tries a few different things, it might get lucky with a high reward. This naturally encourages the agent to try different actions (explore) without needing any extra "bonus" points added to the score.
  2. The "Continuous" Twist: In the real world, you can't always retry exactly 2 or 3 times. So, they turned the retry count into a smooth dial (a continuous number m).

    • Turning the dial up (higher m) makes the agent more adventurous and willing to try weird things.
    • Turning it down (lower m) makes the agent more cautious and focused on what it already knows.
    • This gives the AI a "fine-grained" control knob for curiosity.
  3. The "RePPO" Engine: To make this work in complex video games (like MinAtar and Craftax), they built a new version of a popular AI algorithm called PPO, which they named RePPO.

    • Instead of adding a "curiosity bonus" (like a fake reward for visiting new places), RePPO just optimizes for the "best of M tries."
    • The Result: In their experiments, RePPO learned to play games better than standard methods. It kept its "curiosity" (high randomness in choices) naturally, without needing the extra "cookie" bonuses that other methods rely on.

The Bottom Line

The paper claims that exploration doesn't need to be forced with external rewards. If you simply change the goal to "maximize your best possible outcome over a few retries," the agent naturally figures out that trying different things is the smartest way to win.

It's like telling a child, "You don't have to get it right the first time; just show me your best attempt after a few tries." The child naturally starts experimenting with different ways to solve the puzzle, not because you bribed them, but because the rules of the game make experimentation the winning strategy.

Drowning in papers in your field?

Get daily digests of the most novel papers matching your research keywords — with technical summaries, in your language.

Try Digest →