Replies: 1 comment
-
Hi @yardenas , |
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
-
I have the following test file, which I use to test whether my domain randomization implementation works. The idea is that I condition (randomized) environments on the same action and initial state, and expect to get perturbed state when taking one step forward.
As seen, the environment is based on deepmind control suite cartpole. Now, for some reason, when I use the
mjx
backend, in line 64 (Cartpole
's constructor), I get the exact same next state (while I would expect different states, as the dynamics are perturbed), while if I usegeneralized
backend, the test passes.Any idea why this may happen? The barkour tutorial suggests that domain randomization with the
mjx
backend should work.Any help would be very much appreciated!
EDIT: tried now running a similar experiment with the
InvertedPendulum
environment -- seems like I get the same behavior. Happy to create a standalone running code for it as well.Beta Was this translation helpful? Give feedback.
All reactions