---
title: Exploration-Enhanced Policy Optimization (EEPO)
url: https://www.emergentmind.com/topics/exploration-enhanced-policy-optimization-eepo
type: topic
---

# Exploration-Enhanced Policy Optimization (EEPO)

Searching arXiv for the cited EEPO-related papers to ground the article in current arXiv records.
Exploration-Enhanced Policy Optimization (EEPO) denotes a line of reinforcement learning methods that augment policy optimization with explicit mechanisms for broader or more directed exploration. In the usage reflected across recent work, the term can refer both to a general design pattern—policy optimization coupled to intrinsic rewards, uncertainty bonuses, population diversity, model-based discrepancies, entropy control, or trajectory-level diversification—and to a specific RLVR framework for large language models that uses a “sample-then-forget” procedure to disrupt self-reinforcing rollout modes [1811.07350], [2510.05837]. Across these formulations, the central objective is to mitigate premature convergence, entropy collapse, local optima, or sparse-reward stagnation by altering either the reward signal, the advantage estimate, the rollout distribution, or the policy update itself.

## 1. Conceptual scope and problem setting

EEPO arises from a common diagnosis: standard policy optimization methods are often exploitation-dominant. In actor-critic control, insufficient exploration of the spatial space can yield suboptimal policies, as observed for Twin Delayed Deep Deterministic policy gradient (TD3) on 7-DOF robotic arm grasping [2408.14009]. In on-policy optimization, PPO is described as suffering from limited exploration, premature convergence, or sensitivity to Gaussian exploration schedules [2011.05525], [2601.14705]. In RL for LLMs, GRPO is characterized as exploitation driven, with entropy decreasing monotonically and exploration fading [2601.12730]. In RLVR, repeated sampling and rewarding of dominant modes produces a self-reinforcing loop that erodes exploratory capacity [2510.05837].

Within this literature, EEPO methods do not replace policy optimization; they modify it so that the training signal better values uncertainty, novelty, diversity, or entropy. This suggests a unifying interpretation in which exploration is treated not as an external heuristic layered on top of policy learning, but as a first-class component of the optimization objective or of rollout generation itself. A plausible implication is that EEPO is best viewed as a family of policy-optimization augmentations rather than a single algorithmic template.

Representative instantiations span several regimes. POME adds a model-based/model-free target discrepancy to PPO as an exploration value [1811.07350]. IEM-PPO adds an uncertainty-estimation intrinsic reward to PPO [2011.05525]. MPPO maintains a population of policies and selects among them using a combined performance-entropy rule [1911.04207]. OPPO and related optimistic methods insert bonus terms directly into policy improvement with regret guarantees [1912.05830], [2107.08346]. In RL for LLMs, DCPO, HAEPO, EPO, AEPO, and the specific EEPO framework all alter entropy control, trajectory weighting, or rollout diversification to preserve exploration under long-horizon or sparse-reward conditions [2601.12730], [2508.18884], [2509.22576], [2508.05731], [2510.05837].

## 2. Mechanistic families of exploration enhancement

The literature organizes naturally into several mechanism classes. The following grouping is a synthesis of named methods in the cited works.

| Mechanism family | Representative method | Core exploration signal |
|---|---|---|
| Intrinsic novelty reward | TD3 + EECL | Novel-state reward from KDTree Euclidean distance |
| Uncertainty-based reward or advantage | IEM-PPO, EPPO | Uncertainty bonus or UCB advantage |
| Model-based discrepancy bonus | POME | $|Q^*_{b,t} - Q^*_{f,t}|$ |
| Population or evolutionary diversity | MPPO, EPO, POEM | Policy entropy, mutation, or population diversity |
| Entropy or distribution regulation | DCPO, EPO, HAEPO | Distribution-level entropy control or trajectory entropy |
| Rollout diversification | EEPO, AEPO | Sample-then-forget or multi-answer generation |

One family uses intrinsic rewards for novelty. EECL stores previously explored states in a buffer, organizes them with a KDTree, detects novelty through Euclidean distance, and adds a decaying exploration reward to the environment reward before TD3 updates [2408.14009]. IEM-PPO similarly reshapes PPO with an uncertainty-based intrinsic reward, where the mixed reward is $r^+(s, a) = r(s, a) + c_1 \hat{N}(s)$ [2011.05525].

A second family derives exploration from uncertainty in value estimation or dynamics. POME computes both model-free and model-based targets,
\[
Q^*_{f,t} = r_t + \gamma V_\phi(s_{t+1}),
\qquad
Q^*_{b,t} = \hat r(s_t, a_t) + \gamma V_\phi(\hat T(s_t, a_t)),
\]
and defines the exploration value as
\[
\epsilon_t = | Q^*_{b,t} - Q^*_{f,t} |,
\]
which is added to the TD-style advantage used in PPO [1811.07350]. EPPO uses an evidential critic whose predictive variance induces a UCB-style advantage,
\[
\hat{A}_t^{\mathrm{UCB}} = \mathbb{E}[\hat{A}_t^{\text{GAE}}] + \kappa \sqrt{\mathrm{Var}[\hat{A}_t^{\text{GAE}}]},
\]
so that high-uncertainty regions are preferentially explored in non-stationary control [2503.01468].

A third family introduces diversity structurally. MPPO maintains a buffer of $K$ policies and scores each by
\[
f_k(\pi_t) = (1 - \alpha)\hat{J}_k(\pi_t) + \alpha \hat{\mathcal{H}}_k(\pi_t),
\]
thereby selecting policies that jointly balance performance and entropy [1911.04207]. EPO hybridizes neuroevolution with PPO-style exploitation, using crossover, adaptive mutation, and local fine-tuning [2504.12568]. POEM triggers policy-parameter mutation when KL divergence to a moving-average policy falls below a threshold, signaling stagnation [2601.14705].

A fourth family operates at the distribution or trajectory level. HAEPO compresses each trajectory into a cumulative logarithmic likelihood and normalizes trajectories with a Plackett-Luce softmax, then adds entropy regularization and a soft KL penalty [2508.18884]. DCPO regularizes the policy at the distribution level rather than through sample-centric heuristics, using a higher-temperature target distribution and double importance sampling [2601.12730]. EPO for multi-turn LLM agents regulates trajectory-aware entropy, adds an entropy smoothing regularizer, and modulates the effect through adaptive phase-based weighting [2509.22576].

## 3. Canonical mathematical formulations

Despite their diversity, EEPO methods repeatedly modify one of four mathematical objects: the reward, the advantage, the policy update, or the rollout distribution.

In reward shaping approaches, exploration enters as an additive intrinsic term. EECL detects a novel state when
\[
\|s - s'\|_2 \geq \epsilon,
\]
and assigns an exponentially decaying exploration reward
\[
r_e = r_{\text{max}} \times \gamma^n,
\]
which is then stored in the replay buffer as part of $(s, a, r + r_e, s')$ [2408.14009]. EIPO formulates the use of intrinsic rewards as a constrained optimization problem rather than a fixed scalar mixture:
\[
\max_{\pi_{E+I} \in \Pi} J_{E+I}(\pi_{E+I})
\quad
\text{subject to}
\quad
J_E(\pi_{E+I}) - \max_{\pi_E \in \Pi} J_E(\pi_E) = 0,
\]
with a Lagrangian multiplier $\alpha$ that automatically increases or suppresses the weight on extrinsic reward as needed [2211.07627].

In advantage shaping, the exploration signal perturbs the policy gradient target more directly. POME defines
\[
\text{POME}_t = \delta_t + \alpha\,\text{clip}(\epsilon_t - \bar\epsilon, -|\delta_t|, |\delta_t|),
\]
and uses the resulting modified advantage inside the PPO surrogate loss [1811.07350]. EPPO modifies the advantage through uncertainty propagation from an evidential value model [2503.01468].

In optimistic policy improvement, exploration appears as a bonus in $Q$ or loss estimates. OPPO uses an optimistic $Q$ estimate,
\[
Q_h^k(x, a) = \min\left\{ r_h^k(x, a) + \phi_h^k(x, a)^\top w_h^k + \Gamma_h^k(x, a),\ H-h+1 \right\}^+,
\]
and updates the policy by exponential tilting,
\[
\pi_h^k(\cdot \mid x) \propto \pi_h^{k-1}(\cdot \mid x)\, \exp\left(\alpha Q_h^{k-1}(x,\cdot)\right),
\]
yielding a provably efficient optimistic version of PPO [1912.05830]. The related dilated-bonus framework defines a recursive bonus
\[
B_t(x, a) = b_t(x, a) + \left(1 + \frac{1}{H}\right)\mathbb{E}[B_t(x', a')],
\]
which is subtracted from estimated losses in the policy update to induce global exploration [2107.08346].

In trajectory-level or rollout-level methods, exploration is enforced by controlling which trajectories are sampled or how entire histories are weighted. HAEPO sets
\[
L_k = \sum_{t=1}^{T_k} \log \pi_\theta(a_t^{(k)} | s_t^{(k)}),
\qquad
w_k = \frac{\exp(L_k)}{\sum_{j=1}^M \exp(L_j)},
\]
then optimizes a reward-weighted, entropy-regularized, KL-regularized trajectory objective [2508.18884]. The specific EEPO framework for RLVR instead alters the rollout process itself through adaptive unlearning of already sampled responses [2510.05837].

## 4. The specific RLVR framework titled EEPO

The paper explicitly titled “Exploration-Enhanced Policy Optimization via Sample-Then-Forget” defines EEPO as a two-stage rollout procedure for RL with verifiable rewards for LLMs [2510.05837]. Its starting point is the claim that conventional adjustments such as raising temperature, adding entropy bonuses, or increasing rollout count do not sufficiently shift probability mass away from dominant modes. The framework therefore targets rollout generation rather than only the update objective.

The procedure is as follows. In Stage 1, a rollout model $\pi_{\text{rollout}}$ samples half of the trajectories. A lightweight unlearning step is then applied to temporarily suppress these sampled responses in the rollout model. In Stage 2, the remaining trajectories are sampled from the modified rollout model, which is now discouraged from regenerating the same responses [2510.05837]. The main policy is then updated with the usual GRPO objective using all collected trajectories.

Unlearning is gated by entropy. It is triggered only when a moving average of rollout entropy falls below a threshold:
\[
\mathbb{I}_t = \mathbb{I}\left[\overline{\mathcal{H}_t^{(m)}} < \alpha\right].
\]
The paper introduces a complementary unlearning loss,
\[
\mathcal{L}_{\text{Comp}} = \log \left(1 - \pi_{\text{rollout}}(o_{k,t} \mid q, o_{k,<t}) \right),
\]
implemented with clipped probabilities for numerical stability, so that high-probability sampled tokens are penalized more heavily [2510.05837]. The batch unlearning objective is
\[
\mathcal{L}(O_1) = \frac{1}{|O_1|} \sum_{o_k \in O_1} \frac{1}{T_k} \sum_{t=1}^{T_k} \mathbb{I}_t \cdot \left[ \log(1 - p_{\text{clip}}(o_{k,t})) \right].
\]

A defining feature is that the unlearning step is temporary and confined to the rollout model. The rollout model is reset to the current policy parameters at the start of each training iteration, so the forgetting effect does not accumulate across iterations [2510.05837]. This design is intended to break the self-reinforcing loop in which dominant responses are repeatedly sampled and rewarded.

Empirically, the method is reported to outperform GRPO across five reasoning benchmarks, with average relative gains of 24.3% on Qwen2.5-3B, 33.0% on Llama3.2-3B-Instruct, and 10.4% on Qwen3-8B-Base [2510.05837]. The paper further states that EEPO maintains higher rollout entropy, that Stage 2 rollouts have higher entropy than Stage 1 rollouts, and that the method introduces negligible overhead relative to GRPO [2510.05837]. These results position the named EEPO framework as a rollout-diversification method rather than a conventional entropy-bonus method.

## 5. Theoretical interpretations and guarantees

Several EEPO variants are motivated not only empirically but also through explicit regret or convergence analyses. OPPO proves $\tilde{O}(\sqrt{d^2 H^3 T})$ regret in episodic MDPs with linear function approximation, unknown transition, and adversarial reward with full-information feedback, and is described as the first provably efficient policy optimization algorithm that explores [1912.05830]. The dilated-bonus framework improves policy optimization in adversarial MDPs to $\widetilde{\mathcal{O}}(\sqrt{T})$ regret in the tabular case and to $\widetilde{\mathcal{O}}(T^{14/15})$ in a linear MDP setting without a simulator, while removing the need for an exploratory policy in other linear settings [2107.08346].

EE-Politex provides a different theoretical route. It modifies POLITEX so that a single sufficiently exploring policy $\pi_e$ is available beforehand, replacing the earlier requirement that all policies sufficiently explore the environment. The resulting regret bound is
\[
R_T = \widetilde{O}\left( T^{4/5} + \varepsilon_0 T \right),
\]
which the paper emphasizes as the first result showing how to control regret in the presence of function approximation errors on problems where exploration is nontrivial [1908.10479]. This suggests a modular interpretation of EEPO in which exploration and control can be partially decoupled.

ERSAC provides another formalization by endowing the agent with an epistemic-risk-seeking utility function,
\[
u_\tau(x) = \tau (\exp(x/\tau) - 1), \qquad
J_\tau = \tau \log E[\exp(X/\tau)],
\]
and optimizing a zero-sum game between the policy and the risk-seeking parameter $\tau$ [2302.09339]. The paper states that the saddle-point solution minimizes an upper bound on regret and yields efficient exploration even under function approximation.

For more recent LLM-oriented methods, the dominant theoretical theme is entropy control rather than classical regret. DCPO argues that entropy collapse is governed by the distribution itself rather than individual samples, and therefore regularizes the policy at the distribution level [2601.12730]. EPO for multi-turn sparse-reward LLM agents states that its entropy smoothing regularizer guarantees monotonically decreasing entropy variance while maintaining convergence [2509.22576]. HAEPO states that listwise normalization and centralized score-function gradients provide low-variance, unbiased updates [2508.18884]. These analyses indicate a shift in EEPO theory from optimism and regret bounds toward entropy stability and rollout-distribution control in sequence models.

## 6. Applications, empirical patterns, and recurrent controversies

EEPO methods have been applied across robotic control, Atari, MuJoCo, GUI grounding, sparse-reward exploration, and RL for LLMs. In robotics, TD3 with EECL on the robosuite panda lift task is reported to achieve consistently higher returns, faster convergence, and more robust performance across multiple random seeds than baseline TD3 [2408.14009]. In continuous control, IEM-PPO is reported to outperform PPO and ICM-PPO on HalfCheetah-v2, Swimmer-v2, Hopper-v2, and Walker2d-v2, with better sample efficiency, cumulative reward, stability, and robustness, albeit with longer training time [2011.05525]. In non-stationary control, EPPO outperforms PPO and PFO on slippery and paralysis settings by preserving critic plasticity and directing exploration through uncertainty [2503.01468].

In game-like or sparse-reward benchmarks, POME outperforms PPO on 33 out of 49 Atari 2600 games [1811.07350]. EPO improves policy quality and sample efficiency relative to standard policy-gradient and evolutionary baselines on Atari Pong and Breakout, particularly where sparse rewards make global exploration valuable [2504.12568]. MPPO significantly outperforms state-of-the-art exploration methods in sample efficiency and final performance on MuJoCo tasks and their sparsified variants [1911.04207]. The uncertainty-guided tree-search framework that explicitly decouples exploration from policy optimization explores an order of magnitude more efficiently than standard intrinsic-motivation baselines on hard Atari benchmarks, then distills discovered trajectories into deployable policies [2603.22273].

In multimodal or language-agent settings, AEPO improves GUI grounding by using multi-answer generation and an efficiency-based Adaptive Exploration Reward,
\[
\eta = \frac{U}{C},
\qquad
R_{\text{accuracy}}(\mathcal{A}, B) =
\begin{cases}
\frac{1}{\sqrt{N \cdot k}} & \text{if success} \\
-\frac{1}{N} & \text{otherwise}
\end{cases}
\]
and reports relative improvements of up to 9.0% against naive RLVR baselines on GUI grounding benchmarks [2508.05731]. LLM-Explorer, though not a policy-optimization objective in the narrow sense, acts as a plug-in exploration module compatible with DQN, DDPG, TD3, and variants, and reports average performance improvement up to 37.27% on Atari and MuJoCo benchmarks [2505.15293]. HAEPO, DCPO, EPO, and EEPO address long-horizon or sparse-reward LLM training by operating on trajectory likelihoods, entropy regularization, or rollout diversification [2508.18884], [2601.12730], [2509.22576], [2510.05837].

A recurring controversy concerns whether exploration should be induced by sample-level bonuses, entropy bonuses, population diversity, or direct control of the rollout or policy distribution. DCPO explicitly criticizes sample-centric fixes for depending on the “luck” of informative samples and argues for a distribution-centric perspective [2601.12730]. The EEPO sample-then-forget method similarly argues that simply increasing stochasticity does not escape dominant behavioral modes [2510.05837]. Conversely, methods based on intrinsic rewards or optimism retain the view that carefully designed bonuses remain sufficient when uncertainty or novelty is well estimated [1811.07350], [2011.05525], [1912.05830]. Another recurring issue is computational overhead: IEM-PPO requires longer training time, AEPO and LLM-Explorer introduce additional inference or prompting costs, whereas EEPO reports negligible overhead and MPPO reports less than 5% overhead with $K=8$ [2011.05525], [2508.05731], [2505.15293], [1911.04207].

## 7. Relation to adjacent paradigms and open directions

EEPO overlaps with, but is not identical to, curiosity-driven RL, maximum-entropy RL, optimism in the face of uncertainty, evolutionary RL, and decoupled search. Curiosity and intrinsic-reward methods such as ICM-PPO and EECL use reward shaping to value novelty [2408.14009], [2011.05525]. Maximum-entropy exploration is pursued explicitly in EVE, which optimizes the entropy of the steady-state visitation distribution without explicit rollouts and uses dominant eigenvectors of a tilted transition matrix [2603.12325]. Optimistic policy optimization appears in OPPO and in dilated-bonus methods [1912.05830], [2107.08346]. Evolutionary mechanisms appear in EPO and POEM [2504.12568], [2601.14705]. Decoupled exploration is taken furthest by uncertainty-guided tree search, which bypasses RL during exploration and postpones policy optimization to a later distillation phase [2603.22273].

The literature also raises a persistent design question: whether exploration and exploitation should be jointly optimized within one policy update or separated into different phases, models, or distributions. EE-Politex and the tree-search framework both provide arguments for modularity [1908.10479], [2603.22273]. In contrast, DCPO, HAEPO, EPPO, and EPO pursue integrated objectives that keep exploration inside the policy-optimization loop through entropy or distributional regularization [2601.12730], [2508.18884], [2503.01468], [2509.22576]. A plausible implication is that future EEPO work will continue to differentiate between exploration as a property of data collection and exploration as a property of the learned policy distribution.

Across these strands, EEPO can be understood as the systematic effort to make policy optimization explore on purpose rather than by incidental stochasticity. The concrete implementation varies—novel-state rewards, discrepancy bonuses, uncertainty-aware critics, population buffers, evolutionary mutations, entropy smoothing, distribution-level regularization, multi-answer generation, or sample-then-forget rollouts—but the common target remains the same: broader, more informative coverage of the decision space without forfeiting stable policy improvement [2408.14009], [1811.07350], [2510.05837].

Source: https://www.emergentmind.com/topics/exploration-enhanced-policy-optimization-eepo