-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 11 replies
-
It's a good point. The original information for this came from the mechanism of Safety-Gym for observation space, while it sets all ranges to [-inf, inf]. We thought it is not appropriate and then fixed it in our implementation. Thanks for your reminder. We will correct the documentation. After we correct the information, the reason why the observation information from the code is different from that in the documentation is that each environment consists of three main elements: print(env.obs_space_dict)
# Dict('accelerometer': Box(-inf, inf, (3,), float64),
# 'velocimeter': Box(-inf, inf, (3,), float64),
# 'gyro': Box(-inf, inf, (3,), float64),
# 'magnetometer': Box(-inf, inf, (3,), float64),
# 'circle_lidar': Box(0.0, 1.0, (16,), float64)) |
Beta Was this translation helpful? Give feedback.
It's a good point. The original information for this came from the mechanism of Safety-Gym for observation space, while it sets all ranges to [-inf, inf]. We thought it is not appropriate and then fixed it in our implementation. Thanks for your reminder. We will correct the documentation.
Regarding your question, the information from the code is correct.
After we correct the information, the reason why the observation information from the code is different from that in the documentation is that each environment consists of three main elements:
task
,agent
, andobjects
. In the documentation, we present theobservation space
as thespecific observation space
, which means that the entire obs…