├── README.md ├── README_zh.md ├── common ├── __init__.py ├── atari_wrapper.py └── schedule.py ├── deepq ├── __init__.py ├── learn.py ├── model.py └── replay_buffer.py ├── img ├── mario-dqn-16hr.gif └── pong-dqn-8hr.gif ├── train_mario.py └── train_pong.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/dqn-mario/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/dqn-mario/HEAD/README_zh.md -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/atari_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/dqn-mario/HEAD/common/atari_wrapper.py -------------------------------------------------------------------------------- /common/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/dqn-mario/HEAD/common/schedule.py -------------------------------------------------------------------------------- /deepq/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deepq/learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/dqn-mario/HEAD/deepq/learn.py -------------------------------------------------------------------------------- /deepq/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/dqn-mario/HEAD/deepq/model.py -------------------------------------------------------------------------------- /deepq/replay_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/dqn-mario/HEAD/deepq/replay_buffer.py -------------------------------------------------------------------------------- /img/mario-dqn-16hr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/dqn-mario/HEAD/img/mario-dqn-16hr.gif -------------------------------------------------------------------------------- /img/pong-dqn-8hr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/dqn-mario/HEAD/img/pong-dqn-8hr.gif -------------------------------------------------------------------------------- /train_mario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/dqn-mario/HEAD/train_mario.py -------------------------------------------------------------------------------- /train_pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nailo2c/dqn-mario/HEAD/train_pong.py --------------------------------------------------------------------------------