Spaces:
Sleeping
Sleeping
Updating DDQN.py
Browse files
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 = []
|