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

https://github.com/threewisemonkeys-as/myrl

Implementations of some standard reinforcement learning algorithms
https://github.com/threewisemonkeys-as/myrl

Last synced: 2 months ago
JSON representation

Implementations of some standard reinforcement learning algorithms

Awesome Lists containing this project

README

        

# myrl
Implementations of some standard reinforcement learning algorithms

- Written in pytorch
- All implentations are encapsulated into a single file
- Algorithms implemted as classes which take OpenAI gym env as inputs
- All classes have uniform interface with `train` and `eval` methods
- All references are given in the code

Algorithms -
- [X] Vanilla Policy Gradient (VPG)
- [X] Deep Q Network (DQN)
- [X] Deep Deterministic Policy Gradient (DDPG)
- [X] Twin Delayed DDPG (TD3)
- [X] Soft Actor Critic
- [X] Proximal Policy Optimization
- [ ] Trust Region Policy Optimization

Features to add -
- [ ] Better hyperparamter management
- [ ] Adding tensorboard logging
- [ ] Add documentation for each algorithm
- [ ] Add results for each algorithm