Skip to content

1391819/MA-seek

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

logo

Seek: A Multi Agent Environment

The purpose of this project is to study emergent competitive strategies between agents controlled by autonomous Deep Recurrent Q-Networks (DRQN). More particularly, the investigation will be carried out within a custom-built environment where two agents, a Seeker and a Hider, will play a version of the pursuit-evasion game.

Roadmap

  • Research AI usage in games (DQNs)
  • Design and implement game environment
    • Generate grid world
    • Define agents' action space and observation space
    • Implement radar mechanism (POMDP)
  • Create separate main and target DRQN networks
  • Implement techniques to improve the learning process
    • Apply Decayed Epsilon Greedy policy
    • Utilise Replay Buffer
  • Develop and fine-tune agents' reward scheme
  • Train agents and perform hyperparameter optimisation
  • Evaluate and analyse agents' performance
  • Identify design flaws in the environment
  • Consider future work and potential improvements
    • Fix environment problems discussed in the Evaluation section
    • Increase training time and analyse new results
    • Improve project scalability (e.g., number of agents, grid size)
    • Implement prioritised experience replay
    • Explore different algorithms and reward schemes
    • Refactor code for better structure and maintainability
    • Create separate testing environment
    • Experiment using Ray

Stack

  • TensorFlow
  • Pygame
  • Multi Agent Reinforcement Learning (MARL)
  • Deep Recurrent Q-Network
  • Partially Observable MDP
  • Decayed Epsilon Greedy Policy
  • Experience replay

Project structure

$PROJECT_ROOT
│   # Readme utilities
├── utils
│   # Introductory research
├── Report.pdf
│   # Key scripts
└─┬ src
  │   # Training logs (using Tensorboard)
  ├── logs
  │   # Saved models (~3K epochs)
  ├── models
  │   # Starting file
  ├── main.py
  │   # Game environment
  ├── game.py
  │   # Environment handler
  ├── maenv.py
  │   # Replay buffer component
  ├── replay_buffer.py
  │   # Small utility for finding optimal epsilon value
  ├── epsilon.py
  │   # DRQN
  └── drqn.py

Highlights

landpage gif

Methodology

Two agents, a Seeker (yellow) and a Hider (light blue) are placed within an 11x11 grid world at random locations. Moreover, 15 walls are also randomly generated at the start of each episode. The action of each agent is defined by a Discrete(8) Gym variable, consisting of rotation (up, down, left, right) and motion (stop, move forward). The observation of each agent does not give it full knowledge about the current state of the environment. More particularly, it only consists of limited data obtained through their radar. The latter is defined by a Box(37, 2) Gym variable, and will be discussed more in-depth in the design section.

With that being said, each agent makes use of two DRQNs, a main one for estimating the Q value, and a target one which is used to update the main one after a certain number of episodes to reduce fluctuations and achieve more stable training. This decision of using separate DRQNs for each agent, thereby using the environment as the only source of interaction between them, is mainly attributed to its simplicity, and decentralised nature. Networks aside, each agent also makes use of two other main components, a decayed epsilon-greedy policy, and a replay buffer (or experience replay). By using the former, each agent’s policy is initially set to a relatively high number, indicating the probability for which its action will be randomly selected from the action space. Following this, it gradually decays until it reaches a minimum amount, helping us achieve the optimal trade-off between exploration and exploitation (Yogeswaran and Ponnambalam, 2012). The latter, on the other hand, is used to store the agents’ transitions and randomly select them during the training process. More specifically, its purpose is to avoid highly correlated training samples thus improving the convergence of the main network (Zhang and Sutton, 2017).

Compared to DQNs (Mnih et al., 2013), DRQNs have been proven to properly converge, even when full information about the environment was not available (Hausknecht and Stone, 2015). This is accomplished by storing previous observations for several timesteps thus allowing the agent to learn from the environment. More particularly, the main difference between the two algorithms is that, in DRQNs, an LSTM layer is introduced after the input layer, with the main idea that there is something that can be learnt from a sequence of observations.

Design

The first step to successfully carry out this project is to build the environment where the agents would operate in. At this stage, properly designing things such as action space, observation space, and reward scheme is essential.

In order to implement our system, we decided on using Python’s Pygame library and TensorFlow. Each row of the agent’s observation space sees approximately 5° (for a total of 180°) and returns the first object the ray met in that direction and its distance from the agent (Figure 1).

agent observation space

Figure 1: A visual representation of the radar as well as the overall environment.

More particularly, the radar implementation is designed as follows:

  • Draw a ray from agent’s location (x, y) to (x + MAX_DISTANCE_cos(angle), y + MAX_DISTANCE_sin(angle))
  • Find the first intersection and return its distance from the agent and object type (WALL/OPPONENT)
  • If no object is detected, return (MAX_DISTANCE, EMPTY)

Following this, it is time to decide the reward scheme that would be used (Table 1). A lot of testing has been carried out on this matter. It was critical to find the perfect balance between a) number of rewards and b) how much each agent was rewarded, in order for our agents to be able to learn the right things. For instance, during some initial experiments, the seeker was given a negative reward (i.e., -1) for distance travelled and a smaller one for not moving during each timestep (i.e., -0.1). However, this subsequently led the seeker to learn that the way to maximise its reward was by standing still, which was to be considered a failure.

Description Seeker Hider
Wall collision -2 -2
Distance travelled -1 +1
No movement performed -3 -3
Hider caught +100 -100
If opponent is inside radar and distance is bigger than 2 cells in size +0.25 -0.25
If opponent is inside radar and distance is smaller than 2 cells in size +0.5 -0.5
If opponent was inside radar, and it is not anymore -5 +5
If opponent was inside radar, and now the distance is smaller than 1 cell in size +2.5 -2.5

Table 1: Reward scheme for our environment.

Implementation

As previously stated, each agent uses two DRQNs, a main one and a target one. Both are made up of an Input, an LSTM, and two Dense layers, with sizes 128 and 8 (dimensions of the action space), respectively. Moreover, the Input layer is made up of the 20 previous observations, whilst the LSTM layer has a size of 256. A visual representation can be seen in Figure 2:

drqn architecture

Figure 2: Deep Recurrent Q-Network architecture.

With that being said, a wide variety of hyper-parameters optimisation experiments were carried out, and we found the “optimal” ones to be the following:

Hyperparameter Value Description
Max training iterations 3000 The maximum number of episodes
Max tries 400 Maximum number of timesteps for each episode
Batch size 128 Number of training samples per update
Buffer size 50000 Size of the experience replay dataset
Learning rate 0.0003 Rate used by the optimiser
Update rule ADAM The parameter update rule used by the optimiser
Initial ℰ 1.0 Initial ℰ value in decayed ℰ greedy policy
Minimum ℰ 0.05 Minimum ℰ value (~67% exploration)
ℰ decay 0.9985 Rate at which ℰ decreases
Timesteps 20 Number of previous observations stored
Gamma 0.99 How much the future rewarded is valued
Target update 10 After how many episodes the target network is updated
Replay iterations 10 How long the main network is trained for

Table 2: Deep Recurrent Q-Network hyperparameters and experimental settings.

Evaluation

In order to evaluate our two agents, we decided on observing the returned average cumulative reward instead of creating a new environment. The reason behind this is that the mentioned metric is considered to be satisfactory for understanding whether an agent is improving or not (Mahadevan, 1996). Moreover, even after 3K episodes (ℰ min achieved at ~2K) our agents’ models still have not completely converged, proving that longer training is required. Nevertheless, the cumulative reward of both agents is showing an upward trend, indicating that they are learning (Figure 5). Both Seeker and Hider learnt to efficiently explore the environment (Figure 6). Moreover, the Seeker is learning to effectively catch the Hider within a minimal number of steps, whilst the Hider is learning how to increase its reward by moving as often as possible, and also evading the Seeker. With that being said, all of the metrics considered for the evaluation process overall show signs of learning.

average cumulative reward

Figure 5: The average cumulative reward for both agents across 3K episodes. Hider in orange, Seeker in blue.

number of collisions

Figure 6: The number of collisions for each episode. Hider in orange, Seeker in blue.

Although I am satisfied with the final software and results, there are some flaws which are mainly design related. More particularly, there are two key issues concerning the environment itself which could have affected the final learning process. Until proven otherwise, we must assume that they did. The following are:

  • sometimes the agents are given a reward (i.e., seeker within hider radar), even if there is a wall between them, as long as they are right next to the wall. This, unfortunately, happens due to the way the entire game was built (i.e., parallel lines problem).
  • agents can effectively spawn surrounded by walls, leading to a “useless” episode. This is one of the reasons why we had to introduce a max timesteps variable for each episode.

An exhaustive re-evaluation of the overall design, as well as a further increase with regards to the training length and the number of agents for each team, is left as future work. With more particular regard to the latter, different algorithms and reward schemes (i.e., individual vs group-based) are to be investigated. While there are several possible adaptations of the Q-Learning algorithm for the multi-agent domain, the one that has been used in this project can be considered relatively simple, and although it provides us with the ability to train agents that have to deal with partially observable environments (Hausknecht and Stone, 2015), it has certain limitations. Our agents are trained using only a limited history of states, meaning that if we would want to further increase the size of our environment, they will not be able to learn the long-term dependencies which exceed the specified history length. Moreover, all states are also stored in the replay memory in order to train the networks, thus drastically increasing their size and the slowness of learning. In this case, other approaches could be taken such as implementing a prioritised experience replay, which has been shown to improve the learning process (Schaul et al., 2015).

Attributions

License

MIT © Roberto Nacu

About

A multi agent reinforcement learning environment where two agents controlled by DRQNs play a custom version of the pursuit-evasion game.

Topics

Resources

License

Stars

Watchers

Forks