DQN-tensorflow icon indicating copy to clipboard operation
DQN-tensorflow copied to clipboard

Possible bug of using numpy randint

Open bigvzhang opened this issue 8 years ago • 0 comments

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 ?

bigvzhang avatar Oct 22 '17 17:10 bigvzhang