Skip to content

Commit 492e7d2

Browse files
author
jimkon
committedDec 5, 2017
add reference to stevenpjg's DDPG implementation
1 parent 37a0e17 commit 492e7d2

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed
 

‎.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
# build dirs
3+
/__pycache__
4+
5+
# .py files
6+
clipboard.py
7+
ou_noise.py
8+
9+
# results
10+
results

‎README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# Deep-Reinforcement-Learning-in-Large-Discrete-Action-Spaces
22
Implementation of the algorithm in Python 3, TensorFlow and OpenAI Gym
3+
4+
This paper introduces Wolpertinger training algorithm that extends the Deep Deterministic Policy Gradient training algorithm introduced in [this](https://arxiv.org/abs/1509.02971) paper. I extended stevenpjg's implementation of DDPG algorithm found [here](https://github.com/stevenpjg/ddpg-aigym) licensed under the MIT license.

0 commit comments

Comments
 (0)
Please sign in to comment.