├── .gitignore ├── IQL.py ├── README.md ├── actor.py ├── common.py ├── critic.py ├── imgs ├── antmaze_results.png └── mujoco_results.png ├── log.py ├── main_iql.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manchery/iql-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /IQL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manchery/iql-pytorch/HEAD/IQL.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manchery/iql-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manchery/iql-pytorch/HEAD/actor.py -------------------------------------------------------------------------------- /common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manchery/iql-pytorch/HEAD/common.py -------------------------------------------------------------------------------- /critic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manchery/iql-pytorch/HEAD/critic.py -------------------------------------------------------------------------------- /imgs/antmaze_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manchery/iql-pytorch/HEAD/imgs/antmaze_results.png -------------------------------------------------------------------------------- /imgs/mujoco_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manchery/iql-pytorch/HEAD/imgs/mujoco_results.png -------------------------------------------------------------------------------- /log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manchery/iql-pytorch/HEAD/log.py -------------------------------------------------------------------------------- /main_iql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manchery/iql-pytorch/HEAD/main_iql.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manchery/iql-pytorch/HEAD/utils.py --------------------------------------------------------------------------------