I was trying to define tuple action space in my customized env as ,
parameters_max = np.array([1, +1])
shape = np.array([0.1, 0.1])
self.action_space = spaces.Tuple((spaces.Discrete(3),spaces.Box(parameters_min, parameters_max, shape)))```
where I am getting error as **low shape doesn’t match with provided shape.**
Could you please let me know how to mitigate this error ?