eleurent / rl-agents

Implementations of Reinforcement Learning and Planning algorithms
MIT License
553 stars 149 forks source link

Prioritized Experience Replay #70

Open skynox03 opened 2 years ago

skynox03 commented 2 years ago

Hi Edouard,

I wanted to know if you have already tested Prioritized experience replay for the memory?

I noticed that there is only standard replay memory in this project. So, i have been trying to implement PER but have been finding it a little tricky. So I wanted to know if you have already implemented it.

eleurent commented 2 years ago

Hi! It is indeed a bit tricky. I have a recommendation: you can start with the implementation from openai/baselines. This is what I did for another project, and it worked fine.

skynox03 commented 2 years ago

Okayy, thanks for the tip. I will try