myosuite
myosuite copied to clipboard
Warning messages in the MyoChallenge24 tutorial
Python version: 3.11.7 MyoSuite version: 2.5 Gymnasium version: 0.29.1 Gym not installed OS: Windows 10
When I run the challenge tutorial I get the following warning messages:
- WARN: The obs returned by the
reset()
method was expecting numpy array dtype to be float32, actual type: float64 - WARN: The obs returned by the
reset()
method is not within the observation space. - WARN: env.mj_render to get variables from other wrappers is deprecated and will be removed in v1.0, to get this variable you can do
env.unwrapped.mj_render
for environment variables orenv.get_wrapper_attr('mj_render')
that will search the reminding wrappers. - WARN: env.get_obs to get variables from other wrappers is deprecated and will be removed in v1.0, to get this variable
you can do
env.unwrapped.get_obs
for environment variables orenv.get_wrapper_attr('get_obs')
that will search the reminding wrappers.