How to train the agents by using HER (hindsight experience replay,HER)? #150
Unanswered
beiketaoerge
asked this question in
Q&A
Replies: 1 comment
-
Sorry for late response. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In stable-baseline3,we can use the code
model = DDPG("MultiInputPolicy", env,replay_buffer_class=HerReplayBuffer, verbose=1, tensorboard_log=logs_dir,batch_size=256,device="cuda")
to achieve HER.If we use the codememories = RandomMemory(memory_size=15000, device=device,
replacement=False)in skrl, can we achieve HER? Thank you for your answer.
Beta Was this translation helpful? Give feedback.
All reactions