Curt-Park/rainbow-is-all-you-need

N-step ReplayBuffer's store use the wrong act?

ty2000 opened this issue · 2 comments

In the N-step ReplayBuffer, the store() method stores act into the memory

self.acts_buf[self.ptr] = act

should't this be action instead? i.e.

self.acts_buf[self.ptr] = action

Thanks for pointing it out. I will fix it asap.

Fixed. Thanks for your opinion :)