├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── T5DST ├── README.md ├── T5.py ├── config.py ├── create_data.py ├── create_data_2_1.py ├── data_loader.py ├── evaluate.py ├── figures │ ├── diagram.png │ └── slotdesc.png ├── train_GPT.py └── utils │ ├── analysis.py │ ├── fix_label.py │ ├── generate_slot_desp.py │ ├── mapping.pair │ ├── requirements.txt │ └── slot_description.json └── TransferQA ├── README.md ├── T5.py ├── config.py ├── create_data_mwoz.py ├── create_qa_data.py ├── data_loader.py ├── download_data.sh ├── evaluate.py └── utils ├── fix_label.py ├── main.png ├── mapping.pair ├── requirements.txt └── slot_description.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/README.md -------------------------------------------------------------------------------- /T5DST/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/T5DST/README.md -------------------------------------------------------------------------------- /T5DST/T5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/T5DST/T5.py -------------------------------------------------------------------------------- /T5DST/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/T5DST/config.py -------------------------------------------------------------------------------- /T5DST/create_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/T5DST/create_data.py -------------------------------------------------------------------------------- /T5DST/create_data_2_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/T5DST/create_data_2_1.py -------------------------------------------------------------------------------- /T5DST/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/T5DST/data_loader.py -------------------------------------------------------------------------------- /T5DST/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/T5DST/evaluate.py -------------------------------------------------------------------------------- /T5DST/figures/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/T5DST/figures/diagram.png -------------------------------------------------------------------------------- /T5DST/figures/slotdesc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/T5DST/figures/slotdesc.png -------------------------------------------------------------------------------- /T5DST/train_GPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/T5DST/train_GPT.py -------------------------------------------------------------------------------- /T5DST/utils/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/T5DST/utils/analysis.py -------------------------------------------------------------------------------- /T5DST/utils/fix_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/T5DST/utils/fix_label.py -------------------------------------------------------------------------------- /T5DST/utils/generate_slot_desp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/T5DST/utils/generate_slot_desp.py -------------------------------------------------------------------------------- /T5DST/utils/mapping.pair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/T5DST/utils/mapping.pair -------------------------------------------------------------------------------- /T5DST/utils/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/T5DST/utils/requirements.txt -------------------------------------------------------------------------------- /T5DST/utils/slot_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/T5DST/utils/slot_description.json -------------------------------------------------------------------------------- /TransferQA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/TransferQA/README.md -------------------------------------------------------------------------------- /TransferQA/T5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/TransferQA/T5.py -------------------------------------------------------------------------------- /TransferQA/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/TransferQA/config.py -------------------------------------------------------------------------------- /TransferQA/create_data_mwoz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/TransferQA/create_data_mwoz.py -------------------------------------------------------------------------------- /TransferQA/create_qa_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/TransferQA/create_qa_data.py -------------------------------------------------------------------------------- /TransferQA/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/TransferQA/data_loader.py -------------------------------------------------------------------------------- /TransferQA/download_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/TransferQA/download_data.sh -------------------------------------------------------------------------------- /TransferQA/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/TransferQA/evaluate.py -------------------------------------------------------------------------------- /TransferQA/utils/fix_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/TransferQA/utils/fix_label.py -------------------------------------------------------------------------------- /TransferQA/utils/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/TransferQA/utils/main.png -------------------------------------------------------------------------------- /TransferQA/utils/mapping.pair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/TransferQA/utils/mapping.pair -------------------------------------------------------------------------------- /TransferQA/utils/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/TransferQA/utils/requirements.txt -------------------------------------------------------------------------------- /TransferQA/utils/slot_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Zero-Shot-DST/HEAD/TransferQA/utils/slot_description.json --------------------------------------------------------------------------------