Ved Mathai
Results
2
issues of
Ved Mathai
I have been using this library for six months now and must say it is really useful. Good job. However, I noticed you had included the training file in v1...
I may be wrong but doesn't `mini_batch.append(self.memory.popleft())` do better job than `mini_batch.append(self.memory[i])` in ``` def expReplay(self, batch_size): mini_batch = [] l = len(self.memory) for i in xrange(l - batch_size +...