-
Beta Was this translation helpful? Give feedback.
Answered by
Mayankm96
Apr 26, 2024
Replies: 1 comment 1 reply
-
Do you have asynchronous termination, i.e., different environments that are expected to reset at different time steps? If so, then this isn't possible. In the other case (where all environments execute to their full episode length), you can add multiple steps to let them all "rest". Alternately, what I do is: spawn a large number of times. Store all the poses in a database and sample from that database. It works fine for most of my applications. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
kemjensak
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do you have asynchronous termination, i.e., different environments that are expected to reset at different time steps? If so, then this isn't possible. In the other case (where all environments execute to their full episode length), you can add multiple steps to let them all "rest".
Alternately, what I do is: spawn a large number of times. Store all the poses in a database and sample from that database. It works fine for most of my applications.