├── .gitignore ├── .gitmodules ├── README.md ├── _config.yml ├── assets ├── alien_policy_after_5M_frames.gif ├── breakout.png ├── breakout_policy_after_5M_frames.gif ├── frostbite_policy_after_5M_frames.gif ├── hero_policy_after_5M_frames.gif ├── mspacman_policy_after_5M_frames.gif ├── pong.png └── pong_policy_after_5M_frames.gif ├── commons └── ops.py ├── fast_dictionary.py ├── libs └── atari_wrappers.py ├── q_learning.py └── replay_buffer.py /.gitignore: -------------------------------------------------------------------------------- 1 | log/ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiwonjoon/NEC/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiwonjoon/NEC/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiwonjoon/NEC/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/alien_policy_after_5M_frames.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiwonjoon/NEC/HEAD/assets/alien_policy_after_5M_frames.gif -------------------------------------------------------------------------------- /assets/breakout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiwonjoon/NEC/HEAD/assets/breakout.png -------------------------------------------------------------------------------- /assets/breakout_policy_after_5M_frames.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiwonjoon/NEC/HEAD/assets/breakout_policy_after_5M_frames.gif -------------------------------------------------------------------------------- /assets/frostbite_policy_after_5M_frames.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiwonjoon/NEC/HEAD/assets/frostbite_policy_after_5M_frames.gif -------------------------------------------------------------------------------- /assets/hero_policy_after_5M_frames.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiwonjoon/NEC/HEAD/assets/hero_policy_after_5M_frames.gif -------------------------------------------------------------------------------- /assets/mspacman_policy_after_5M_frames.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiwonjoon/NEC/HEAD/assets/mspacman_policy_after_5M_frames.gif -------------------------------------------------------------------------------- /assets/pong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiwonjoon/NEC/HEAD/assets/pong.png -------------------------------------------------------------------------------- /assets/pong_policy_after_5M_frames.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiwonjoon/NEC/HEAD/assets/pong_policy_after_5M_frames.gif -------------------------------------------------------------------------------- /commons/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiwonjoon/NEC/HEAD/commons/ops.py -------------------------------------------------------------------------------- /fast_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiwonjoon/NEC/HEAD/fast_dictionary.py -------------------------------------------------------------------------------- /libs/atari_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiwonjoon/NEC/HEAD/libs/atari_wrappers.py -------------------------------------------------------------------------------- /q_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiwonjoon/NEC/HEAD/q_learning.py -------------------------------------------------------------------------------- /replay_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiwonjoon/NEC/HEAD/replay_buffer.py --------------------------------------------------------------------------------