├── .gitignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── environment.yml ├── grtr ├── __init__.py ├── env_utils.py ├── train.py ├── utils.py └── version.py ├── img └── grtr.png ├── metalwoz_dataspec.json ├── requirements.txt ├── scripts ├── interact ├── predict ├── predict_gen_and_rank_metalwoz_cross_task.sh ├── predict_gen_and_rank_metalwoz_pure_task.sh ├── predict_gen_and_rank_multiwoz.sh ├── predict_generate_and_rank ├── predict_metalwoz_cross_task.sh ├── predict_metalwoz_pure_task.sh ├── predict_multiwoz.sh └── train ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/SECURITY.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/environment.yml -------------------------------------------------------------------------------- /grtr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/grtr/__init__.py -------------------------------------------------------------------------------- /grtr/env_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/grtr/env_utils.py -------------------------------------------------------------------------------- /grtr/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/grtr/train.py -------------------------------------------------------------------------------- /grtr/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/grtr/utils.py -------------------------------------------------------------------------------- /grtr/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.1' 2 | -------------------------------------------------------------------------------- /img/grtr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/img/grtr.png -------------------------------------------------------------------------------- /metalwoz_dataspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/metalwoz_dataspec.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/interact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/scripts/interact -------------------------------------------------------------------------------- /scripts/predict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/scripts/predict -------------------------------------------------------------------------------- /scripts/predict_gen_and_rank_metalwoz_cross_task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/scripts/predict_gen_and_rank_metalwoz_cross_task.sh -------------------------------------------------------------------------------- /scripts/predict_gen_and_rank_metalwoz_pure_task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/scripts/predict_gen_and_rank_metalwoz_pure_task.sh -------------------------------------------------------------------------------- /scripts/predict_gen_and_rank_multiwoz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/scripts/predict_gen_and_rank_multiwoz.sh -------------------------------------------------------------------------------- /scripts/predict_generate_and_rank: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/scripts/predict_generate_and_rank -------------------------------------------------------------------------------- /scripts/predict_metalwoz_cross_task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/scripts/predict_metalwoz_cross_task.sh -------------------------------------------------------------------------------- /scripts/predict_metalwoz_pure_task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/scripts/predict_metalwoz_pure_task.sh -------------------------------------------------------------------------------- /scripts/predict_multiwoz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/scripts/predict_multiwoz.sh -------------------------------------------------------------------------------- /scripts/train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/scripts/train -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/GRTr/HEAD/setup.py --------------------------------------------------------------------------------