├── .gitignore ├── LICENSE ├── README.md ├── agents ├── __init__.py ├── fql.py ├── ifql.py ├── iql.py ├── rebrac.py └── sac.py ├── assets └── fql.png ├── envs ├── __init__.py ├── d4rl_utils.py └── env_utils.py ├── main.py ├── pyproject.toml ├── requirements.txt └── utils ├── __init__.py ├── datasets.py ├── encoders.py ├── evaluation.py ├── flax_utils.py ├── log_utils.py └── networks.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/README.md -------------------------------------------------------------------------------- /agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/agents/__init__.py -------------------------------------------------------------------------------- /agents/fql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/agents/fql.py -------------------------------------------------------------------------------- /agents/ifql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/agents/ifql.py -------------------------------------------------------------------------------- /agents/iql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/agents/iql.py -------------------------------------------------------------------------------- /agents/rebrac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/agents/rebrac.py -------------------------------------------------------------------------------- /agents/sac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/agents/sac.py -------------------------------------------------------------------------------- /assets/fql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/assets/fql.png -------------------------------------------------------------------------------- /envs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envs/d4rl_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/envs/d4rl_utils.py -------------------------------------------------------------------------------- /envs/env_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/envs/env_utils.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/main.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/utils/datasets.py -------------------------------------------------------------------------------- /utils/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/utils/encoders.py -------------------------------------------------------------------------------- /utils/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/utils/evaluation.py -------------------------------------------------------------------------------- /utils/flax_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/utils/flax_utils.py -------------------------------------------------------------------------------- /utils/log_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/utils/log_utils.py -------------------------------------------------------------------------------- /utils/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seohongpark/fql/HEAD/utils/networks.py --------------------------------------------------------------------------------