LGAISep 3, 2019

rlpyt: A Research Code Base for Deep Reinforcement Learning in PyTorch

arXiv:1909.01500v2101 citationsHas Code
Originality Synthesis-oriented
AI Analysis

This provides a practical resource for researchers in deep reinforcement learning, though it is incremental as it consolidates existing methods into a single repository.

The authors tackled the lack of a unified code base for deep reinforcement learning by introducing rlpyt, which implements three major algorithm families (deep Q-learning, policy gradients, and Q-value policy gradients) on shared infrastructure, resulting in a high-throughput tool for research.

Since the recent advent of deep reinforcement learning for game play and simulated robotic control, a multitude of new algorithms have flourished. Most are model-free algorithms which can be categorized into three families: deep Q-learning, policy gradients, and Q-value policy gradients. These have developed along separate lines of research, such that few, if any, code bases incorporate all three kinds. Yet these algorithms share a great depth of common deep reinforcement learning machinery. We are pleased to share rlpyt, which implements all three algorithm families on top of a shared, optimized infrastructure, in a single repository. It contains modular implementations of many common deep RL algorithms in Python using PyTorch, a leading deep learning library. rlpyt is designed as a high-throughput code base for small- to medium-scale research in deep RL. This white paper summarizes its features, algorithms implemented, and relation to prior work, and concludes with detailed implementation and usage notes. rlpyt is available at https://github.com/astooke/rlpyt.

Code Implementations9 repos

Data from Papers with Code (CC-BY-SA-4.0)

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes