GithubHelp home page GithubHelp logo

thedatamonk / unity-tennis-competition Goto Github PK

View Code? Open in Web Editor NEW
4.0 2.0 2.0 1.21 MB

Project 3 of Udacity Deep Reinforcement Learning Nanodegree

Jupyter Notebook 77.32% Python 22.68%
unity-ml-agents deep-reinforcement-learning udacity-nanodegree multi-agent-reinforcement-learning

unity-tennis-competition's Introduction

Udacity Deep Reinforcement learning Nanodegree

Problem statement

Project Collaboration and Competition: In this project, we have to make two agents learn to play the game of Tennis. The environment is provided by Unity-ML agents. The aim of this project is to demonstrate how two or more agents can collaborate with each other to learn to achieve the goal efficiently (in this case to learn to play tennis). Tennis environment

NOTE:

  1. This project was completed in the Udacity Workspace, but the project can also be completed on a local Machine. Instructions on how to download and setup Unity ML environments can be found in Unity ML-Agents Github repo.
  2. The project environment is similar to, but not identical to the Tennis environment on the Unity ML-Agents GitHub page.

Environment

In this environment, two agents (players) control rackets to bounce a ball over a net. If an agent hits the ball over the net, it receives a reward of +0.1. If an agent lets a ball hit the ground or hits the ball out of bounds, it receives a reward of -0.01. Thus, the goal of each agent is to keep the ball in play. The observation space consists of 8 variables corresponding to the position and velocity of the ball and racket. Each agent receives its own, local observation. Two continuous actions are available, corresponding to movement toward (or away from) the net, and jumping.

Solving the environment

The task is episodic, and in order to solve the environment, the agents must get an average score of +0.5 (over 100` consecutive episodes, after taking the maximum over both agents). Specifically,

  1. After each episode, we add up the rewards that each agent received (without discounting), to get a score for each agent. This yields 2 (potentially different) scores. We then take the maximum of these 2 scores.
  2. This yields a single score for each episode.

The environment is considered solved, when the average (over 100 episodes) of those scores is at least +0.5.

Getting started

  1. Download the environment from one of the links below. You need to only select the environment that matches your operating sytem:

(For Windows users) Check out this link if you need help with determining if your computer is running a 32-bit version or 64-bit version of the Windows operating system.

(For AWS) If you'd like to train the agent on AWS (and have not enabled a virtual screen), the please use this link to obtain the environment.

Dependencies

  1. Python 3.6
  2. Pytorch
  3. Unity ML-Agents

Solution

The code for this project is mostly taken from my implementation for the Udacity Project on Continuous Control. Following are the key features of the implementation:

  1. The agents learnt from the experience tuples every 20 timesteps and at very update step, the agents learnt 10 times.
  2. Gradient clipping helped improved the training.
self.critic_optimizer.zero_grad()
critic_loss.backward()
torch.nn.utils.clip_grad_norm(self.critic_local.parameters(), 1)
self.critic_optimizer.step()
  1. Also, to add a bit of exploration while choosing actions, as suggested in the DDPG paper, Ornstein-Uhlenbeck process was used to add noise to the chosen actions.
  2. Batch Normalization after all the hidden layers.
  3. The score for each episode is calculated by taking the maximum over the individual scores of both the players.

Running the code

  1. After installing all dependcies, clone this repository in your local system.
  2. Make sure you have Jupyter installed. To install Jupyter:
python3 -m pip install --upgrade pip
python3 -m pip install jupyter
  1. Code structure:
    • Tennis.ipynb : Main notebook containing the training function
    • maddpg.py : code for MADDPG agent
    • model.py : code for Actor and Critic networks
    • workspace_utils.py : code to keep the Udacity workspace awake during training

Results

DDPG score DDPG score over 100 episodes

The implementation was able to solve the environment in approximately 2050 episodes.

unity-tennis-competition's People

Contributors

thedatamonk avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.