This is a step-by-step tutorial for Policy Gradient algorithms from A2C to SAC, including learning acceleration methods using demonstrations for treating real applications with sparse rewards. Every chapter contains both of theoretical backgrounds and object-oriented implementation. Just pick any topic in which you are interested, and learn! You can execute them right away with Colab even on your smartphone.
Please feel free to open an issue or a pull-request if you have any idea to make it better. :)
If you want a tutorial for DQN series, please see Rainbow is All You Need.
- Advantage Actor-Critic (A2C) [NBViewer] [Colab]
- Proximal Policy Optimization Algorithms (PPO) [NBViewer] [Colab]
- Deep Deterministic Policy Gradient (DDPG) [NBViewer] [Colab]
- Twin Delayed Deep Deterministic Policy Gradient Algorithm (TD3) [NBViewer] [Colab]
- Soft Actor-Critic (SAC) [NBViewer] [Colab]
- DDPG from Demonstration (DDPGfD) [NBViewer] [Colab]
- Behavior Cloning (with DDPG) [NBViewer] [Colab]
Reference: OpenAI gym Pendulum-v0
Type: Box(3)
Num | Observation | Min | Max |
---|---|---|---|
0 | cos(theta) | -1.0 | 1.0 |
1 | sin(theta) | -1.0 | 1.0 |
2 | theta dot | -8.0 | 8.0 |
Type: Box(1)
Num | Action | Min | Max |
---|---|---|---|
0 | Joint effort | -2.0 | 2.0 |
The precise equation for reward:
-(theta^2 + 0.1*theta_dt^2 + 0.001*action^2)
Theta is normalized between -pi and pi. Therefore, the lowest cost is -(pi^2 + 0.1*8^2 + 0.001*2^2) = -16.2736044
, and the highest cost is 0
. In essence, the goal is to remain at zero angle (vertical), with the least rotational velocity, and the least effort. Max steps per an episode is 200 steps.
This repository is tested on Anaconda virtual environment with python 3.6.1+
$ conda create -n pg-is-all-you-need python=3.6.9
$ conda activate pg-is-all-you-need
First, clone the repository.
git clone https://github.com/MrSyee/pg-is-all-you-need.git
cd pg-is-all-you-need
Secondly, install packages required to execute the code. Just type:
make dep
Install packages required to develop the code:
make dev
If you want to check the difference of jupyter files that you modified, use nbdime:
nbdiff-web
- M. Babaeizadeh et al., "Reinforcement learning through asynchronous advantage actor-critic on a gpu.", International Conference on Learning Representations, 2017.
- J. Schulman et al., "Proximal Policy Optimization Algorithms." arXiv preprint arXiv:1707.06347, 2017.
- T. P. Lillicrap et al., "Continuous control with deep reinforcement learning." arXiv preprint arXiv:1509.02971, 2015.
- S. Fujimoto et al., "Addressing Function Approximation Error in Actor-Critic Methods." arXiv preprint arXiv:1802.09477, 2018.
- T. Haarnoja et al., "Soft Actor-Critic: Off-Policy Maximum Entropy Deep Reinforcement Learning with a Stochastic Actor." arXiv preprint arXiv:1801.01290, 2018.
- M. Vecerik et al., "Leveraging Demonstrations for Deep Reinforcement Learning on Robotics Problems with Sparse Rewards."arXiv preprint arXiv:1707.08817, 2017
- A. Nair et al., "Overcoming Exploration in Reinforcement Learning with Demonstrations." arXiv preprint arXiv:1709.10089, 2017.
Thanks goes to these wonderful people (emoji key):
Kyunghwan Kim 💻 📖 |
Jinwoo Park (Curt) 💻 📖 |
Mincheol Kim 💻 📖 |
Fazl 🚧 |