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: 24 days ago
JSON representation
đ Paper: Continuous control with deep reinforcement learning đšī¸
- Host: GitHub
- URL: https://github.com/jihoonerd/continuous-control-with-deep-reinforcement-learning
- Owner: jihoonerd
- License: mit
- Created: 2021-02-01T03:27:23.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-30T23:56:05.000Z (about 1 year ago)
- Last Synced: 2024-11-15T08:08:01.327Z (11 months ago)
- Topics: atari, ddpg, lunarlander-v2, pytorch, reinforcement-learning
- Language: Python
- Homepage:
- Size: 1.42 MB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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|
|---|---|---|
||||## Score Graph for `LunarLanderContinuous-v2`
## Environments
* Pytorch 1.7
* Python 3.8Please refer `requirements.txt` for python packages for this repo.