├── .gitignore ├── AWAC └── awac.py ├── LICENSE ├── README.md ├── awac_data └── instructions.txt ├── citation.cff ├── core.py ├── run_agent.py └── utils ├── logx.py ├── mpi_tools.py └── serialization_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hari-sikchi/AWAC/HEAD/.gitignore -------------------------------------------------------------------------------- /AWAC/awac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hari-sikchi/AWAC/HEAD/AWAC/awac.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hari-sikchi/AWAC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hari-sikchi/AWAC/HEAD/README.md -------------------------------------------------------------------------------- /awac_data/instructions.txt: -------------------------------------------------------------------------------- 1 | Download data from https://drive.google.com/file/d/1edcuicVv2d-PqH1aZUVbO5CeRq3lqK89/view -------------------------------------------------------------------------------- /citation.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hari-sikchi/AWAC/HEAD/citation.cff -------------------------------------------------------------------------------- /core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hari-sikchi/AWAC/HEAD/core.py -------------------------------------------------------------------------------- /run_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hari-sikchi/AWAC/HEAD/run_agent.py -------------------------------------------------------------------------------- /utils/logx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hari-sikchi/AWAC/HEAD/utils/logx.py -------------------------------------------------------------------------------- /utils/mpi_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hari-sikchi/AWAC/HEAD/utils/mpi_tools.py -------------------------------------------------------------------------------- /utils/serialization_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hari-sikchi/AWAC/HEAD/utils/serialization_utils.py --------------------------------------------------------------------------------