├── .gitignore ├── LICENSE ├── README.md ├── cfgs ├── dmlp.yaml └── dt.yaml ├── collect_antmaze_data.py ├── collect_pointmaze_data.py ├── model.py ├── requirements.txt ├── train_dmlp.py ├── train_dt.py └── utils ├── __init__.py ├── data.py ├── env.py └── misc.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajGhugare19/stitching-is-combinatorial-generalisation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajGhugare19/stitching-is-combinatorial-generalisation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajGhugare19/stitching-is-combinatorial-generalisation/HEAD/README.md -------------------------------------------------------------------------------- /cfgs/dmlp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajGhugare19/stitching-is-combinatorial-generalisation/HEAD/cfgs/dmlp.yaml -------------------------------------------------------------------------------- /cfgs/dt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajGhugare19/stitching-is-combinatorial-generalisation/HEAD/cfgs/dt.yaml -------------------------------------------------------------------------------- /collect_antmaze_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajGhugare19/stitching-is-combinatorial-generalisation/HEAD/collect_antmaze_data.py -------------------------------------------------------------------------------- /collect_pointmaze_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajGhugare19/stitching-is-combinatorial-generalisation/HEAD/collect_pointmaze_data.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajGhugare19/stitching-is-combinatorial-generalisation/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajGhugare19/stitching-is-combinatorial-generalisation/HEAD/requirements.txt -------------------------------------------------------------------------------- /train_dmlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajGhugare19/stitching-is-combinatorial-generalisation/HEAD/train_dmlp.py -------------------------------------------------------------------------------- /train_dt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajGhugare19/stitching-is-combinatorial-generalisation/HEAD/train_dt.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajGhugare19/stitching-is-combinatorial-generalisation/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajGhugare19/stitching-is-combinatorial-generalisation/HEAD/utils/data.py -------------------------------------------------------------------------------- /utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajGhugare19/stitching-is-combinatorial-generalisation/HEAD/utils/env.py -------------------------------------------------------------------------------- /utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajGhugare19/stitching-is-combinatorial-generalisation/HEAD/utils/misc.py --------------------------------------------------------------------------------