You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The observation space is 8 float numbers but we know from the documentation that the last 2 numbers are actually boolean so they can be only 0 or 1. In a line print("Sample observation", env.observation_space.sample()) # Get a random observation
we have 8 random floats including the last 2 of them and I found it a bit misleading since we can never get this observation from the environment. Maybe some additional clarification is needed here.
The text was updated successfully, but these errors were encountered:
The observation space is 8 float numbers but we know from the documentation that the last 2 numbers are actually boolean so they can be only 0 or 1. In a line
print("Sample observation", env.observation_space.sample()) # Get a random observation
we have 8 random floats including the last 2 of them and I found it a bit misleading since we can never get this observation from the environment. Maybe some additional clarification is needed here.
The text was updated successfully, but these errors were encountered: