Fenil Gajera
Fenil Gajera

Reputation: 1

what does observation space mean in custom gym enviroment?

error - AssertionError: The obs returned by the step()method length is not same as the observation space length, obs length: 1875, space length: 2

init function :-

def __init__(self,pcl,fcl,plb,ts):
        ...
        self.observation_space = spaces.Tuple((spaces.Discrete(1875), spaces.Discrete(9)))

and the shape of observation returned after every step is (1,1875,9)

for context, I was making a stock environment and the 1875 rows are past candles' data.

what is this observation space ??

Upvotes: 0

Views: 24

Answers (0)

Related Questions