├── .gitignore ├── .idea ├── .gitignore ├── efficient_unified_crs.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── __pycache__ ├── dataset.cpython-38.pyc ├── engine.cpython-38.pyc ├── engine_validation.cpython-38.pyc ├── evaluation.cpython-38.pyc ├── model.cpython-38.pyc ├── model_utils.cpython-38.pyc ├── utils.cpython-37.pyc └── utils.cpython-38.pyc ├── data ├── .DS_Store ├── INSPIRED │ ├── dev_data_processed │ ├── movie_db │ ├── test_data_processed │ └── train_data_processed └── REDIAL │ ├── movie_db │ ├── test_data_processed │ └── train_data_processed ├── dataset.py ├── engine.py ├── engine_validation.py ├── evaluation.py ├── main.py ├── model.py ├── model_utils.py ├── requirements.txt ├── utils.py └── zero_shot_llms.py /.gitignore: -------------------------------------------------------------------------------- 1 | Outputs/* 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/efficient_unified_crs.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/.idea/efficient_unified_crs.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/engine.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/__pycache__/engine.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/engine_validation.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/__pycache__/engine_validation.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/evaluation.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/__pycache__/evaluation.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/model_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/__pycache__/model_utils.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/data/.DS_Store -------------------------------------------------------------------------------- /data/INSPIRED/dev_data_processed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/data/INSPIRED/dev_data_processed -------------------------------------------------------------------------------- /data/INSPIRED/movie_db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/data/INSPIRED/movie_db -------------------------------------------------------------------------------- /data/INSPIRED/test_data_processed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/data/INSPIRED/test_data_processed -------------------------------------------------------------------------------- /data/INSPIRED/train_data_processed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/data/INSPIRED/train_data_processed -------------------------------------------------------------------------------- /data/REDIAL/movie_db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/data/REDIAL/movie_db -------------------------------------------------------------------------------- /data/REDIAL/test_data_processed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/data/REDIAL/test_data_processed -------------------------------------------------------------------------------- /data/REDIAL/train_data_processed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/data/REDIAL/train_data_processed -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/dataset.py -------------------------------------------------------------------------------- /engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/engine.py -------------------------------------------------------------------------------- /engine_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/engine_validation.py -------------------------------------------------------------------------------- /evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/evaluation.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/model.py -------------------------------------------------------------------------------- /model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/model_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/utils.py -------------------------------------------------------------------------------- /zero_shot_llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ravoxsg/efficient_unified_crs/HEAD/zero_shot_llms.py --------------------------------------------------------------------------------