├── .gitignore ├── LICENSE ├── README.md ├── config_utils.py ├── data ├── full_swda_clean_42da_sentiment_dialog_corpus.p ├── json_data │ ├── test.jsonl │ ├── train.jsonl │ └── valid.jsonl └── test_multi_ref.json ├── data_apis ├── __init__.py ├── corpus.py └── data_utils.py ├── figures ├── dialog_act.png └── example.png ├── kgcvae_swda.py └── models ├── __init__.py ├── cvae.py ├── decoder_fn_lib.py ├── seq2seq.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeztc/NeuralDialog-CVAE/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeztc/NeuralDialog-CVAE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeztc/NeuralDialog-CVAE/HEAD/README.md -------------------------------------------------------------------------------- /config_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeztc/NeuralDialog-CVAE/HEAD/config_utils.py -------------------------------------------------------------------------------- /data/full_swda_clean_42da_sentiment_dialog_corpus.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeztc/NeuralDialog-CVAE/HEAD/data/full_swda_clean_42da_sentiment_dialog_corpus.p -------------------------------------------------------------------------------- /data/json_data/test.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeztc/NeuralDialog-CVAE/HEAD/data/json_data/test.jsonl -------------------------------------------------------------------------------- /data/json_data/train.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeztc/NeuralDialog-CVAE/HEAD/data/json_data/train.jsonl -------------------------------------------------------------------------------- /data/json_data/valid.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeztc/NeuralDialog-CVAE/HEAD/data/json_data/valid.jsonl -------------------------------------------------------------------------------- /data/test_multi_ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeztc/NeuralDialog-CVAE/HEAD/data/test_multi_ref.json -------------------------------------------------------------------------------- /data_apis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_apis/corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeztc/NeuralDialog-CVAE/HEAD/data_apis/corpus.py -------------------------------------------------------------------------------- /data_apis/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeztc/NeuralDialog-CVAE/HEAD/data_apis/data_utils.py -------------------------------------------------------------------------------- /figures/dialog_act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeztc/NeuralDialog-CVAE/HEAD/figures/dialog_act.png -------------------------------------------------------------------------------- /figures/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeztc/NeuralDialog-CVAE/HEAD/figures/example.png -------------------------------------------------------------------------------- /kgcvae_swda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeztc/NeuralDialog-CVAE/HEAD/kgcvae_swda.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/cvae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeztc/NeuralDialog-CVAE/HEAD/models/cvae.py -------------------------------------------------------------------------------- /models/decoder_fn_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeztc/NeuralDialog-CVAE/HEAD/models/decoder_fn_lib.py -------------------------------------------------------------------------------- /models/seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeztc/NeuralDialog-CVAE/HEAD/models/seq2seq.py -------------------------------------------------------------------------------- /models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakeztc/NeuralDialog-CVAE/HEAD/models/utils.py --------------------------------------------------------------------------------