Policy-Gradient-Methods icon indicating copy to clipboard operation
Policy-Gradient-Methods copied to clipboard

Is your DDPG implement missing adding noise?

Open liuxiaotong15 opened this issue 4 years ago • 1 comments

I find you write: self.noise = OUNoise.... but you didn't add the noise to the action?

liuxiaotong15 avatar Apr 09 '20 07:04 liuxiaotong15

so I add the following line to line48 in ddpg/ddpg.py: action = self.noise.get_action(action) # add by xiaotong 2020 0409

If I made something wrong, please tell me, thanks.

liuxiaotong15 avatar Apr 09 '20 07:04 liuxiaotong15