## Prioritized Experience ReplayReproducing paper [Prioritized Experience Replay](https://arxiv.org/abs/1511.05952).Prioritized experience replay (PER) develops a framework for prioritizing experience, so as to replay important transitions more frequently. There are two variants of prioritizing the transitions, rank-based and proportional-based. Our implementation is the proportional variant, which has a better performance, as reported in the original paper.## Reproduced ResultsResults have been reproduced with [Double DQN](https://arxiv.org/abs/1509.06461v3) on following three environments:<palign="center"><imgsrc="result.png"/></p>## How to use### Dependencies:+[paddlepaddle>=1.6.1](https://github.com/PaddlePaddle/Paddle)+[parl](https://github.com/PaddlePaddle/PARL)+ gym[atari]==0.17.2+ atari-py==0.2.6+ tqdm+[ale_python_interface](https://github.com/mgbellemare/Arcade-Learning-Environment)### Start Training:Train on BattleZone game:```bashpython train.py --rom ./rom_files/battle_zone.bin```> To train on more games, you can install more rom files from [here](https://github.com/openai/atari-py/tree/master/atari_py/atari_roms).