Please bear in mind that the SLM Lab is written in PyTorch. Many of these tutorials use other neural network libraries such as Tensorflow. Feel free to reference them but we ask that code is written using PyTorch.
- Deep Reinforcement Learning, Pieter Abbeel. video, slides
- Deep Reinforcement Learning, John Schulman.
- 60 minute blitz, Soumith Chintala.
- Let's make a DQN, Jaromír Janisch.
- Learning Pong from Pixels, Andrej Karpathy.
- Asynchronous Advantage Actor Critic, A3C, Arthur Juliani.
- Generalized Advantage Estimation, Tom Breloff.
- Deep RL Bootcamp
- CS294, UC Berkeley, Sergey Levine. Course page
- David Silver's RL course
- Reinforcement Learning: An Introduction, Sutton and Barto. Canoncial textbook on RL.
- Making sense of the bias-variance tradeoff in deep RL, Arthur Juliani.
- DQN
- Double DQN (DDQN)
- Dueling DQN
- Prioritized Experience Replay (PER)
- Combined Experience Replay (CER)
- Hindsight Experience Replay (HER)
- QT-Opt
- Asynchronous Advantage Actor Critic (A3C)
- Generalized Advantage Estimation (GAE)
- Proximal Policy Optimization (PPO)
- Self Imitation Learning (SIL)
If you write about using SLM Lab, feel free to let us know to include it below
- Fast Implementation of Self-Imitation Learning: a showcase of how an algorithm can be implemented quickly in the Lab.
- Deep Reinforcement Learning with SLM Lab: introduction to the features and demo run-through of v2.x.
- pip module for RL agents in SLM Lab: how you can import SLM Lab as a pip module in your application to use the algorithms and components.
- Multi-inheritance magic in SLM Lab: how the modular design of SLM Lab allows us to implement many things with little or no new code.