Replicating UNREAL algorithm described in Google Deep Mind's paper "Reinforcement learning with unsupervised auxiliary tasks."
https://arxiv.org/pdf/1611.05397.pdf
Implemented with TensorFlow and DeepMind Lab environment.
seekavoid_arena_01
stairway_to_melon
nav_maze_static_01
All weights of convolution layers and LSTM layer are shared.
"seekavoid_arena_01" Level
"nav_maze_static_01" Level
First, download and install DeepMind Lab
$ git clone https://github.com/deepmind/lab.git
Then build it following the build instruction. https://github.com/deepmind/lab/blob/master/docs/build.md
Clone this repo in lab directory.
$ cd lab
$ git clone https://github.com/miyosuda/unreal.git
Add this bazel instruction at the end of lab/BUILD
file
package(default_visibility = ["//visibility:public"])
Then run bazel command to run training.
bazel run //unreal:train --define headless=glx
--define headlesss=glx
uses GPU rendering and it requires display not to sleep. (We need to disable display sleep.)
If you have any trouble with GPU rendering, please use software rendering with --define headless=osmesa
option.
To show result after training, run this command.
bazel run //unreal:display --define headless=glx