├── DFP ├── __init__.py ├── agent.py ├── defaults.py ├── doom_simulator.py ├── future_predictor_agent_advantage.py ├── future_predictor_agent_advantage_nonorm.py ├── future_predictor_agent_basic.py ├── future_target_maker.py ├── multi_doom_simulator.py ├── multi_experience_memory.py ├── multi_experiment.py ├── tf_ops.py └── util.py ├── LICENSE ├── README.md ├── examples ├── D1_basic │ └── run_exp.py ├── D2_navigation │ └── run_exp.py ├── D3-tx_battle_99maps │ └── run_exp.py ├── D3_battle │ └── run_exp.py ├── D3_battle_randobj_pos │ └── run_exp.py ├── D3_battle_randobj_pos_neg │ └── run_exp.py ├── D4-tx_battle2_99maps │ └── run_exp.py └── D4_battle2 │ └── run_exp.py └── maps ├── D1_basic.cfg ├── D1_basic.wad ├── D2_navigation.cfg ├── D2_navigation.wad ├── D3-tx_battle_99maps.cfg ├── D3-tx_battle_99maps.wad ├── D3_battle.cfg ├── D3_battle.wad ├── D4-tx_battle2_99maps.cfg ├── D4-tx_battle2_99maps.wad ├── D4_battle2.cfg ├── D4_battle2.wad └── random_texture_code ├── apply_random_textures.py ├── test_textures.txt └── train_textures.txt /DFP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DFP/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/DFP/agent.py -------------------------------------------------------------------------------- /DFP/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/DFP/defaults.py -------------------------------------------------------------------------------- /DFP/doom_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/DFP/doom_simulator.py -------------------------------------------------------------------------------- /DFP/future_predictor_agent_advantage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/DFP/future_predictor_agent_advantage.py -------------------------------------------------------------------------------- /DFP/future_predictor_agent_advantage_nonorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/DFP/future_predictor_agent_advantage_nonorm.py -------------------------------------------------------------------------------- /DFP/future_predictor_agent_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/DFP/future_predictor_agent_basic.py -------------------------------------------------------------------------------- /DFP/future_target_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/DFP/future_target_maker.py -------------------------------------------------------------------------------- /DFP/multi_doom_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/DFP/multi_doom_simulator.py -------------------------------------------------------------------------------- /DFP/multi_experience_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/DFP/multi_experience_memory.py -------------------------------------------------------------------------------- /DFP/multi_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/DFP/multi_experiment.py -------------------------------------------------------------------------------- /DFP/tf_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/DFP/tf_ops.py -------------------------------------------------------------------------------- /DFP/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/DFP/util.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/README.md -------------------------------------------------------------------------------- /examples/D1_basic/run_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/examples/D1_basic/run_exp.py -------------------------------------------------------------------------------- /examples/D2_navigation/run_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/examples/D2_navigation/run_exp.py -------------------------------------------------------------------------------- /examples/D3-tx_battle_99maps/run_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/examples/D3-tx_battle_99maps/run_exp.py -------------------------------------------------------------------------------- /examples/D3_battle/run_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/examples/D3_battle/run_exp.py -------------------------------------------------------------------------------- /examples/D3_battle_randobj_pos/run_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/examples/D3_battle_randobj_pos/run_exp.py -------------------------------------------------------------------------------- /examples/D3_battle_randobj_pos_neg/run_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/examples/D3_battle_randobj_pos_neg/run_exp.py -------------------------------------------------------------------------------- /examples/D4-tx_battle2_99maps/run_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/examples/D4-tx_battle2_99maps/run_exp.py -------------------------------------------------------------------------------- /examples/D4_battle2/run_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/examples/D4_battle2/run_exp.py -------------------------------------------------------------------------------- /maps/D1_basic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/maps/D1_basic.cfg -------------------------------------------------------------------------------- /maps/D1_basic.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/maps/D1_basic.wad -------------------------------------------------------------------------------- /maps/D2_navigation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/maps/D2_navigation.cfg -------------------------------------------------------------------------------- /maps/D2_navigation.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/maps/D2_navigation.wad -------------------------------------------------------------------------------- /maps/D3-tx_battle_99maps.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/maps/D3-tx_battle_99maps.cfg -------------------------------------------------------------------------------- /maps/D3-tx_battle_99maps.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/maps/D3-tx_battle_99maps.wad -------------------------------------------------------------------------------- /maps/D3_battle.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/maps/D3_battle.cfg -------------------------------------------------------------------------------- /maps/D3_battle.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/maps/D3_battle.wad -------------------------------------------------------------------------------- /maps/D4-tx_battle2_99maps.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/maps/D4-tx_battle2_99maps.cfg -------------------------------------------------------------------------------- /maps/D4-tx_battle2_99maps.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/maps/D4-tx_battle2_99maps.wad -------------------------------------------------------------------------------- /maps/D4_battle2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/maps/D4_battle2.cfg -------------------------------------------------------------------------------- /maps/D4_battle2.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/maps/D4_battle2.wad -------------------------------------------------------------------------------- /maps/random_texture_code/apply_random_textures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/maps/random_texture_code/apply_random_textures.py -------------------------------------------------------------------------------- /maps/random_texture_code/test_textures.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/maps/random_texture_code/test_textures.txt -------------------------------------------------------------------------------- /maps/random_texture_code/train_textures.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isl-org/DirectFuturePrediction/HEAD/maps/random_texture_code/train_textures.txt --------------------------------------------------------------------------------