Replies: 1 comment
-
action range is [-1, 1] is correct. env.sys.actuator.ctrl_range (mujoco engine) is different according to the actuator. in mujoco_playground examples, actuators are set to position. so, ctrl_range is position range. you can check it in xmls. you have to check that action range of environment (MjxEnv) and control range of mujoco engine are different. |
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.
-
Hello,
I'm writing a wrapper for
MjxEnv
to translate it to another Env API. In brax, we haveenv.sys.actuator.ctrl_range
to get the action range. How to get the action space inMjxEnv
? Or, according to #19, should we just use [-1,1]?Beta Was this translation helpful? Give feedback.
All reactions