I build a custom Open AI Gym Environment that uses simple Tuple observation space.
self.observation_space = spaces.Tuple((spaces.Discrete(2,),spaces.Discrete(1)))
But when I try to use q-learning examples they use
observation_space.n
Is there a way to use q-learning with this kind of observation space?