A Reinforcement Learning Library for Research and Education
Writing reinforcement learning algorithms is fun! But after the fun, we have lots of boring things to implement: run our agents in parallel, average and plot results, optimize hyperparameters, compare to baselines, create tricky environments etc etc!
rlberry
is a Python library that makes your life easier by doing all these things with a few lines of code, so
that you can spend most of your time developing agents.
rlberry
also provides implementations of several RL agents, benchmark environments and many other useful tools.
We provide you a number of tools to help you achieve reproducibility, statistically comparisons of RL agents, and nice visualization.
Install the latest (minimal) version for a stable release.
pip install -U rlberry
The documentation includes more installation instructions.
In our dev documentation, you will find quick starts to the library and a user guide with a few tutorials on using rlberry, and some examples. See also the stable documentation for the documentation corresponding to the last release.
See the changelog for a history of the changes made to rlberry.
rlberry-scool : It’s the repository used for teaching purposes. These are mainly basic agents and environments, in a version that makes it easier for students to learn.
rlberry-research : It’s the repository where our research team keeps some agents, environments, or tools compatible with rlberry. It’s a permanent “work in progress” repository, and some code may be not maintained anymore.
If you use rlberry
in scientific publications, we would appreciate citations using the following Bibtex entry:
@misc{rlberry,
author = {Domingues, Omar Darwiche and Flet-Berliac, Yannis and Leurent, Edouard and M{\'e}nard, Pierre and Shang, Xuedong and Valko, Michal},
doi = {10.5281/zenodo.5544540},
month = {10},
title = {{rlberry - A Reinforcement Learning Library for Research and Education}},
url = {https://github.com/rlberry-py/rlberry},
year = {2021}
}
This project was initiated and is actively maintained by INRIA SCOOL team. More information here.
Want to contribute to rlberry
? Please check our contribution guidelines. If you want to add any new agents or environments, do not hesitate
to open an issue!