Proximal Policy Optimization (PPO) with Unity ML-Agents

How to train agents to play volleyball using deep reinforcement learning.

Joy Zhang
Coder One
5 min readSep 23, 2021

--

This article is part 4 of the series ‘A hands-on introduction to deep reinforcement learning using Unity ML-Agents’. It’s also suitable for anyone interested in using Unity ML-Agents for their own reinforcement learning project.

Recap and overview

In parts 2 and 3, we built a volleyball environment using Unity ML-Agents.

To recap, here is the reinforcement learning setup:

Agent actions (4 discrete branches):

  • Move forward/backward
  • Rotate clockwise/anti-clockwise
  • Move left/right
  • Jump

Agent observations:

  • Agent’s y-rotation [1 float]
  • Agent’s x,y,z-velocity [3 floats]
  • Agent’s x,y,z-normalized vector to the ball (i.e. direction to the ball) [3 floats]
  • Ball’s x,y,z-velocity [3 floats]

Reward function: +1 for hitting the ball over the net

In this tutorial, we’ll use ML-Agents to train these agents to play volleyball using the PPO reinforcement learning algorithm.

Reinforcement learning Agents playing volleyball. Trained using PPO on ~20M steps.

A note on PPO

Proximal Policy Optimization (PPO) by OpenAI is an on-policy reinforcement learning algorithm. We won’t go into detail, but we choose to use it here because ML-Agents provides an implementation of it out-of-the-box. It produces stable results in this environment and is also recommended by ML-Agents for use with Self-Play (which we’ll cover in the next tutorial).

Setting up for training

If you didn’t follow along with the previous tutorials, you can clone or download a copy of the volleyball environment here:

Ultimate Volleyball Repo

If you did follow along with the previous tutorials:

  1. Load the Volleyball.unity scene
  2. Select the VolleyballArea object
  3. Ctrl (or CMD) + D to duplicate the object
  4. Position the VolleyballArea objects so that they don't overlap
  5. Repeat 2–4 until you have ~16 copies of the environment
Volleyball scene containing 16x copies of the same reinforcement learning environment

Each VolleyballArea object is an exact copy of the reinforcement learning environment. All these agents act independently but share the same model. This speeds up training, since all agents contribute to training in parallel.

Selecting hyperparameters

In your project working directory, create a file called Volleyball.yaml. If you've downloaded the full Ultimate-Volleyball repo earlier, this is located in the config folder.

Volleyball.yaml is a trainer configuration file that specifies all the hyperparameters and other settings used during training. Paste the following inside Volleyball.yaml:

Descriptions of the configurations are available in the ML-Agents official documentation.

Training

Make sure that Behavior Types are set to Default:

  1. Open Assets > Prefabs > VolleyballArea.prefab
  2. Select the PurpleAgent object
  3. Go to Inspector window > Behavior Parameters > Behavior Type > Set to Default
  4. Repeat for Blue Agent

Note: the Behavior Name (Volleyball) above must match the behavior name in the Volleyball.yaml trainer config file (line 2).

(Optional) Set up a training camera so that you can view the whole scene while training.

  • If using the pre-built repo, select the Main Camera and turn it off in the Inspector.
  • If using your own project, create a camera object: right click in Hierarchy > Camera.

Next, activate the virtual environment containing your installation of ml-agents. Navigate to your working directory, and run in the terminal:

Notes:

  • Replace <path to config file> , e.g. config/Volleyball.yaml
  • ML-Agents defaults to a time scale of 20x to speed up training. Setting the flag --time-scale=1 is important because the physics in this environment are time-dependant. Without it, you may notice that your agents perform differently during inference compared to training.

When you see the message “Start training by pressing the Play button in the Unity Editor”, click ▶ within the Unity GUI.

In another terminal window, run tensorboard --logdir results from your working directory to observe the training process.

You can pause training at any time by clicking the ▶ button in Unity. To see how the agents are performing:

  1. Locate the results in results/VB_1/Volleyball.onnx
  2. Copy this .onnx model into the Unity project
  3. Drag the model into the Model field of the Behavior Parameters component.
  4. Click ▶ to watch the agents use this model for inference.

To resume training, add the --resume flag (e.g. mlagents-learn config/Volleyball.yaml --run-id=VB_1 --time-scale=1 --resume)

Agents while training

Leave the agents to train. At about ~5M you’ll start to see the agents occasionally touching the ball. At ~10M the agents can start to volley:

At ~20M steps, the agents should be able to successfully volley the ball back-and-forth!

Next steps

In this tutorial, you successfully trained agents to play volleyball in ~20M steps using PPO. Try playing around with the hyperparameters in Volleyball.yaml or training for more steps to get a better result.

These agents are trained to keep the ball in the play. You won’t be able to train competitive agents (with the intention of winning the game) with this setup because its a zero-sum game and both purple and blue agents share the same model. This is where competitive Self-Play comes in.

Part 5: Training agents using Self-Play

--

--

Joy Zhang
Coder One

Product Manager in AI & Medtech. Previously founded gocoder.one. Building in public @ https://beacons.ai/joyfullystudio