Skip to content

Commit 77f2f78

Browse files
authored
Fix DDPG docs' description (#139)
1 parent e6b2c15 commit 77f2f78

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/rl-algorithms/ddpg.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
## Overview
55

6-
DDPG is a popular DRL algorithm for continuous control. It runs reasonably fast by leveraging vector (parallel) environments and naturally works well with different action spaces, therefore supporting a variety of games. It also has good sample efficiency compared to algorithms such as DQN.
6+
DDPG is a popular DRL algorithm for continuous control. It extends DQN to work with the continuous action space by introducing a deterministirc actor that directly outputs continuous actions. DDPG also combines techniques from DQN such as thhe replay buffer and target network.
77

88

99
Original paper:
@@ -13,6 +13,7 @@ Original paper:
1313
Reference resources:
1414

1515
* :material-github: [sfujim/TD3](https://github.com/sfujim/TD3)
16+
* [Deep Deterministic Policy Gradient | Spinning Up in Deep RL](https://spinningup.openai.com/en/latest/algorithms/ddpg.html)
1617

1718
## Implemented Variants
1819

0 commit comments

Comments
 (0)