-
Notifications
You must be signed in to change notification settings - Fork 156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hindsight Experience Replay Buffer #84
base: master
Are you sure you want to change the base?
Conversation
/test |
Successfully created a job for commit 71809a5: |
/test |
Successfully created a job for commit 9721d1a: |
/test |
Successfully created a job for commit 8643e0d: |
Co-authored-by: Justin DuJardin <justindujardin@users.noreply.github.com>
Successfully created a job for commit 573c7a2: |
/test |
Successfully created a job for commit ed4ae2e: |
Her fetch
/test |
Successfully created a job for commit ef230a4: |
/test |
Successfully created a job for commit 35f085c: |
success = ( | ||
self.observation["desired_goal"] == self.observation["achieved_goal"] | ||
).all() | ||
return (self.steps >= self.n) or success, success |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think I should use the wrapper ContinuingTimeLimit
actually. Exceeding the number of timesteps should not be a terminal signal.
Depends on #80.
Resolves #6.
Results: