asataura commited on
Commit
7a38fa2
·
1 Parent(s): 6c2cfa4

Updating DDQN

Browse files
Files changed (1) hide show
  1. DDQN.py +1 -1
DDQN.py CHANGED
@@ -63,7 +63,7 @@ class DoubleDeepQNetwork:
63
  def experience_replay(self, batch_size):
64
  # Execute the experience replay
65
  minibatch = random.sample(self.memory, batch_size) # Randomly sample from memory
66
-
67
  # Convert to numpy for speed by vectorization
68
  x = []
69
  y = []
 
63
  def experience_replay(self, batch_size):
64
  # Execute the experience replay
65
  minibatch = random.sample(self.memory, batch_size) # Randomly sample from memory
66
+ print(minibatch)
67
  # Convert to numpy for speed by vectorization
68
  x = []
69
  y = []