Pommerman Challenge

From Wikipedia, the free encyclopedia

The Pommerman Challenge is a multi-agent game to test autonomous artificial intelligence systems.[1]

Game structure[edit]

Two-agent team compete against each other on an 11 x 11 board. Each agent can observe only part of the board, and the agents cannot communicate. The goal is to knock down the opponents. Agents place explosives to destroy walls and collect power-ups that appear from those walls, while avoiding death. Game objects can move unpredictably or be moved by an agent.[1]

Play[edit]

The game involves real-time decision making. Agents must choose moves in about .1 seconds.[1]

Algorithms[edit]

The real-time requirement limits the use of compute-heavy techniques such as Monte Carlo tree search. The branching factor at each move can be as large as 1,296, because all four agents act in each step, choosing among six possibilities. The agents choose by accounting for explosions, which have lifetimes of 10 steps. Explosions derail tree search techniques, as searchews with less than 10 levels ignore explosions while deeper searches consider too many choices (given the branching factor).[1]

A hybrid approach uses a limited-depth tree search followed by exploring a deterministic/pessimistic scenario. Limiting the depth keeps the search tree small. The deterministic approach can predict far in the future, by omitting branching. "Good" actions are often those that perform well under pessimistic scenarios, particularly if safety is important. Identifying the worst sequence of positions for an object can suggest where to move it.

After generating pessimistic scenarios, the agent quantifies the survivability of each move, notionally the number of positions in which the agent can then remain safely (without encountering other agents).

Competitions[edit]

3 competitions were organized with slightly changing rules during 2018–2019.

Online - FFA[edit]

This round was a warm-up online event, where each competitor controlled only one agent. Results:[2]

NeurIPS 2018 - Team[edit]

The first Pommerman competition with in-person finals. Results:[2]

The 3 best performing solutions used online tree search.

NeurIPS 2019 - Team Radio[edit]

The second competition with in-person finals improved communication between teammate agents. Results:[3]

References[edit]

  1. ^ a b c d Rodriguez, Jesus (2019-03-18). "This New Technique Helps Build Autonomous, Self-Learning AI Agents that Passed the Pommerman…". Towards Data Science. Retrieved 2019-05-25.
  2. ^ a b Official page of Pommerman announces results of 2018. Official site of Pommerman
  3. ^ Pommerman Twitter channel announces results of 2019. Pommerman Twitter channel


External links[edit]