isaac-sim / OmniIsaacGymEnvs

Reinforcement Learning Environments for Omniverse Isaac Gym
Other
762 stars 203 forks source link

Is there anyway to know the each dimension meaning of observation and action? #155

Open zoeyuchao opened 3 months ago

zoeyuchao commented 3 months ago

Is there a way or documentation to explain the physical meaning of each dimension in obs and action?

larsrpe commented 2 months ago

All of the data in the rl-pipeline is lifted by a "batch-dim" i.e the number of parallel environments.

So say for each environment you define 12 actions, e.g joint-positions on a quadruped, the action tensor would be of size (num_envs,12). Same goes for literally everything else in the pipeline!

Hope this helps!