N-step ReplayBuffer's store use the wrong act?
ty2000 opened this issue · 2 comments
ty2000 commented
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
Curt-Park commented
Thanks for pointing it out. I will fix it asap.
Curt-Park commented
Fixed. Thanks for your opinion :)