Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jihoonerd/continuous-control-with-deep-reinforcement-learning

📖 Paper: Continuous control with deep reinforcement learning 🕹ī¸
https://github.com/jihoonerd/continuous-control-with-deep-reinforcement-learning

atari ddpg lunarlander-v2 pytorch reinforcement-learning

Last synced: about 2 months ago
JSON representation

📖 Paper: Continuous control with deep reinforcement learning 🕹ī¸

Awesome Lists containing this project

README

        

# Continuous Control with Deep Reinforcement Learning (DDPG)

This implements a reinforcement learning algorithm [DDPG](https://arxiv.org/abs/1509.02971). Using the methodology employed for DQN, DDPG can resolve continous action space environments.

Following shows that DDPG can solve one of the continuous action space environment in `OpenAI Gym`.

|Episode: 0|Episode: 500|Episode: 900|
|---|---|---|
|![eps-0](assets/eps-0.gif)|![eps-500](assets/eps-500.gif)|![eps-900](assets/eps-900.gif)|

## Score Graph for `LunarLanderContinuous-v2`

## Environments

* Pytorch 1.7
* Python 3.8

Please refer `requirements.txt` for python packages for this repo.