├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── ai_challenge ├── README.md └── pig_chase │ ├── README.md │ ├── agent.py │ ├── common.py │ ├── environment.py │ ├── evaluation.py │ ├── pig-chase-overview.png │ ├── pig_chase.xml │ ├── pig_chase_baseline.py │ ├── pig_chase_dqn.py │ ├── pig_chase_dqn_top_down.py │ ├── pig_chase_eval_sample.py │ └── pig_chase_human_vs_agent.py ├── docker ├── README.md ├── malmo │ ├── Dockerfile │ ├── options.txt │ └── run.sh ├── malmopy-ai-challenge │ └── docker-compose.yml ├── malmopy-chainer-cpu │ └── Dockerfile ├── malmopy-chainer-gpu │ └── Dockerfile ├── malmopy-cntk-cpu-py27 │ └── Dockerfile └── malmopy-cntk-gpu-py27 │ └── Dockerfile ├── malmopy ├── README.md ├── __init__.py ├── agent │ ├── __init__.py │ ├── agent.py │ ├── astar.py │ ├── explorer.py │ ├── gui.py │ └── qlearner.py ├── environment │ ├── __init__.py │ ├── environment.py │ ├── gym │ │ ├── __init__.py │ │ └── gym.py │ └── malmo │ │ ├── __init__.py │ │ └── malmo.py ├── model │ ├── __init__.py │ ├── chainer │ │ ├── __init__.py │ │ └── qlearning.py │ ├── cntk │ │ ├── __init__.py │ │ ├── base.py │ │ └── qlearning.py │ └── model.py ├── util │ ├── __init__.py │ ├── images.py │ └── util.py ├── version.py └── visualization │ ├── __init__.py │ ├── tensorboard │ ├── __init__.py │ ├── cntk │ │ ├── __init__.py │ │ └── cntk.py │ └── tensorboard.py │ └── visualizer.py ├── samples └── atari │ └── gym_atari_dqn.py └── setup.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ai_challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/ai_challenge/README.md -------------------------------------------------------------------------------- /ai_challenge/pig_chase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/ai_challenge/pig_chase/README.md -------------------------------------------------------------------------------- /ai_challenge/pig_chase/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/ai_challenge/pig_chase/agent.py -------------------------------------------------------------------------------- /ai_challenge/pig_chase/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/ai_challenge/pig_chase/common.py -------------------------------------------------------------------------------- /ai_challenge/pig_chase/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/ai_challenge/pig_chase/environment.py -------------------------------------------------------------------------------- /ai_challenge/pig_chase/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/ai_challenge/pig_chase/evaluation.py -------------------------------------------------------------------------------- /ai_challenge/pig_chase/pig-chase-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/ai_challenge/pig_chase/pig-chase-overview.png -------------------------------------------------------------------------------- /ai_challenge/pig_chase/pig_chase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/ai_challenge/pig_chase/pig_chase.xml -------------------------------------------------------------------------------- /ai_challenge/pig_chase/pig_chase_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/ai_challenge/pig_chase/pig_chase_baseline.py -------------------------------------------------------------------------------- /ai_challenge/pig_chase/pig_chase_dqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/ai_challenge/pig_chase/pig_chase_dqn.py -------------------------------------------------------------------------------- /ai_challenge/pig_chase/pig_chase_dqn_top_down.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/ai_challenge/pig_chase/pig_chase_dqn_top_down.py -------------------------------------------------------------------------------- /ai_challenge/pig_chase/pig_chase_eval_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/ai_challenge/pig_chase/pig_chase_eval_sample.py -------------------------------------------------------------------------------- /ai_challenge/pig_chase/pig_chase_human_vs_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/ai_challenge/pig_chase/pig_chase_human_vs_agent.py -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/malmo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/docker/malmo/Dockerfile -------------------------------------------------------------------------------- /docker/malmo/options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/docker/malmo/options.txt -------------------------------------------------------------------------------- /docker/malmo/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | xvfb-run -a -e /dev/stdout -s '-screen 0 1400x900x24' $* -------------------------------------------------------------------------------- /docker/malmopy-ai-challenge/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/docker/malmopy-ai-challenge/docker-compose.yml -------------------------------------------------------------------------------- /docker/malmopy-chainer-cpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/docker/malmopy-chainer-cpu/Dockerfile -------------------------------------------------------------------------------- /docker/malmopy-chainer-gpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/docker/malmopy-chainer-gpu/Dockerfile -------------------------------------------------------------------------------- /docker/malmopy-cntk-cpu-py27/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/docker/malmopy-cntk-cpu-py27/Dockerfile -------------------------------------------------------------------------------- /docker/malmopy-cntk-gpu-py27/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/docker/malmopy-cntk-gpu-py27/Dockerfile -------------------------------------------------------------------------------- /malmopy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/README.md -------------------------------------------------------------------------------- /malmopy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/__init__.py -------------------------------------------------------------------------------- /malmopy/agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/agent/__init__.py -------------------------------------------------------------------------------- /malmopy/agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/agent/agent.py -------------------------------------------------------------------------------- /malmopy/agent/astar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/agent/astar.py -------------------------------------------------------------------------------- /malmopy/agent/explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/agent/explorer.py -------------------------------------------------------------------------------- /malmopy/agent/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/agent/gui.py -------------------------------------------------------------------------------- /malmopy/agent/qlearner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/agent/qlearner.py -------------------------------------------------------------------------------- /malmopy/environment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/environment/__init__.py -------------------------------------------------------------------------------- /malmopy/environment/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/environment/environment.py -------------------------------------------------------------------------------- /malmopy/environment/gym/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/environment/gym/__init__.py -------------------------------------------------------------------------------- /malmopy/environment/gym/gym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/environment/gym/gym.py -------------------------------------------------------------------------------- /malmopy/environment/malmo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/environment/malmo/__init__.py -------------------------------------------------------------------------------- /malmopy/environment/malmo/malmo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/environment/malmo/malmo.py -------------------------------------------------------------------------------- /malmopy/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/model/__init__.py -------------------------------------------------------------------------------- /malmopy/model/chainer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/model/chainer/__init__.py -------------------------------------------------------------------------------- /malmopy/model/chainer/qlearning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/model/chainer/qlearning.py -------------------------------------------------------------------------------- /malmopy/model/cntk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/model/cntk/__init__.py -------------------------------------------------------------------------------- /malmopy/model/cntk/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/model/cntk/base.py -------------------------------------------------------------------------------- /malmopy/model/cntk/qlearning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/model/cntk/qlearning.py -------------------------------------------------------------------------------- /malmopy/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/model/model.py -------------------------------------------------------------------------------- /malmopy/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/util/__init__.py -------------------------------------------------------------------------------- /malmopy/util/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/util/images.py -------------------------------------------------------------------------------- /malmopy/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/util/util.py -------------------------------------------------------------------------------- /malmopy/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/version.py -------------------------------------------------------------------------------- /malmopy/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/visualization/__init__.py -------------------------------------------------------------------------------- /malmopy/visualization/tensorboard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/visualization/tensorboard/__init__.py -------------------------------------------------------------------------------- /malmopy/visualization/tensorboard/cntk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/visualization/tensorboard/cntk/__init__.py -------------------------------------------------------------------------------- /malmopy/visualization/tensorboard/cntk/cntk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/visualization/tensorboard/cntk/cntk.py -------------------------------------------------------------------------------- /malmopy/visualization/tensorboard/tensorboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/visualization/tensorboard/tensorboard.py -------------------------------------------------------------------------------- /malmopy/visualization/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/malmopy/visualization/visualizer.py -------------------------------------------------------------------------------- /samples/atari/gym_atari_dqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/samples/atari/gym_atari_dqn.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/malmo-challenge/HEAD/setup.py --------------------------------------------------------------------------------