Deep Reinforcement Learning with Stable Baselines
So far, we have learned various deep reinforcement learning (RL) algorithms. Wouldn't it be nice if we had a library to easily implement a deep RL algorithm? Yes! There are various libraries available to easily build a deep RL algorithm.
One such popular deep RL library is OpenAI Baselines. OpenAI Baselines provides an efficient implementation of many deep RL algorithms, which makes them easier to use. However, OpenAI Baselines does not provide good documentation. So, we will look at the fork of OpenAI Baselines called Stable Baselines.
Stable Baselines is an improved implementation of OpenAI Baselines. Stable Baselines is easier to use and it also includes state-of-the-art deep RL algorithms along with several useful features. We can use Stable Baselines for quickly prototyping the RL model.
Let's start off the chapter by installing Stable Baselines, and then we will learn how to create our first agent...