├── .gitignore ├── .pylintrc ├── LICENSE ├── README.md ├── algorithms ├── bc.py ├── combo.py ├── cql.py ├── dynamics.py ├── edac.py ├── iql.py ├── mopo.py ├── morel.py ├── rebrac.py ├── sac_n.py ├── td3_bc.py ├── termination_fns.py └── unifloral.py ├── configs ├── algorithms │ ├── bc.yaml │ ├── combo.yaml │ ├── cql.yaml │ ├── edac.yaml │ ├── iql.yaml │ ├── mopo.yaml │ ├── morel.yaml │ ├── rebrac.yaml │ ├── sac_n.yaml │ └── td3_bc.yaml ├── dynamics.yaml └── unifloral │ ├── bc.yaml │ ├── edac.yaml │ ├── iql.yaml │ ├── mobrac.yaml │ ├── rebrac.yaml │ ├── sac_n.yaml │ ├── td3_awr.yaml │ └── td3_bc.yaml ├── evaluation.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | wandb/ 2 | dynamics_models/ 3 | final_returns/ 4 | -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/README.md -------------------------------------------------------------------------------- /algorithms/bc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/algorithms/bc.py -------------------------------------------------------------------------------- /algorithms/combo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/algorithms/combo.py -------------------------------------------------------------------------------- /algorithms/cql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/algorithms/cql.py -------------------------------------------------------------------------------- /algorithms/dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/algorithms/dynamics.py -------------------------------------------------------------------------------- /algorithms/edac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/algorithms/edac.py -------------------------------------------------------------------------------- /algorithms/iql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/algorithms/iql.py -------------------------------------------------------------------------------- /algorithms/mopo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/algorithms/mopo.py -------------------------------------------------------------------------------- /algorithms/morel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/algorithms/morel.py -------------------------------------------------------------------------------- /algorithms/rebrac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/algorithms/rebrac.py -------------------------------------------------------------------------------- /algorithms/sac_n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/algorithms/sac_n.py -------------------------------------------------------------------------------- /algorithms/td3_bc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/algorithms/td3_bc.py -------------------------------------------------------------------------------- /algorithms/termination_fns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/algorithms/termination_fns.py -------------------------------------------------------------------------------- /algorithms/unifloral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/algorithms/unifloral.py -------------------------------------------------------------------------------- /configs/algorithms/bc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/configs/algorithms/bc.yaml -------------------------------------------------------------------------------- /configs/algorithms/combo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/configs/algorithms/combo.yaml -------------------------------------------------------------------------------- /configs/algorithms/cql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/configs/algorithms/cql.yaml -------------------------------------------------------------------------------- /configs/algorithms/edac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/configs/algorithms/edac.yaml -------------------------------------------------------------------------------- /configs/algorithms/iql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/configs/algorithms/iql.yaml -------------------------------------------------------------------------------- /configs/algorithms/mopo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/configs/algorithms/mopo.yaml -------------------------------------------------------------------------------- /configs/algorithms/morel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/configs/algorithms/morel.yaml -------------------------------------------------------------------------------- /configs/algorithms/rebrac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/configs/algorithms/rebrac.yaml -------------------------------------------------------------------------------- /configs/algorithms/sac_n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/configs/algorithms/sac_n.yaml -------------------------------------------------------------------------------- /configs/algorithms/td3_bc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/configs/algorithms/td3_bc.yaml -------------------------------------------------------------------------------- /configs/dynamics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/configs/dynamics.yaml -------------------------------------------------------------------------------- /configs/unifloral/bc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/configs/unifloral/bc.yaml -------------------------------------------------------------------------------- /configs/unifloral/edac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/configs/unifloral/edac.yaml -------------------------------------------------------------------------------- /configs/unifloral/iql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/configs/unifloral/iql.yaml -------------------------------------------------------------------------------- /configs/unifloral/mobrac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/configs/unifloral/mobrac.yaml -------------------------------------------------------------------------------- /configs/unifloral/rebrac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/configs/unifloral/rebrac.yaml -------------------------------------------------------------------------------- /configs/unifloral/sac_n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/configs/unifloral/sac_n.yaml -------------------------------------------------------------------------------- /configs/unifloral/td3_awr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/configs/unifloral/td3_awr.yaml -------------------------------------------------------------------------------- /configs/unifloral/td3_bc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/configs/unifloral/td3_bc.yaml -------------------------------------------------------------------------------- /evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/evaluation.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyJackson/unifloral/HEAD/requirements.txt --------------------------------------------------------------------------------