-
QuestionHello, I want to add dummy steps to the environment. For example, it would look like this: Dummy action: The gripper moves 1 unit along the x-axis for 10 steps due to the dummy action, then closes to grab the object. The important point here is that the rollout should not be contaminated. That is, when the Is there already completed work for this? I'm asking because it's challenging to code from scratch due to early termination and multi-environment. Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, Unfortunately, asynchronous updates of environment instances are not possible within Isaac Sim / Isaac Gym. Collecting large-scale data collection in this manner isn't possible directly. As a workaround, what you could do is wait for all the environments to reach the objects and perform the dummy actions simultaneously for all of them. Alternatively, you could add a boolean flag to your |
Beta Was this translation helpful? Give feedback.
Hi,
Unfortunately, asynchronous updates of environment instances are not possible within Isaac Sim / Isaac Gym. Collecting large-scale data collection in this manner isn't possible directly.
As a workaround, what you could do is wait for all the environments to reach the objects and perform the dummy actions simultaneously for all of them. Alternatively, you could add a boolean flag to your
extras
dictionary that provides information on whether an agent action or dummy action is being executed for that environment instance (kind of like masking). Then on the data record/agent side, you can read theextras
dictionary and decide to add the transitions or wait for the dummy action to complete.