Papers
Topics
Authors
Recent
Search
2000 character limit reached

DPEPO: Diverse Parallel Exploration Policy Optimization for LLM-based Agents

Published 27 Apr 2026 in cs.CL | (2604.24320v1)

Abstract: LLM agents that follow the sequential "reason-then-act" paradigm have achieved superior performance in many complex tasks.However, these methods suffer from limited exploration and incomplete environmental understanding, as they interact with only a single environment per step. In this paper, we first introduce a novel paradigm that enables an agent to interact with multiple environments simultaneously and share cross-trajectory experiences. Building upon this paradigm, we further propose DPEPO, a reinforcement learning (RL) algorithm that encourages the agent to perform diverse parallel exploration. There are two stages in DPEPO: initial supervised fine-tuning (SFT) imparts basic parallel reasoning and action generation, followed by reinforcement learning stage with a hierarchical reward scheme. We design a parallel trajectory-level success reward and two step-level rewards: Diverse Action Reward and Diverse State Transition Reward, which actively penalize behavioral redundancy and promote broad exploration. Extensive experiments on ALFWorld and ScienceWorld show that DPEPO achieves state-of-the-art (SOTA) success rates, while maintaining comparable efficiency to strong sequential baselines. (Code is available at https://github.com/LePanda026/Code-for-DPEPO)

Summary

  • The paper introduces DPEPO, a parallel exploration framework that uses hierarchical RL and diversity rewards to enhance LLM agent performance.
  • It combines supervised fine-tuning with detailed step-level reward shaping to reduce token usage and accelerate convergence compared to sequential methods.
  • Empirical results on ALFWorld and ScienceWorld demonstrate significant gains in success rates and efficiency, with scalable improvements as model size increases.

Diverse Parallel Exploration Policy Optimization for LLM Agents: Technical Summary

Motivation and Limitations of Sequential Exploration

Traditional LLM-based agents operate under the ReAct paradigm, alternating between reasoning and action selection within a single environment at each timestep. This sequential execution constrains the agent's exploration capabilities, producing a narrow, linear trajectory that limits environmental understanding and biases decision-making. While naive multi-sampling of trajectories per task nominally increases exploration entropy, it fails to foster genuine behavioral diversity and isolates experiences across trajectories, yielding inefficiencies in both token consumption and runtime. Figure 1

Figure 1: ReAct-based agents form restricted environmental cognitions, whereas DPEPO enables broad, multi-environment parallel exploration for holistic understanding.

DPEPO: Parallel Exploration Policy Optimization Framework

Paradigm Shift: Parallelized Agent-Environment Interaction

DPEPO introduces a parallel interaction paradigm, allowing agents to simultaneously engage with multiple (KK) instances of an environment derived from identical initial state distributions. At each step, the subset of environments for interaction (Etโ€ฒ\mathcal{E}_t') is dynamically selected, maximizing both coverage and quality of state-action sequences. The resultant trajectory encapsulates parallelized states and actions ฯ„={(St,At)}t=1T\tau = \{(S_t, A_t)\}_{t=1}^T, supporting concurrent exploration and shared experience accumulation.

Training Protocol

DPEPO employs a two-stage optimization pipeline:

  • Supervised Fine-Tuning (SFT): Utilizes synthetic and annotated parallel trajectories to cold-start models with structured output capabilities and foundational parallel behaviors.
  • Hierarchical RL Optimization: Incorporates both trajectory-level and step-level reward shaping to drive agents toward more diverse and non-redundant exploration. Figure 2

    Figure 2: The DPEPO training framework: initial SFT for basic parallel skills, followed by hierarchical RL with parallel trajectory and step-level rewards.

Reward Structure

  • Parallel Trajectory-Level Success Reward: Binary signal awarded if any environment completes the goal. Facilitates outcome-level supervision.
  • Step-Level Rewards:
    • Diverse Action Reward: Penalizes intra- and inter-environment action repetitions at each step, maximizing behavioral entropy.
    • Diverse State Transition Reward: Discourages redundant state-action transitions both within and across parallel environments, promoting breadth and novelty in exploration.

Group-relative advantage estimation, adapted from GRPO, enables policy credit assignment at multiple granularitiesโ€”trajectory and stepโ€”optimizing for both high-level success and fine-grained exploration diversity.

Empirical Evaluation

SOTA Performance and Generalization

On ALFWorld and ScienceWorld, DPEPO achieves state-of-the-art success rates (98.2% and 61.4%, respectively), outperforming baselines including GRPO, GiGPO, RLVMR, and SPEAR. DPEPO demonstrates robust generalization on unseen task splits, maintaining efficiency despite its parallel paradigm.

Scaling Analysis

Success rate and average steps exhibit monotonic improvements with increasing model size. Even minimal DPEPO variants surpass strong RL baselines in both efficacy and efficiency. This scaling behavior persists across Qwen2.5 and Qwen3 model families. Figure 3

Figure 3: DPEPO maintains high success rates with improved average step efficiency as model size increases.

Parallel Environment Impact

Increasing the number of exploration environments (KK) yields further performance gains. DPEPO's token budget growth is sublinear with respect to KK, unlike GiGPO's, highlighting superior sample and token efficiency. Figure 4

Figure 4: DPEPO achieves higher success rates than GiGPO for equivalent KK, with more efficient token usage as parallelism increases.

Ablations and Behavioral Dynamics

Reward component ablations confirm the joint necessity of Diverse Action Reward and Diverse State Transition Reward: removal of either significantly degrades exploration diversity and solution efficiency. Visualization of exploration metrics substantiates a reduction in action/transition repetitions and greater coverage in parallel trajectories with full reward shaping. Figure 5

Figure 5: DPEPO variants exhibit differing exploration dynamics; full variant yields maximal diversity and minimal repetition rates.

Efficiency and Resource Utilization

Despite broader exploration, DPEPO's inference and training trajectory lengths are shorter and its time-to-SOTA is substantially reduced compared to sequential and multi-sampling baselines. Parallel execution amortizes inference latency, and sample quality boosts training convergence. Figure 6

Figure 6: Main step-wise training components in DPEPO show only marginal time increase due to parallelism.

Figure 7

Figure 7: DPEPO converges in less than 24 hours (500 RL samples), four times faster than GiGPO.

Additional Analyses

DPEPO maintains stable exploration behavior due to implicit context length constraints and diversity-driven step rewards, preventing reward hacking or excessive environment proliferation. Strong baseline comparisons further validate its superiority even against advanced exploration and imitation learning methods (e.g., MCTS+DPO).

Scaling analysis on Qwen3 reaffirms predictable and monotonic improvement with model size. Figure 8

Figure 8: Qwen3 scaling experiments confirm DPEPO's generalization and performance consistency.

DPEPO adapts prompting for efficient context compression, reducing token budgets by over seven-fold while preserving historical information richness, a necessity for multi-environment rollouts. Figure 9

Figure 9: Context length distributionโ€”DPEPO's designed prompt achieves substantial compression versus vanilla prompt.

Implications and Future Directions

DPEPO's paradigm unlocks holistic environment cognition for LLM agents and significantly raises the ceiling for autonomous agent performance. Practically, it is highly applicable to domains where parallel environment creation is tractableโ€”code agent sandboxes, multi-tool and GUI systems, web information seeking, and parallel simulation scenarios. Theoretically, it demonstrates the value of diversity-driven RL reward shaping and parallel data collection for scaling agentic reasoning and action.

Challenges in real-world embodied parallelization remain, but training on multiple distinct tasks or environments offers a path forward. Further exploration of parallel exploration mechanisms and reward shaping in more complex, real-world settings is warranted.

Conclusion

DPEPO fundamentally enhances LLM agent training by extending exploration from sequential to structured parallel domains. Joint step- and trajectory-level diversity rewards foster comprehensive environmental understanding, yielding superior task success and efficiency across benchmarks. The paradigmโ€™s scalability, efficiency, and diversity incentives provide a robust foundation for future advances in agentic policy optimization and autonomous system design.

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Collections

Sign up for free to add this paper to one or more collections.