Open ikamensh opened 1 year ago
Hello there,
You can get these properties if you use the gym wrapper:
from brax.envs.wrappers import gym
env = gym.VectorGymWrapper(vecenv)
print(env.observation_space)
Hi @ikamensh , while the observation_space is populated, they're set to inf by default
If you'd like to make a PR to populate it generically, you can use dof limits
https://github.com/google/brax/blob/3b72c952f7c990e8e9e355f736e77f10f408bc14/brax/base.py#L294
Hi,
I'm used to having observation_space in gym.Env / VectorEnv classes that tell me how to normalize observations, among other uses. Am I right to think this is missing in brax?
I'm doing
and I can't find any property along the lines of observation space in the
vecenv
object