Skip to content

Commit 3e07d26

Browse files
MorvanZhouMorvan Zhou
authored andcommitted
update
1 parent 123ead7 commit 3e07d26

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,10 @@ In these tutorials for reinforcement learning, it covers from the basic RL algor
4646
alt="Paypal"
4747
height="auto" ></a>
4848
</div>
49+
50+
<div>
51+
<a href="https://www.patreon.com/morvan">
52+
<img src="https://morvanzhou.github.io/static/img/support/patreon.jpg"
53+
alt="Patreon"
54+
height=120></a>
55+
</div>

contents/9_Deep_Deterministic_Policy_Gradient_DDPG/DDPG.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def sample(self, n):
224224
if RENDER:
225225
env.render()
226226

227-
# Added exploration noise
227+
# Add exploration noise
228228
a = actor.choose_action(s)
229229
a = np.clip(np.random.normal(a, var), -2, 2) # add randomness to action selection for exploration
230230
s_, r, done, info = env.step(a)

0 commit comments

Comments
 (0)