├── README-RES ├── 16_16_RIM.gif ├── 5X5_LSTM.gif ├── 5x5_DoorkKey_LSTM.gif ├── 6_6_RIM_DoorKey.gif ├── N4_LSTM.gif ├── N4_RIM.gif ├── rim_image.png └── time_comparison.png ├── README.md ├── RIM.py ├── __pycache__ ├── data.cpython-36.pyc └── networks.cpython-36.pyc ├── copying.py ├── data.py ├── generator.py ├── main.py ├── minigrid_experiments ├── evaluate.py ├── model.py ├── train.py ├── utils │ ├── __init__.py │ ├── agent.py │ ├── env.py │ ├── format.py │ ├── other.py │ └── storage.py └── visualize.py ├── mnist ├── t10k-images-idx3-ubyte.gz ├── t10k-labels-idx1-ubyte.gz ├── train-images-idx3-ubyte.gz └── train-labels-idx1-ubyte.gz ├── networks.py └── setup.py /README-RES/16_16_RIM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/README-RES/16_16_RIM.gif -------------------------------------------------------------------------------- /README-RES/5X5_LSTM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/README-RES/5X5_LSTM.gif -------------------------------------------------------------------------------- /README-RES/5x5_DoorkKey_LSTM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/README-RES/5x5_DoorkKey_LSTM.gif -------------------------------------------------------------------------------- /README-RES/6_6_RIM_DoorKey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/README-RES/6_6_RIM_DoorKey.gif -------------------------------------------------------------------------------- /README-RES/N4_LSTM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/README-RES/N4_LSTM.gif -------------------------------------------------------------------------------- /README-RES/N4_RIM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/README-RES/N4_RIM.gif -------------------------------------------------------------------------------- /README-RES/rim_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/README-RES/rim_image.png -------------------------------------------------------------------------------- /README-RES/time_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/README-RES/time_comparison.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/README.md -------------------------------------------------------------------------------- /RIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/RIM.py -------------------------------------------------------------------------------- /__pycache__/data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/__pycache__/data.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/networks.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/__pycache__/networks.cpython-36.pyc -------------------------------------------------------------------------------- /copying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/copying.py -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/data.py -------------------------------------------------------------------------------- /generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/generator.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/main.py -------------------------------------------------------------------------------- /minigrid_experiments/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/minigrid_experiments/evaluate.py -------------------------------------------------------------------------------- /minigrid_experiments/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/minigrid_experiments/model.py -------------------------------------------------------------------------------- /minigrid_experiments/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/minigrid_experiments/train.py -------------------------------------------------------------------------------- /minigrid_experiments/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/minigrid_experiments/utils/__init__.py -------------------------------------------------------------------------------- /minigrid_experiments/utils/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/minigrid_experiments/utils/agent.py -------------------------------------------------------------------------------- /minigrid_experiments/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/minigrid_experiments/utils/env.py -------------------------------------------------------------------------------- /minigrid_experiments/utils/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/minigrid_experiments/utils/format.py -------------------------------------------------------------------------------- /minigrid_experiments/utils/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/minigrid_experiments/utils/other.py -------------------------------------------------------------------------------- /minigrid_experiments/utils/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/minigrid_experiments/utils/storage.py -------------------------------------------------------------------------------- /minigrid_experiments/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/minigrid_experiments/visualize.py -------------------------------------------------------------------------------- /mnist/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/mnist/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /mnist/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/mnist/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /mnist/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/mnist/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /mnist/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/mnist/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/networks.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dido1998/Recurrent-Independent-Mechanisms/HEAD/setup.py --------------------------------------------------------------------------------