├── LICENSE ├── README.md ├── base_model.py ├── config.py ├── copy_modules.py ├── data ├── CamRest676 │ └── CamRest676.zip ├── MultiWOZ │ ├── MULTIWOZ2.1.zip │ └── compressed_data_2.0.json.zip ├── glove │ └── glove.zip └── kvret │ └── kvret_dataset_public.zip ├── datasets.py ├── experiments ├── camrest │ └── camrest_best.zip ├── kvret │ └── kvret_best.zip └── multiwoz │ └── multiwoz_best.zip ├── get_glove_vec.py ├── metric.py ├── modules.py ├── multiwoz_preprocess.py ├── ontologies.py ├── reader.py ├── requirements.txt ├── rnn_net.py ├── smc_model.py ├── train.py ├── utils.py ├── vae_model.py └── vocab.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/README.md -------------------------------------------------------------------------------- /base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/base_model.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/config.py -------------------------------------------------------------------------------- /copy_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/copy_modules.py -------------------------------------------------------------------------------- /data/CamRest676/CamRest676.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/data/CamRest676/CamRest676.zip -------------------------------------------------------------------------------- /data/MultiWOZ/MULTIWOZ2.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/data/MultiWOZ/MULTIWOZ2.1.zip -------------------------------------------------------------------------------- /data/MultiWOZ/compressed_data_2.0.json.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/data/MultiWOZ/compressed_data_2.0.json.zip -------------------------------------------------------------------------------- /data/glove/glove.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/data/glove/glove.zip -------------------------------------------------------------------------------- /data/kvret/kvret_dataset_public.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/data/kvret/kvret_dataset_public.zip -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/datasets.py -------------------------------------------------------------------------------- /experiments/camrest/camrest_best.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/experiments/camrest/camrest_best.zip -------------------------------------------------------------------------------- /experiments/kvret/kvret_best.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/experiments/kvret/kvret_best.zip -------------------------------------------------------------------------------- /experiments/multiwoz/multiwoz_best.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/experiments/multiwoz/multiwoz_best.zip -------------------------------------------------------------------------------- /get_glove_vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/get_glove_vec.py -------------------------------------------------------------------------------- /metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/metric.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/modules.py -------------------------------------------------------------------------------- /multiwoz_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/multiwoz_preprocess.py -------------------------------------------------------------------------------- /ontologies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/ontologies.py -------------------------------------------------------------------------------- /reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/reader.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch==1.2.0 2 | spacy==2.2.2 3 | nltk==3.4.5 4 | -------------------------------------------------------------------------------- /rnn_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/rnn_net.py -------------------------------------------------------------------------------- /smc_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/smc_model.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/utils.py -------------------------------------------------------------------------------- /vae_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/vae_model.py -------------------------------------------------------------------------------- /vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-spmi/LABES/HEAD/vocab.py --------------------------------------------------------------------------------