stable-baselines3/README.md

239 lines
12 KiB
Markdown
Raw Normal View History

2019-09-22 11:57:18 +00:00
<img src="docs/\_static/img/logo.png" align="right" width="40%"/>
[![pipeline status](https://gitlab.com/araffin/stable-baselines3/badges/master/pipeline.svg)](https://gitlab.com/araffin/stable-baselines3/-/commits/master) [![Documentation Status](https://readthedocs.org/projects/stable-baselines/badge/?version=master)](https://stable-baselines3.readthedocs.io/en/master/?badge=master) [![coverage report](https://gitlab.com/araffin/stable-baselines3/badges/master/coverage.svg)](https://gitlab.com/araffin/stable-baselines3/-/commits/master)
[![codestyle](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
2020-05-07 06:55:42 +00:00
2019-09-22 11:57:18 +00:00
2020-05-05 13:02:35 +00:00
# Stable Baselines3
2019-09-22 11:57:18 +00:00
Stable Baselines3 (SB3) is a set of reliable implementations of reinforcement learning algorithms in PyTorch. It is the next major version of [Stable Baselines](https://github.com/hill-a/stable-baselines).
2019-09-22 11:43:01 +00:00
You can read a detailed presentation of Stable Baselines3 in the [v1.0 blog post](https://araffin.github.io/post/sb3/).
2020-01-22 16:23:42 +00:00
2019-09-26 14:29:47 +00:00
2020-05-07 06:55:42 +00:00
These algorithms will make it easier for the research community and industry to replicate, refine, and identify new ideas, and will create good baselines to build projects on top of. We expect these tools will be used as a base around which new ideas can be added, and as a tool for comparing a new approach against existing ones. We also hope that the simplicity of these tools will allow beginners to experiment with a more advanced toolset, without being buried in implementation details.
2020-05-07 15:35:29 +00:00
**Note: despite its simplicity of use, Stable Baselines3 (SB3) assumes you have some knowledge about Reinforcement Learning (RL).** You should not utilize this library without some practice. To that extent, we provide good resources in the [documentation](https://stable-baselines3.readthedocs.io/en/master/guide/rl.html) to get started with RL.
2020-05-07 06:55:42 +00:00
## Main Features
**The performance of each algorithm was tested** (see *Results* section in their respective page),
you can take a look at the issues [#48](https://github.com/DLR-RM/stable-baselines3/issues/48) and [#49](https://github.com/DLR-RM/stable-baselines3/issues/49) for more details.
2020-05-07 06:55:42 +00:00
| **Features** | **Stable-Baselines3** |
| --------------------------- | ----------------------|
| State of the art RL methods | :heavy_check_mark: |
| Documentation | :heavy_check_mark: |
| Custom environments | :heavy_check_mark: |
| Custom policies | :heavy_check_mark: |
| Common interface | :heavy_check_mark: |
| Ipython / Notebook friendly | :heavy_check_mark: |
| Tensorboard support | :heavy_check_mark: |
2020-05-07 06:55:42 +00:00
| PEP8 code style | :heavy_check_mark: |
| Custom callback | :heavy_check_mark: |
| High code coverage | :heavy_check_mark: |
| Type hints | :heavy_check_mark: |
### Planned features
2020-05-07 08:10:51 +00:00
Implement HER (#120) * Added working her version, Online sampling is missing. * Updated test_her. * Added first version of online her sampling. Still problems with tensor dimensions. * Reformat * Fixed tests * Added some comments. * Updated changelog. * Add missing init file * Fixed some small bugs. * Reduced arguments for HER, small changes. * Added getattr. Fixed bug for online sampling. * Updated save/load funtions. Small changes. * Added her to init. * Updated save method. * Updated her ratio. * Move obs_wrapper * Added DQN test. * Fix potential bug * Offline and online her share same sample_goal function. * Changed lists into arrays. * Updated her test. * Fix online sampling * Fixed action bug. Updated time limit for episodes. * Updated convert_dict method to take keys as arguments. * Renamed obs dict wrapper. * Seed bit flipping env * Remove get_episode_dict * Add fast online sampling version * Added documentation. * Vectorized reward computation * Vectorized goal sampling * Update time limit for episodes in online her sampling. * Fix max episode length inference * Bug fix for Fetch envs * Fix for HER + gSDE * Reformat (new black version) * Added info dict to compute new reward. Check her_replay_buffer again. * Fix info buffer * Updated done flag. * Fixes for gSDE * Offline her version uses now HerReplayBuffer as episode storage. * Fix num_timesteps computation * Fix get torch params * Vectorized version for offline sampling. * Modified offline her sampling to use sample method of her_replay_buffer * Updated HER tests. * Updated documentation * Cleanup docstrings * Updated to review comments * Fix pytype * Update according to review comments. * Removed random goal strategy. Updated sample transitions. * Updated migration. Removed time signal removal. * Update doc * Fix potential load issue * Add VecNormalize support for dict obs * Updated saving/loading replay buffer for HER. * Fix test memory usage * Fixed save/load replay buffer. * Fixed save/load replay buffer * Fixed transition index after loading replay buffer in online sampling * Better error handling * Add tests for get_time_limit * More tests for VecNormalize with dict obs * Update doc * Improve HER description * Add test for sde support * Add comments * Add comments * Remove check that was always valid * Fix for terminal observation * Updated buffer size in offline version and reset of HER buffer * Reformat * Update doc * Remove np.empty + add doc * Fix loading * Updated loading replay buffer * Separate online and offline sampling + bug fixes * Update tensorboard log name * Version bump * Bug fix for special case Co-authored-by: Antonin Raffin <antonin.raffin@dlr.de> Co-authored-by: Antonin RAFFIN <antonin.raffin@ensta.org>
2020-10-22 09:56:43 +00:00
Please take a look at the [Roadmap](https://github.com/DLR-RM/stable-baselines3/issues/1) and [Milestones](https://github.com/DLR-RM/stable-baselines3/milestones).
2020-05-07 08:10:51 +00:00
## Migration guide: from Stable-Baselines (SB2) to Stable-Baselines3 (SB3)
2020-05-07 08:10:51 +00:00
A migration guide from SB2 to SB3 can be found in the [documentation](https://stable-baselines3.readthedocs.io/en/master/guide/migration.html).
2020-05-07 08:10:51 +00:00
2020-05-07 06:55:42 +00:00
## Documentation
2020-05-07 15:35:29 +00:00
Documentation is available online: [https://stable-baselines3.readthedocs.io/](https://stable-baselines3.readthedocs.io/)
2020-05-07 06:55:42 +00:00
## RL Baselines3 Zoo: A Training Framework for Stable Baselines3 Reinforcement Learning Agents
2020-05-07 06:55:42 +00:00
[RL Baselines3 Zoo](https://github.com/DLR-RM/rl-baselines3-zoo) is a training framework for Reinforcement Learning (RL).
2020-05-07 06:55:42 +00:00
It provides scripts for training, evaluating agents, tuning hyperparameters, plotting results and recording videos.
In addition, it includes a collection of tuned hyperparameters for common environments and RL algorithms, and agents trained with those settings.
2020-05-07 06:55:42 +00:00
Goals of this repository:
2019-09-26 14:29:47 +00:00
2020-05-07 06:55:42 +00:00
1. Provide a simple interface to train and enjoy RL agents
2. Benchmark the different Reinforcement Learning algorithms
3. Provide tuned hyperparameters for each environment and RL algorithm
4. Have fun with the trained agents!
2020-05-07 06:55:42 +00:00
Github repo: https://github.com/DLR-RM/rl-baselines3-zoo
2019-09-26 14:29:47 +00:00
2020-05-08 11:27:17 +00:00
Documentation: https://stable-baselines3.readthedocs.io/en/master/guide/rl_zoo.html
2019-09-26 14:29:47 +00:00
## SB3-Contrib: Experimental RL Features
We implement experimental features in a separate contrib repository: [SB3-Contrib](https://github.com/Stable-Baselines-Team/stable-baselines3-contrib)
This allows SB3 to maintain a stable and compact core, while still providing the latest features, like Truncated Quantile Critics (TQC) or Quantile Regression DQN (QR-DQN).
Documentation is available online: [https://sb3-contrib.readthedocs.io/](https://sb3-contrib.readthedocs.io/)
2020-05-07 06:55:42 +00:00
## Installation
2020-01-20 15:19:35 +00:00
2020-05-07 06:55:42 +00:00
**Note:** Stable-Baselines3 supports PyTorch 1.4+.
2020-01-20 15:19:35 +00:00
2020-05-07 06:55:42 +00:00
### Prerequisites
Stable Baselines3 requires python 3.6+.
2020-01-22 16:23:42 +00:00
2020-05-08 11:27:17 +00:00
#### Windows 10
2020-05-07 06:55:42 +00:00
2020-05-08 11:27:17 +00:00
To install stable-baselines on Windows, please look at the [documentation](https://stable-baselines3.readthedocs.io/en/master/guide/install.html#prerequisites).
2020-05-07 06:55:42 +00:00
### Install using pip
Install the Stable Baselines3 package:
2020-01-22 16:23:42 +00:00
```
2020-05-07 06:55:42 +00:00
pip install stable-baselines3[extra]
2020-01-22 16:23:42 +00:00
```
**Note:** Some shells such as Zsh require quotation marks around brackets, i.e. `pip install 'stable-baselines3[extra]'` ([More Info](https://stackoverflow.com/a/30539963)).
2020-01-22 16:23:42 +00:00
This includes an optional dependencies like Tensorboard, OpenCV or `atari-py` to train on atari games. If you do not need those, you can use:
2020-01-22 16:23:42 +00:00
```
2020-05-07 06:55:42 +00:00
pip install stable-baselines3
2020-01-22 16:23:42 +00:00
```
2020-05-07 15:35:29 +00:00
Please read the [documentation](https://stable-baselines3.readthedocs.io/) for more details and alternatives (from source, using docker).
2020-05-07 06:55:42 +00:00
## Example
Most of the library tries to follow a sklearn-like syntax for the Reinforcement Learning algorithms.
Here is a quick example of how to train and run PPO on a cartpole environment:
```python
import gym
from stable_baselines3 import PPO
env = gym.make("CartPole-v1")
2020-05-07 06:55:42 +00:00
model = PPO("MlpPolicy", env, verbose=1)
2020-05-07 06:55:42 +00:00
model.learn(total_timesteps=10000)
obs = env.reset()
for i in range(1000):
action, _states = model.predict(obs, deterministic=True)
2020-05-07 08:10:51 +00:00
obs, reward, done, info = env.step(action)
2020-05-07 06:55:42 +00:00
env.render()
2020-05-07 08:10:51 +00:00
if done:
obs = env.reset()
2020-01-22 16:23:42 +00:00
2020-05-07 06:55:42 +00:00
env.close()
2020-01-22 16:23:42 +00:00
```
2020-05-07 06:55:42 +00:00
2020-05-07 15:35:29 +00:00
Or just train a model with a one liner if [the environment is registered in Gym](https://github.com/openai/gym/wiki/Environments) and if [the policy is registered](https://stable-baselines3.readthedocs.io/en/master/guide/custom_policy.html):
2020-05-07 06:55:42 +00:00
```python
from stable_baselines3 import PPO
model = PPO('MlpPolicy', 'CartPole-v1').learn(10000)
2020-01-22 16:23:42 +00:00
```
2020-05-07 15:35:29 +00:00
Please read the [documentation](https://stable-baselines3.readthedocs.io/) for more examples.
2020-05-07 06:55:42 +00:00
2020-05-07 14:08:23 +00:00
## Try it online with Colab Notebooks !
2020-05-07 06:55:42 +00:00
All the following examples can be executed online using Google colab notebooks:
2020-05-08 11:27:17 +00:00
- [Full Tutorial](https://github.com/araffin/rl-tutorial-jnrr19)
2020-05-07 14:08:23 +00:00
- [All Notebooks](https://github.com/Stable-Baselines-Team/rl-colab-notebooks/tree/sb3)
- [Getting Started](https://colab.research.google.com/github/Stable-Baselines-Team/rl-colab-notebooks/blob/sb3/stable_baselines_getting_started.ipynb)
2020-05-08 11:27:17 +00:00
- [Training, Saving, Loading](https://colab.research.google.com/github/Stable-Baselines-Team/rl-colab-notebooks/blob/sb3/saving_loading_dqn.ipynb)
2020-06-17 10:47:09 +00:00
- [Multiprocessing](https://colab.research.google.com/github/Stable-Baselines-Team/rl-colab-notebooks/blob/sb3/multiprocessing_rl.ipynb)
2020-05-08 11:27:17 +00:00
- [Monitor Training and Plotting](https://colab.research.google.com/github/Stable-Baselines-Team/rl-colab-notebooks/blob/sb3/monitor_training.ipynb)
2020-06-17 10:47:09 +00:00
- [Atari Games](https://colab.research.google.com/github/Stable-Baselines-Team/rl-colab-notebooks/blob/sb3/atari_games.ipynb)
2020-05-08 11:27:17 +00:00
- [RL Baselines Zoo](https://colab.research.google.com/github/Stable-Baselines-Team/rl-colab-notebooks/blob/sb3/rl-baselines-zoo.ipynb)
- [PyBullet](https://colab.research.google.com/github/Stable-Baselines-Team/rl-colab-notebooks/blob/sb3/pybullet.ipynb)
2020-05-07 06:55:42 +00:00
## Implemented Algorithms
| **Name** | **Recurrent** | `Box` | `Discrete` | `MultiDiscrete` | `MultiBinary` | **Multi Processing** |
| ------------------- | ------------------ | ------------------ | ------------------ | ------------------- | ------------------ | --------------------------------- |
| A2C | :x: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
| DDPG | :x: | :heavy_check_mark: | :x: | :x: | :x: | :x: |
| DQN | :x: | :x: | :heavy_check_mark: | :x: | :x: | :x: |
| HER | :x: | :heavy_check_mark: | :heavy_check_mark: | :x: | :x: | :x: |
| PPO | :x: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
2020-05-07 06:55:42 +00:00
| SAC | :x: | :heavy_check_mark: | :x: | :x: | :x: | :x: |
| TD3 | :x: | :heavy_check_mark: | :x: | :x: | :x: | :x: |
Actions `gym.spaces`:
* `Box`: A N-dimensional box that containes every point in the action space.
* `Discrete`: A list of possible actions, where each timestep only one of the actions can be used.
* `MultiDiscrete`: A list of possible actions, where each timestep only one action of each discrete set can be used.
* `MultiBinary`: A list of possible actions, where each timestep any of the actions can be used in any combination.
2020-01-22 16:23:42 +00:00
2020-05-07 06:55:42 +00:00
## Testing the installation
All unit tests in stable baselines3 can be run using `pytest` runner:
2020-01-22 16:23:42 +00:00
```
2020-05-07 06:55:42 +00:00
pip install pytest pytest-cov
make pytest
2020-01-22 16:23:42 +00:00
```
You can also do a static type check using `pytype`:
2020-05-07 06:55:42 +00:00
```
pip install pytype
make type
```
Codestyle check with `flake8`:
```
pip install flake8
make lint
```
2020-05-08 11:27:17 +00:00
## Projects Using Stable-Baselines3
2020-05-07 06:55:42 +00:00
2020-05-07 15:35:29 +00:00
We try to maintain a list of project using stable-baselines3 in the [documentation](https://stable-baselines3.readthedocs.io/en/master/misc/projects.html),
2020-05-08 11:27:17 +00:00
please tell us when if you want your project to appear on this page ;)
2020-01-22 16:23:42 +00:00
2020-01-20 15:19:35 +00:00
## Citing the Project
To cite this repository in publications:
```bibtex
2020-05-05 14:28:38 +00:00
@misc{stable-baselines3,
2020-02-03 14:57:37 +00:00
author = {Raffin, Antonin and Hill, Ashley and Ernestus, Maximilian and Gleave, Adam and Kanervisto, Anssi and Dormann, Noah},
2020-05-05 13:02:35 +00:00
title = {Stable Baselines3},
2020-01-20 15:19:35 +00:00
year = {2019},
publisher = {GitHub},
journal = {GitHub repository},
2020-05-05 14:28:38 +00:00
howpublished = {\url{https://github.com/DLR-RM/stable-baselines3}},
2020-01-20 15:19:35 +00:00
}
```
2020-05-07 06:55:42 +00:00
## Maintainers
Stable-Baselines3 is currently maintained by [Ashley Hill](https://github.com/hill-a) (aka @hill-a), [Antonin Raffin](https://araffin.github.io/) (aka [@araffin](https://github.com/araffin)), [Maximilian Ernestus](https://github.com/ernestum) (aka @ernestum), [Adam Gleave](https://github.com/adamgleave) (@AdamGleave) and [Anssi Kanervisto](https://github.com/Miffyli) (@Miffyli).
2020-05-07 06:55:42 +00:00
**Important Note: We do not do technical support, nor consulting** and don't answer personal questions per email.
Please post your question on the [RL Discord](https://discord.com/invite/xhfNqQv), [Reddit](https://www.reddit.com/r/reinforcementlearning/) or [Stack Overflow](https://stackoverflow.com/) in that case.
2020-05-07 06:55:42 +00:00
## How To Contribute
To any interested in making the baselines better, there is still some documentation that needs to be done.
If you want to contribute, please read [**CONTRIBUTING.md**](./CONTRIBUTING.md) guide first.
2020-05-07 06:55:42 +00:00
## Acknowledgments
The initial work to develop Stable Baselines3 was partially funded by the project *Reduced Complexity Models* from the *Helmholtz-Gemeinschaft Deutscher Forschungszentren*.
The original version, Stable Baselines, was created in the [robotics lab U2IS](http://u2is.ensta-paristech.fr/index.php?lang=en) ([INRIA Flowers](https://flowers.inria.fr/) team) at [ENSTA ParisTech](http://www.ensta-paristech.fr/en).
2020-05-07 06:55:42 +00:00
Logo credits: [L.M. Tenkes](https://www.instagram.com/lucillehue/)