While trying to use a created environment, I get the following error:
AssertionError: action space does not inherit from gym.spaces.Space, actual type: <class 'gymnasium.spaces.discrete.Discrete'>
Does anyone know how to resolve this?
While trying to use a created environment, I get the following error:
AssertionError: action space does not inherit from gym.spaces.Space, actual type: <class 'gymnasium.spaces.discrete.Discrete'>
Does anyone know how to resolve this?
I was able to resolve the issue, it was because of inconsistency between using gym and gymnasium. Uniformly using gymnasium seems to resolve all issues.