├── .gitignore ├── README.md ├── atari.py ├── buff.py ├── convnet.py ├── dqn.py ├── environment.py ├── memory.py └── train.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | model/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Game-AI/HEAD/README.md -------------------------------------------------------------------------------- /atari.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Game-AI/HEAD/atari.py -------------------------------------------------------------------------------- /buff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Game-AI/HEAD/buff.py -------------------------------------------------------------------------------- /convnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Game-AI/HEAD/convnet.py -------------------------------------------------------------------------------- /dqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Game-AI/HEAD/dqn.py -------------------------------------------------------------------------------- /environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Game-AI/HEAD/environment.py -------------------------------------------------------------------------------- /memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Game-AI/HEAD/memory.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Game-AI/HEAD/train.py --------------------------------------------------------------------------------