├── .gitignore ├── README.md ├── __init__.py ├── auxiliary_tasks.py ├── cnn_policy.py ├── cppo_agent.py ├── dynamics.py ├── envs └── setup_env.sh ├── mpi_utils.py ├── recorder.py ├── rollouts.py ├── run.py ├── utils.py ├── vec_env.py └── wrappers.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pathak22/exploration-by-disagreement/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pathak22/exploration-by-disagreement/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auxiliary_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pathak22/exploration-by-disagreement/HEAD/auxiliary_tasks.py -------------------------------------------------------------------------------- /cnn_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pathak22/exploration-by-disagreement/HEAD/cnn_policy.py -------------------------------------------------------------------------------- /cppo_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pathak22/exploration-by-disagreement/HEAD/cppo_agent.py -------------------------------------------------------------------------------- /dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pathak22/exploration-by-disagreement/HEAD/dynamics.py -------------------------------------------------------------------------------- /envs/setup_env.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | -------------------------------------------------------------------------------- /mpi_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pathak22/exploration-by-disagreement/HEAD/mpi_utils.py -------------------------------------------------------------------------------- /recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pathak22/exploration-by-disagreement/HEAD/recorder.py -------------------------------------------------------------------------------- /rollouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pathak22/exploration-by-disagreement/HEAD/rollouts.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pathak22/exploration-by-disagreement/HEAD/run.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pathak22/exploration-by-disagreement/HEAD/utils.py -------------------------------------------------------------------------------- /vec_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pathak22/exploration-by-disagreement/HEAD/vec_env.py -------------------------------------------------------------------------------- /wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pathak22/exploration-by-disagreement/HEAD/wrappers.py --------------------------------------------------------------------------------