asataura commited on
Commit
dd07314
·
1 Parent(s): 6256826

Updating DDQN.py

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