self.observation_shape=(1,1,4)# Dimensions of the game observation, must be 3D (channel, height, width). For a 1D array, please reshape it to (1, 1, length of array)
self.action_space=list(range(2))# Fixed list of all possible actions. You should only edit the length
self.observation_shape=(3,96,96)# Dimensions of the game observation, must be 3D (channel, height, width). For a 1D array, please reshape it to (1, 1, length of array)
self.action_space=list(range(3))# Fixed list of all possible actions. You should only edit the length
self.players=list(range(1))# List of players. You should only edit the length
self.stacked_observations=0# Number of previous observations and previous actions to add to the current observation
...
...
@@ -147,8 +147,10 @@ class Game(AbstractGame):
Returns:
The new observation, the reward and a boolean if the game has ended.