Closed
Description
🐛 Bug
Hi when I was trying to use HER with DDPG, I noticed that the action noise I feed into HER never got used by DDPG.
Please correct me if I am wrong, if you take a look at the code on 197 at HER.py
rollout = self.collect_rollouts(
self.env,
n_episodes=self.n_episodes_rollout,
n_steps=self.train_freq,
action_noise=self.action_noise,
callback=callback,
learning_starts=self.learning_starts,
log_interval=log_interval,
)
I have printed out self.action_noise, it is NONE. the action_noise got fed into self.model during the init part (line 103 as kwargs), but I think it never got assigned to it self as an attribute, maybe we shall do self.model.action_noise there? Let me know if I am mistaken.