Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 3.11 KB

README.md

File metadata and controls

29 lines (23 loc) · 3.11 KB

Reinforcement Learning

Repo contains notebooks with common reinforcement learning algorithms and solved gym environments.

Value Based Methods

Algorithms Paper & Code
Q-Learning & SARSA
DQN
DoubleDQN
DuelingDQN
DuelingDoubleDQN + PER

Policy Based Methods

Algorithms Paper & Code
PG(Reinforce)
PPO
[needs improvement]

Actor Critic Methods

Algorithms Paper & Code
AC
A2C
DDPG
TD3