An open API service indexing awesome lists of open source software.

https://github.com/siddk/rl-kitchen-sink

PyTorch Implementations of Standard Deep RL Algorithms (including REINFORCE, A2C, PPO)
https://github.com/siddk/rl-kitchen-sink

a2c ppo pytorch pytorch-rl reinforce reinforcement-learning reinforcement-learning-algorithms

Last synced: 3 months ago
JSON representation

PyTorch Implementations of Standard Deep RL Algorithms (including REINFORCE, A2C, PPO)

Awesome Lists containing this project

README

        

# Reinforcement Learning Kitchen Sink
PyTorch Implementations of Standard Deep RL Algorithms (including REINFORCE, A2C, PPO). Each of the below algorithms
are implemented for both OpenAI Gym Classic Control Tasks (e.g. Cartpole, MountainCar), as well as the Atari suite.

This repository exists mostly as a means to illustrate basic RL algorithms via extremely readable and well-documented
PyTorch implementations. This repository also stores hyperparameters and learning curves (with confidence intervals!)
for each task.

This code is inspired in equal parts from the [OpenAI Baselines](https://github.com/openai/baselines) and Ilya
Kostrikov's [PyTorch-RL Repository](https://github.com/ikostrikov/pytorch-a2c-ppo-acktr).

### REINFORCE

### Advantage Actor-Critic (A2C)

### Proximal Policy Optimization