├── .gitignore ├── LICENSE ├── README.md ├── dataset ├── dataset_preproc.p ├── sys_dialog_texts.dev.npy ├── sys_dialog_texts.test.npy ├── sys_dialog_texts.train.npy ├── sys_emotion_texts.dev.npy ├── sys_emotion_texts.test.npy ├── sys_emotion_texts.train.npy ├── sys_situation_texts.dev.npy ├── sys_situation_texts.test.npy ├── sys_situation_texts.train.npy ├── sys_target_texts.dev.npy ├── sys_target_texts.test.npy └── sys_target_texts.train.npy ├── figs └── MIME.png ├── main.py ├── model ├── VAE_noEmo_posterior.py ├── common_layer.py ├── complex_res_attention.py ├── complex_res_gate.py ├── decoder_context_v.py ├── emotion_input_attention.py ├── trainer.py └── transformer_mulexpert.py ├── output.txt ├── utils ├── beam_omt_mimic_model1.py ├── config.py ├── data_loader.py ├── data_reader.py ├── metric.py └── multi-bleu.perl └── vectors └── .gitignore /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/README.md -------------------------------------------------------------------------------- /dataset/dataset_preproc.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/dataset/dataset_preproc.p -------------------------------------------------------------------------------- /dataset/sys_dialog_texts.dev.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/dataset/sys_dialog_texts.dev.npy -------------------------------------------------------------------------------- /dataset/sys_dialog_texts.test.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/dataset/sys_dialog_texts.test.npy -------------------------------------------------------------------------------- /dataset/sys_dialog_texts.train.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/dataset/sys_dialog_texts.train.npy -------------------------------------------------------------------------------- /dataset/sys_emotion_texts.dev.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/dataset/sys_emotion_texts.dev.npy -------------------------------------------------------------------------------- /dataset/sys_emotion_texts.test.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/dataset/sys_emotion_texts.test.npy -------------------------------------------------------------------------------- /dataset/sys_emotion_texts.train.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/dataset/sys_emotion_texts.train.npy -------------------------------------------------------------------------------- /dataset/sys_situation_texts.dev.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/dataset/sys_situation_texts.dev.npy -------------------------------------------------------------------------------- /dataset/sys_situation_texts.test.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/dataset/sys_situation_texts.test.npy -------------------------------------------------------------------------------- /dataset/sys_situation_texts.train.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/dataset/sys_situation_texts.train.npy -------------------------------------------------------------------------------- /dataset/sys_target_texts.dev.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/dataset/sys_target_texts.dev.npy -------------------------------------------------------------------------------- /dataset/sys_target_texts.test.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/dataset/sys_target_texts.test.npy -------------------------------------------------------------------------------- /dataset/sys_target_texts.train.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/dataset/sys_target_texts.train.npy -------------------------------------------------------------------------------- /figs/MIME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/figs/MIME.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/main.py -------------------------------------------------------------------------------- /model/VAE_noEmo_posterior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/model/VAE_noEmo_posterior.py -------------------------------------------------------------------------------- /model/common_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/model/common_layer.py -------------------------------------------------------------------------------- /model/complex_res_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/model/complex_res_attention.py -------------------------------------------------------------------------------- /model/complex_res_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/model/complex_res_gate.py -------------------------------------------------------------------------------- /model/decoder_context_v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/model/decoder_context_v.py -------------------------------------------------------------------------------- /model/emotion_input_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/model/emotion_input_attention.py -------------------------------------------------------------------------------- /model/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/model/trainer.py -------------------------------------------------------------------------------- /model/transformer_mulexpert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/model/transformer_mulexpert.py -------------------------------------------------------------------------------- /output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/output.txt -------------------------------------------------------------------------------- /utils/beam_omt_mimic_model1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/utils/beam_omt_mimic_model1.py -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/utils/data_loader.py -------------------------------------------------------------------------------- /utils/data_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/utils/data_reader.py -------------------------------------------------------------------------------- /utils/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/utils/metric.py -------------------------------------------------------------------------------- /utils/multi-bleu.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/utils/multi-bleu.perl -------------------------------------------------------------------------------- /vectors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/MIME/HEAD/vectors/.gitignore --------------------------------------------------------------------------------