cpnota / autonomous-learning-library
- среда, 5 февраля 2020 г. в 00:19:59
Python
A PyTorch library for building deep reinforcement learning agents.
The autonomous-learning-library is an object-oriented deep reinforcement learning (DRL) library for PyTorch.
The goal of the library is to provide the necessary components for quickly building and evaluating novel reinforcement learning agents,
as well as providing high-quality reference implementations of modern DRL algorithms.
The full documentation can be found at the following URL: https://autonomous-learning-library.readthedocs.io.
The primary goal of the autonomous-learning-library is to facilitate the rapid development of new reinforcement learning agents by providing common tools for building and evaluation agents, such as:
Approximation API that integrates features such as target networks, gradient clipping, learning rate schedules, model checkpointing, multi-headed networks, loss scaling, logging, and more.torch-based Environment interface that simplies agent implementations by cutting out the numpy middleman.tensorboard integration and utilities for generating common plots.See the documentation guide for a full description of the functionality provided by the autonomous-learning-library.
Additionally, we provide an example project which demonstrates the best practices for building new agents.
The autonomous-learning-library separates reinforcement learning agents into two modules: all.agents, which provides flexible, high-level implementations of many common algorithms which can be adapted to new problems and environments, and all.presets which provides specific instansiations of these agents tuned for particular sets of environments, including Atari games, classic control tasks, and PyBullet robotics simulations. Some benchmark results showing results on-par with published results can be found below:
As of today, all contains implementations of the following deep RL algorithms:
It also contains implementations of the following "vanilla" agents, which provide useful baselines and perform better than you may expect:
First, you will need a new version of PyTorch (>1.3), as well as Tensorboard.
Then, you can install the autonomous-learning-library through PyPi:
pip install autonomous-learning-library
Alternately, you can install directly from this repository:
git clone https://github.com/cpnota/autonomous-learning-library.git
cd autonomous-learning-library
pip install -e .
You can also install the prerequisites using:
pip install autonomous-learning-library[pytorch]
If you just want to test out some cool agents, the scripts directory contains the basic code for doing so.
python scripts/atari.py Breakout a2c
You can watch the training progress using:
tensorboard --logdir runs
and opening your browser to http://localhost:6006. Once the model is trained to your satisfaction, you can watch the trained model play using:
python scripts/watch_atari.py Breakout "runs/_a2c [id]"
where id is the ID of your particular run. You should should be able to find it using tab completion or by looking in the runs directory.
The autonomous-learning-library also contains presets and scripts for classic control and PyBullet environments.
This library was built in the Autonomous Learning Laboratory (ALL) at the University of Massachusetts, Amherst. It was written and is currently maintained by Chris Nota (@cpnota). The views expressed or implied in this repository do not necessarily reflect the views of the ALL.