Skip to content

Commit

Permalink
Fix DDPG docs' description (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
vwxyzjn authored Mar 21, 2022
1 parent e6b2c15 commit 77f2f78
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/rl-algorithms/ddpg.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

## Overview

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.
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.


Original paper:
Expand All @@ -13,6 +13,7 @@ Original paper:
Reference resources:

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

## Implemented Variants

Expand Down

1 comment on commit 77f2f78

@vercel
Copy link

@vercel vercel bot commented on 77f2f78 Mar 21, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please # to comment.