lagom is a light PyTorch infrastructure to quickly prototype reinforcement learning algorithms. Lagom is a 'magic' word in Swedish, "inte för mycket och inte för lite, enkelhet är bäst", meaning "not too much and not too little, simplicity is often the best". lagom is the philosophy on which this library was designed.
Contents of this document
lagom
balances between the flexibility and the userability when developing reinforcement learning (RL) algorithms. The library is built on top of PyTorch and provides modular tools to quickly prototype RL algorithms. However, we do not go overboard, because going too low level is rather time consuming and prone to potential bugs, while going too high level degrades the flexibility which makes it difficult to try out some crazy ideas.
We are continuously making lagom
more 'self-contained' to run experiments quickly. Now, it internally supports base classes for multiprocessing (master-worker framework) to parallelize (e.g. experiments and evolution strategies). It also supports hyperparameter search by defining configurations either as grid search or random search.
One of the main pipelines to use lagom
can be done as following:
- Define environment and RL agent
- User runner to collect data for agent
- Define algorithm to train agent
- Define experiment and configurations.
A graphical illustration is coming soon.
This repository requires following packages:
- Python >= 3.6
- Cython >= 0.28.4
- setuptools >= 39.0.1
- Numpy >= 1.14.5
- Scipy >= 1.1.0
- Matplotlib >= 2.2.2
- Scikit-image >= 0.14.0
- Imageio >= 2.3.0
- Pandas >= 0.23.3
- Seaborn >= 0.9.dev
- Jupyterlab >= 0.32.1
- gym >= 0.10.5
- cma >= 2.6.0
- pytest >= 3.6.3
- flake8 >= 3.5.0
- sphinx >= 1.7.6
- PyTorch >= 0.5.0a0
There are bash scripts in scripts/ directory to automatically set up the conda environment and dependencies.
git clone https://github.com/zuoxingdong/lagom.git
cd lagom
pip install -e .
Detailed tutorials is coming soon. For now, it is recommended to have a look in examples/ or the source code.
We shall continuously provide examples/ to use lagom.
We are using pytest for tests. Feel free to run via
pytest test -v
- Readthedocs Documentation
- Tutorials
- TRPO/PPO
- ACKTR
- DDPG
- ACER
- Q-Prop
- DQN: Rainbow
- ES: PEPG/NES
- Monte Carlo Dropout/Concrete Dropout
- VecEnv: similar to that of OpenAI baseline
- Support pip install
- Technical report
This repo is inspired by OpenAI rllab, OpenAI baselines, RLPyTorch, TensorForce, and Intel Coach
Please use this bibtex if you want to cite this repository in your publications:
@misc{lagom,
author = {Zuo, Xingdong},
title = {lagom: A light PyTorch infrastructure to quickly prototype reinforcement learning algorithms},
year = {2018},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/zuoxingdong/lagom}},
}