Table of Contents
Fetching ...

Ensembling Prioritized Hybrid Policies for Multi-agent Pathfinding

Huijie Tang, Federico Berto, Jinkyoo Park

TL;DR

This paper tackles multi-agent pathfinding (MAPF) under challenging dense-obstacle conditions by introducing Ensembling Prioritized Hybrid Policies (EPH). EPH combines an enhanced selective graph-convolution communication framework with a Double Duelling DQN training regime and a suite of inference-time strategies, including hybrid expert guidance, priority-based conflict resolution, advanced deadlock escape, and solver ensembling. The approach is evaluated on random and structured maps, where EPH demonstrates competitive or superior performance against state-of-the-art neural MAPF solvers and some classical heuristics, often achieving higher success rates and shorter makespans. The results highlight the practical potential of combining richer local communication with principled inference-time diversification for robust, scalable MAPF in real-world multi-agent systems.

Abstract

Multi-Agent Reinforcement Learning (MARL) based Multi-Agent Path Finding (MAPF) has recently gained attention due to its efficiency and scalability. Several MARL-MAPF methods choose to use communication to enrich the information one agent can perceive. However, existing works still struggle in structured environments with high obstacle density and a high number of agents. To further improve the performance of the communication-based MARL-MAPF solvers, we propose a new method, Ensembling Prioritized Hybrid Policies (EPH). We first propose a selective communication block to gather richer information for better agent coordination within multi-agent environments and train the model with a Q learning-based algorithm. We further introduce three advanced inference strategies aimed at bolstering performance during the execution phase. First, we hybridize the neural policy with single-agent expert guidance for navigating conflict-free zones. Secondly, we propose Q value-based methods for prioritized resolution of conflicts as well as deadlock situations. Finally, we introduce a robust ensemble method that can efficiently collect the best out of multiple possible solutions. We empirically evaluate EPH in complex multi-agent environments and demonstrate competitive performance against state-of-the-art neural methods for MAPF. We open-source our code at https://github.com/ai4co/eph-mapf.

Ensembling Prioritized Hybrid Policies for Multi-agent Pathfinding

TL;DR

This paper tackles multi-agent pathfinding (MAPF) under challenging dense-obstacle conditions by introducing Ensembling Prioritized Hybrid Policies (EPH). EPH combines an enhanced selective graph-convolution communication framework with a Double Duelling DQN training regime and a suite of inference-time strategies, including hybrid expert guidance, priority-based conflict resolution, advanced deadlock escape, and solver ensembling. The approach is evaluated on random and structured maps, where EPH demonstrates competitive or superior performance against state-of-the-art neural MAPF solvers and some classical heuristics, often achieving higher success rates and shorter makespans. The results highlight the practical potential of combining richer local communication with principled inference-time diversification for robust, scalable MAPF in real-world multi-agent systems.

Abstract

Multi-Agent Reinforcement Learning (MARL) based Multi-Agent Path Finding (MAPF) has recently gained attention due to its efficiency and scalability. Several MARL-MAPF methods choose to use communication to enrich the information one agent can perceive. However, existing works still struggle in structured environments with high obstacle density and a high number of agents. To further improve the performance of the communication-based MARL-MAPF solvers, we propose a new method, Ensembling Prioritized Hybrid Policies (EPH). We first propose a selective communication block to gather richer information for better agent coordination within multi-agent environments and train the model with a Q learning-based algorithm. We further introduce three advanced inference strategies aimed at bolstering performance during the execution phase. First, we hybridize the neural policy with single-agent expert guidance for navigating conflict-free zones. Secondly, we propose Q value-based methods for prioritized resolution of conflicts as well as deadlock situations. Finally, we introduce a robust ensemble method that can efficiently collect the best out of multiple possible solutions. We empirically evaluate EPH in complex multi-agent environments and demonstrate competitive performance against state-of-the-art neural methods for MAPF. We open-source our code at https://github.com/ai4co/eph-mapf.
Paper Structure (21 sections, 3 equations, 4 figures, 3 tables, 1 algorithm)

This paper contains 21 sections, 3 equations, 4 figures, 3 tables, 1 algorithm.

Figures (4)

  • Figure 1: Overview of a single inference step of EPH. The upper part is the neural network structure of EPH; the lower part is the illustration of how observations of all agents are transformed into actions by first feeding into the neural network, and then going through the proposed inference strategies. The $\rho$ and $\tau$ in the lower part are the hyperparameters defined in \ref{['subsec:collaboration']}.
  • Figure 2: Types of $A^*_\tau$ we consider. $\tau \in \{0,1,2\}$. Changing the map representation improves the single-agent path based on each situation.
  • Figure 3: Prioritized Conflict Resolution. Agents with higher Q values are prioritized when a conflict happens, which leads to shorter paths.
  • Figure 4: Comparative Analysis of Success Rate (left) and Average Episode Length (right) on random maps.