updating comment

This commit is contained in:
Angel Valentin 2025-08-06 20:55:15 -04:00
parent e0d20b386b
commit 08d0fb21c9
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class BalatroEnv(gym.Env):
self.MAX_ACTIONS = 3
self.MAX_CARDS = 8 # Max cards in hand
action_selection = np.array([self.MAX_ACTIONS])
card_indices = np.array([2] * self.MAX_CARDS) # 8 cards, each can be selected (1) or not (0) #TODO can we or have we already masked card selection?
card_indices = np.array([2] * self.MAX_CARDS) # 8 cards, each can be selected (1) or not (0)
self.action_space = spaces.MultiDiscrete(np.concatenate([
action_selection,
card_indices