├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── bctrainer.py ├── examples ├── overcookedtraining.py └── pettingzooex.py ├── images ├── agent_selection_screen.png └── training_screen.png ├── overcookedgym ├── OvercookedAdaptPartnerInstructions.md ├── OvercookedFlaskWebAppInstructions.md ├── __init__.py ├── overcooked-flask │ ├── EDIT_INSTRUCTIONS.md │ ├── app.py │ ├── package.json │ └── static │ │ ├── assets │ │ ├── chefs.json │ │ ├── chefs.png │ │ ├── objects.json │ │ ├── objects.png │ │ ├── pbt_asymmetric_advantages_agent │ │ │ ├── group1-shard1of1 │ │ │ └── model.json │ │ ├── pbt_coordination_ring_agent │ │ │ ├── group1-shard1of1 │ │ │ └── model.json │ │ ├── pbt_counter_circuit_agent │ │ │ ├── group1-shard1of1 │ │ │ └── model.json │ │ ├── pbt_cramped_room_agent │ │ │ ├── group1-shard1of1 │ │ │ └── model.json │ │ ├── pbt_forced_coordination_agent │ │ │ ├── group1-shard1of1 │ │ │ ├── model.json │ │ │ ├── tensorflowjs_model.pb │ │ │ └── weights_manifest.json │ │ ├── ppo_bc_asymmetric_advantages_agent │ │ │ ├── group1-shard1of1 │ │ │ └── model.json │ │ ├── ppo_bc_coordination_ring_agent │ │ │ ├── group1-shard1of1 │ │ │ └── model.json │ │ ├── ppo_bc_counter_circuit_agent │ │ │ ├── group1-shard1of1 │ │ │ └── model.json │ │ ├── ppo_bc_cramped_room_agent │ │ │ ├── group1-shard1of1 │ │ │ └── model.json │ │ ├── ppo_bc_forced_coordination_agent │ │ │ ├── group1-shard1of1 │ │ │ └── model.json │ │ ├── ppo_sp_asymmetric_advantages_agent │ │ │ ├── group1-shard1of1 │ │ │ └── model.json │ │ ├── ppo_sp_coordination_ring_agent │ │ │ ├── group1-shard1of1 │ │ │ └── model.json │ │ ├── ppo_sp_counter_circuit_agent │ │ │ ├── group1-shard1of1 │ │ │ └── model.json │ │ ├── ppo_sp_cramped_room_agent │ │ │ ├── group1-shard1of1 │ │ │ └── model.json │ │ ├── ppo_sp_forced_coordination_agent │ │ │ ├── group1-shard1of1 │ │ │ └── model.json │ │ ├── terrain.json │ │ ├── terrain.png │ │ ├── test_traj.json │ │ ├── tiles.json │ │ └── tiles.png │ │ ├── css │ │ ├── bootstrap.min.css │ │ └── style.css │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ ├── images │ │ ├── info-panel.png │ │ ├── onions-cooking.png │ │ ├── serving-counter.png │ │ ├── soup-ready.png │ │ ├── soup.png │ │ ├── space-arrows.png │ │ ├── training0-annotated.png │ │ ├── training0.png │ │ └── university.png │ │ ├── index.html │ │ ├── instructions.html │ │ ├── js │ │ ├── demo │ │ │ ├── demo.js │ │ │ ├── index.js │ │ │ ├── js │ │ │ │ ├── load_tf_model.js │ │ │ │ ├── overcooked-replay.js │ │ │ │ └── overcooked-single.js │ │ │ ├── replay-index.js │ │ │ └── replay.js │ │ └── utils.js │ │ ├── lib │ │ ├── babel.min.js │ │ ├── backbone-min.js │ │ ├── bootstrap.min.js │ │ ├── d3.v3.min.js │ │ ├── jquery-min.js │ │ └── underscore-min.js │ │ └── replay.html ├── overcooked.py └── overcooked_utils.py ├── pantheonrl ├── __init__.py ├── algos │ ├── adap │ │ ├── adap_learn.py │ │ ├── agent.py │ │ ├── policies.py │ │ └── util.py │ ├── bc.py │ └── modular │ │ ├── learn.py │ │ └── policies.py ├── common │ ├── agents.py │ ├── multiagentenv.py │ ├── observation.py │ ├── trajsaver.py │ ├── util.py │ └── wrappers.py └── envs │ ├── __init__.py │ ├── blockworldgym │ ├── __init__.py │ ├── blockworld.py │ ├── gridutils.py │ └── simpleblockworld.py │ ├── liargym │ ├── __init__.py │ └── liar.py │ ├── pettingzoo.py │ └── rpsgym │ ├── __init__.py │ └── rps.py ├── setup.py ├── tester.py ├── trainer.py └── website ├── __init__.py ├── agents.py ├── constants.py ├── data_processing.py ├── db.py ├── env_selection.py ├── login.py ├── schema.sql ├── static ├── iliad_logo_image_only.png └── style.css ├── templates ├── agentparams.html ├── base.html ├── baseagents.html ├── environments │ ├── blockworld.html │ ├── liar.html │ ├── overcooked.html │ ├── rps.html │ └── simpleblockworld.html ├── login.html ├── training.html └── welcome.html └── trainer.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/README.md -------------------------------------------------------------------------------- /bctrainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/bctrainer.py -------------------------------------------------------------------------------- /examples/overcookedtraining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/examples/overcookedtraining.py -------------------------------------------------------------------------------- /examples/pettingzooex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/examples/pettingzooex.py -------------------------------------------------------------------------------- /images/agent_selection_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/images/agent_selection_screen.png -------------------------------------------------------------------------------- /images/training_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/images/training_screen.png -------------------------------------------------------------------------------- /overcookedgym/OvercookedAdaptPartnerInstructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/OvercookedAdaptPartnerInstructions.md -------------------------------------------------------------------------------- /overcookedgym/OvercookedFlaskWebAppInstructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/OvercookedFlaskWebAppInstructions.md -------------------------------------------------------------------------------- /overcookedgym/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/__init__.py -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/EDIT_INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/EDIT_INSTRUCTIONS.md -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/app.py -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/package.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/chefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/chefs.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/chefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/chefs.png -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/objects.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/objects.png -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/pbt_asymmetric_advantages_agent/group1-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/pbt_asymmetric_advantages_agent/group1-shard1of1 -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/pbt_asymmetric_advantages_agent/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/pbt_asymmetric_advantages_agent/model.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/pbt_coordination_ring_agent/group1-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/pbt_coordination_ring_agent/group1-shard1of1 -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/pbt_coordination_ring_agent/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/pbt_coordination_ring_agent/model.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/pbt_counter_circuit_agent/group1-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/pbt_counter_circuit_agent/group1-shard1of1 -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/pbt_counter_circuit_agent/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/pbt_counter_circuit_agent/model.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/pbt_cramped_room_agent/group1-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/pbt_cramped_room_agent/group1-shard1of1 -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/pbt_cramped_room_agent/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/pbt_cramped_room_agent/model.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/pbt_forced_coordination_agent/group1-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/pbt_forced_coordination_agent/group1-shard1of1 -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/pbt_forced_coordination_agent/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/pbt_forced_coordination_agent/model.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/pbt_forced_coordination_agent/tensorflowjs_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/pbt_forced_coordination_agent/tensorflowjs_model.pb -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/pbt_forced_coordination_agent/weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/pbt_forced_coordination_agent/weights_manifest.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_bc_asymmetric_advantages_agent/group1-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_bc_asymmetric_advantages_agent/group1-shard1of1 -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_bc_asymmetric_advantages_agent/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_bc_asymmetric_advantages_agent/model.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_bc_coordination_ring_agent/group1-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_bc_coordination_ring_agent/group1-shard1of1 -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_bc_coordination_ring_agent/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_bc_coordination_ring_agent/model.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_bc_counter_circuit_agent/group1-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_bc_counter_circuit_agent/group1-shard1of1 -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_bc_counter_circuit_agent/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_bc_counter_circuit_agent/model.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_bc_cramped_room_agent/group1-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_bc_cramped_room_agent/group1-shard1of1 -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_bc_cramped_room_agent/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_bc_cramped_room_agent/model.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_bc_forced_coordination_agent/group1-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_bc_forced_coordination_agent/group1-shard1of1 -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_bc_forced_coordination_agent/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_bc_forced_coordination_agent/model.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_sp_asymmetric_advantages_agent/group1-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_sp_asymmetric_advantages_agent/group1-shard1of1 -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_sp_asymmetric_advantages_agent/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_sp_asymmetric_advantages_agent/model.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_sp_coordination_ring_agent/group1-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_sp_coordination_ring_agent/group1-shard1of1 -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_sp_coordination_ring_agent/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_sp_coordination_ring_agent/model.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_sp_counter_circuit_agent/group1-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_sp_counter_circuit_agent/group1-shard1of1 -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_sp_counter_circuit_agent/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_sp_counter_circuit_agent/model.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_sp_cramped_room_agent/group1-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_sp_cramped_room_agent/group1-shard1of1 -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_sp_cramped_room_agent/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_sp_cramped_room_agent/model.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_sp_forced_coordination_agent/group1-shard1of1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_sp_forced_coordination_agent/group1-shard1of1 -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/ppo_sp_forced_coordination_agent/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/ppo_sp_forced_coordination_agent/model.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/terrain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/terrain.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/terrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/terrain.png -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/test_traj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/test_traj.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/tiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/tiles.json -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/assets/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/assets/tiles.png -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/css/style.css -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/favicon.ico -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/images/info-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/images/info-panel.png -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/images/onions-cooking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/images/onions-cooking.png -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/images/serving-counter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/images/serving-counter.png -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/images/soup-ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/images/soup-ready.png -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/images/soup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/images/soup.png -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/images/space-arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/images/space-arrows.png -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/images/training0-annotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/images/training0-annotated.png -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/images/training0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/images/training0.png -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/images/university.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/images/university.png -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/index.html -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/instructions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/instructions.html -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/js/demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/js/demo/demo.js -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/js/demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/js/demo/index.js -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/js/demo/js/load_tf_model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/js/demo/js/load_tf_model.js -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/js/demo/js/overcooked-replay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/js/demo/js/overcooked-replay.js -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/js/demo/js/overcooked-single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/js/demo/js/overcooked-single.js -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/js/demo/replay-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/js/demo/replay-index.js -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/js/demo/replay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/js/demo/replay.js -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/js/utils.js -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/lib/babel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/lib/babel.min.js -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/lib/backbone-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/lib/backbone-min.js -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/lib/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/lib/bootstrap.min.js -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/lib/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/lib/d3.v3.min.js -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/lib/jquery-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/lib/jquery-min.js -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/lib/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/lib/underscore-min.js -------------------------------------------------------------------------------- /overcookedgym/overcooked-flask/static/replay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked-flask/static/replay.html -------------------------------------------------------------------------------- /overcookedgym/overcooked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked.py -------------------------------------------------------------------------------- /overcookedgym/overcooked_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/overcookedgym/overcooked_utils.py -------------------------------------------------------------------------------- /pantheonrl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/__init__.py -------------------------------------------------------------------------------- /pantheonrl/algos/adap/adap_learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/algos/adap/adap_learn.py -------------------------------------------------------------------------------- /pantheonrl/algos/adap/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/algos/adap/agent.py -------------------------------------------------------------------------------- /pantheonrl/algos/adap/policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/algos/adap/policies.py -------------------------------------------------------------------------------- /pantheonrl/algos/adap/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/algos/adap/util.py -------------------------------------------------------------------------------- /pantheonrl/algos/bc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/algos/bc.py -------------------------------------------------------------------------------- /pantheonrl/algos/modular/learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/algos/modular/learn.py -------------------------------------------------------------------------------- /pantheonrl/algos/modular/policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/algos/modular/policies.py -------------------------------------------------------------------------------- /pantheonrl/common/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/common/agents.py -------------------------------------------------------------------------------- /pantheonrl/common/multiagentenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/common/multiagentenv.py -------------------------------------------------------------------------------- /pantheonrl/common/observation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/common/observation.py -------------------------------------------------------------------------------- /pantheonrl/common/trajsaver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/common/trajsaver.py -------------------------------------------------------------------------------- /pantheonrl/common/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/common/util.py -------------------------------------------------------------------------------- /pantheonrl/common/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/common/wrappers.py -------------------------------------------------------------------------------- /pantheonrl/envs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/envs/__init__.py -------------------------------------------------------------------------------- /pantheonrl/envs/blockworldgym/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pantheonrl/envs/blockworldgym/blockworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/envs/blockworldgym/blockworld.py -------------------------------------------------------------------------------- /pantheonrl/envs/blockworldgym/gridutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/envs/blockworldgym/gridutils.py -------------------------------------------------------------------------------- /pantheonrl/envs/blockworldgym/simpleblockworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/envs/blockworldgym/simpleblockworld.py -------------------------------------------------------------------------------- /pantheonrl/envs/liargym/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pantheonrl/envs/liargym/liar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/envs/liargym/liar.py -------------------------------------------------------------------------------- /pantheonrl/envs/pettingzoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/envs/pettingzoo.py -------------------------------------------------------------------------------- /pantheonrl/envs/rpsgym/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pantheonrl/envs/rpsgym/rps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/pantheonrl/envs/rpsgym/rps.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/setup.py -------------------------------------------------------------------------------- /tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/tester.py -------------------------------------------------------------------------------- /trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/trainer.py -------------------------------------------------------------------------------- /website/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/__init__.py -------------------------------------------------------------------------------- /website/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/agents.py -------------------------------------------------------------------------------- /website/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/constants.py -------------------------------------------------------------------------------- /website/data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/data_processing.py -------------------------------------------------------------------------------- /website/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/db.py -------------------------------------------------------------------------------- /website/env_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/env_selection.py -------------------------------------------------------------------------------- /website/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/login.py -------------------------------------------------------------------------------- /website/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/schema.sql -------------------------------------------------------------------------------- /website/static/iliad_logo_image_only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/static/iliad_logo_image_only.png -------------------------------------------------------------------------------- /website/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/static/style.css -------------------------------------------------------------------------------- /website/templates/agentparams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/templates/agentparams.html -------------------------------------------------------------------------------- /website/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/templates/base.html -------------------------------------------------------------------------------- /website/templates/baseagents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/templates/baseagents.html -------------------------------------------------------------------------------- /website/templates/environments/blockworld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/templates/environments/blockworld.html -------------------------------------------------------------------------------- /website/templates/environments/liar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/templates/environments/liar.html -------------------------------------------------------------------------------- /website/templates/environments/overcooked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/templates/environments/overcooked.html -------------------------------------------------------------------------------- /website/templates/environments/rps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/templates/environments/rps.html -------------------------------------------------------------------------------- /website/templates/environments/simpleblockworld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/templates/environments/simpleblockworld.html -------------------------------------------------------------------------------- /website/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/templates/login.html -------------------------------------------------------------------------------- /website/templates/training.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/templates/training.html -------------------------------------------------------------------------------- /website/templates/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/templates/welcome.html -------------------------------------------------------------------------------- /website/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanford-ILIAD/PantheonRL/HEAD/website/trainer.py --------------------------------------------------------------------------------