mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-30 01:50:19 +00:00
adds example usage to spaces (#173)
This commit is contained in:
committed by
Greg Brockman
parent
a4c35f82c0
commit
f254dd197e
@@ -3,6 +3,9 @@ from gym import Space
|
||||
class Tuple(Space):
|
||||
"""
|
||||
A tuple (i.e., product) of simpler spaces
|
||||
|
||||
Example usage:
|
||||
self.observation_space = spaces.Tuple((spaces.Discrete(2), spaces.Discrete(3)))
|
||||
"""
|
||||
def __init__(self, spaces):
|
||||
self.spaces = spaces
|
||||
|
Reference in New Issue
Block a user