├── .gitignore ├── LICENSE ├── README.md ├── aicrowd.json ├── aicrowd_helper.py ├── apt.txt ├── minerl_agent ├── __init__.py ├── agent │ ├── __init__.py │ ├── agent.py │ └── resnet_lstm_agent.py ├── behaviour_cloning │ ├── __init__.py │ ├── behaviour_cloning.py │ ├── dataset.py │ ├── learner.py │ └── tfrecrods.py ├── environment │ ├── __init__.py │ ├── actions.py │ └── observations.py └── impala │ ├── __init__.py │ ├── batcher.cc │ ├── buffer.py │ ├── dynamic_batching.py │ ├── environments.py │ ├── impala.py │ ├── learner.py │ ├── py_process.py │ └── vtrace.py ├── requirements.txt ├── run.py ├── test.py ├── train.py └── utility ├── docker_build.sh ├── docker_evaluation_locally.sh ├── docker_run.sh ├── docker_train_locally.sh ├── environ.sh ├── evaluation_locally.sh ├── parser.py ├── train_locally.sh ├── utils.py └── verify_or_download_data.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/README.md -------------------------------------------------------------------------------- /aicrowd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/aicrowd.json -------------------------------------------------------------------------------- /aicrowd_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/aicrowd_helper.py -------------------------------------------------------------------------------- /apt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/apt.txt -------------------------------------------------------------------------------- /minerl_agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minerl_agent/agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minerl_agent/agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/minerl_agent/agent/agent.py -------------------------------------------------------------------------------- /minerl_agent/agent/resnet_lstm_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/minerl_agent/agent/resnet_lstm_agent.py -------------------------------------------------------------------------------- /minerl_agent/behaviour_cloning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minerl_agent/behaviour_cloning/behaviour_cloning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/minerl_agent/behaviour_cloning/behaviour_cloning.py -------------------------------------------------------------------------------- /minerl_agent/behaviour_cloning/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/minerl_agent/behaviour_cloning/dataset.py -------------------------------------------------------------------------------- /minerl_agent/behaviour_cloning/learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/minerl_agent/behaviour_cloning/learner.py -------------------------------------------------------------------------------- /minerl_agent/behaviour_cloning/tfrecrods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/minerl_agent/behaviour_cloning/tfrecrods.py -------------------------------------------------------------------------------- /minerl_agent/environment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minerl_agent/environment/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/minerl_agent/environment/actions.py -------------------------------------------------------------------------------- /minerl_agent/environment/observations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/minerl_agent/environment/observations.py -------------------------------------------------------------------------------- /minerl_agent/impala/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minerl_agent/impala/batcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/minerl_agent/impala/batcher.cc -------------------------------------------------------------------------------- /minerl_agent/impala/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/minerl_agent/impala/buffer.py -------------------------------------------------------------------------------- /minerl_agent/impala/dynamic_batching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/minerl_agent/impala/dynamic_batching.py -------------------------------------------------------------------------------- /minerl_agent/impala/environments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/minerl_agent/impala/environments.py -------------------------------------------------------------------------------- /minerl_agent/impala/impala.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/minerl_agent/impala/impala.py -------------------------------------------------------------------------------- /minerl_agent/impala/learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/minerl_agent/impala/learner.py -------------------------------------------------------------------------------- /minerl_agent/impala/py_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/minerl_agent/impala/py_process.py -------------------------------------------------------------------------------- /minerl_agent/impala/vtrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/minerl_agent/impala/vtrace.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/run.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/train.py -------------------------------------------------------------------------------- /utility/docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/utility/docker_build.sh -------------------------------------------------------------------------------- /utility/docker_evaluation_locally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/utility/docker_evaluation_locally.sh -------------------------------------------------------------------------------- /utility/docker_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/utility/docker_run.sh -------------------------------------------------------------------------------- /utility/docker_train_locally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/utility/docker_train_locally.sh -------------------------------------------------------------------------------- /utility/environ.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/utility/environ.sh -------------------------------------------------------------------------------- /utility/evaluation_locally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/utility/evaluation_locally.sh -------------------------------------------------------------------------------- /utility/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/utility/parser.py -------------------------------------------------------------------------------- /utility/train_locally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/utility/train_locally.sh -------------------------------------------------------------------------------- /utility/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/utility/utils.py -------------------------------------------------------------------------------- /utility/verify_or_download_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chscheller/minerl_agent/HEAD/utility/verify_or_download_data.py --------------------------------------------------------------------------------