You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Code of line 62 in replay_memory.py:
index = random.randint(self.history_length, self.count - 1)
should change to
index = random.randint(self.history_length, self.count)
Correct ?
The text was updated successfully, but these errors were encountered:
Code of line 62 in replay_memory.py:
index = random.randint(self.history_length, self.count - 1)
should change to
index = random.randint(self.history_length, self.count)
Correct ?
The text was updated successfully, but these errors were encountered: