Skip to content

[Bug] action_noise never got used in HER #331

Closed
@ShangqunYu

Description

@ShangqunYu

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions