Mario 강화학습을 위한 세팅

2017. 12. 10. 22:50

1. apt install fceux

에뮬레이터 설치

2. pip3 install gym

3. pip3 install opencv-python

4. pip3 install git+https://github.com/chris-chris/gym-super-mario


fceux 화면 안띄우고 학습하기

https://github.com/pathak22/noreward-rl/issues/10


여러번 실행하면 느려지는 현상은 multiprocessing관련 된 것으로, 매번 env를 메이크하고 close해주는 것으로 해결할 수 있다.

https://github.com/ppaquette/gym-super-mario/tree/master/ppaquette_gym_super_mario

Deep Learning/Reinforcement Learning