├── LICENSE.md ├── README.md ├── a3c_main.py ├── a3c_test.py ├── a3c_train.py ├── constants.py ├── data ├── instructions_all.json ├── instructions_test.json ├── instructions_train.json └── object_sizes.txt ├── docs └── example.gif ├── env.py ├── env_test.py ├── maps └── room.wad ├── models.py ├── saved └── pretrained_model └── utils ├── __init__.py ├── doom.py └── points.py /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devendrachaplot/DeepRL-Grounding/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devendrachaplot/DeepRL-Grounding/HEAD/README.md -------------------------------------------------------------------------------- /a3c_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devendrachaplot/DeepRL-Grounding/HEAD/a3c_main.py -------------------------------------------------------------------------------- /a3c_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devendrachaplot/DeepRL-Grounding/HEAD/a3c_test.py -------------------------------------------------------------------------------- /a3c_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devendrachaplot/DeepRL-Grounding/HEAD/a3c_train.py -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devendrachaplot/DeepRL-Grounding/HEAD/constants.py -------------------------------------------------------------------------------- /data/instructions_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devendrachaplot/DeepRL-Grounding/HEAD/data/instructions_all.json -------------------------------------------------------------------------------- /data/instructions_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devendrachaplot/DeepRL-Grounding/HEAD/data/instructions_test.json -------------------------------------------------------------------------------- /data/instructions_train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devendrachaplot/DeepRL-Grounding/HEAD/data/instructions_train.json -------------------------------------------------------------------------------- /data/object_sizes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devendrachaplot/DeepRL-Grounding/HEAD/data/object_sizes.txt -------------------------------------------------------------------------------- /docs/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devendrachaplot/DeepRL-Grounding/HEAD/docs/example.gif -------------------------------------------------------------------------------- /env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devendrachaplot/DeepRL-Grounding/HEAD/env.py -------------------------------------------------------------------------------- /env_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devendrachaplot/DeepRL-Grounding/HEAD/env_test.py -------------------------------------------------------------------------------- /maps/room.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devendrachaplot/DeepRL-Grounding/HEAD/maps/room.wad -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devendrachaplot/DeepRL-Grounding/HEAD/models.py -------------------------------------------------------------------------------- /saved/pretrained_model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devendrachaplot/DeepRL-Grounding/HEAD/saved/pretrained_model -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/doom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devendrachaplot/DeepRL-Grounding/HEAD/utils/doom.py -------------------------------------------------------------------------------- /utils/points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devendrachaplot/DeepRL-Grounding/HEAD/utils/points.py --------------------------------------------------------------------------------