├── .gitignore ├── CNAME ├── Feature Extraction and Summarization with Sequence to Sequence Learning.ipynb ├── README.md ├── _config.yml ├── images ├── joint_space_diagram.svg └── seq2seq_model_architecture.svg └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hohsiangwu/kdd-2018-hands-on-tutorials/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | kddseq2seq.com 2 | -------------------------------------------------------------------------------- /Feature Extraction and Summarization with Sequence to Sequence Learning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hohsiangwu/kdd-2018-hands-on-tutorials/HEAD/Feature Extraction and Summarization with Sequence to Sequence Learning.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hohsiangwu/kdd-2018-hands-on-tutorials/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hohsiangwu/kdd-2018-hands-on-tutorials/HEAD/_config.yml -------------------------------------------------------------------------------- /images/joint_space_diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hohsiangwu/kdd-2018-hands-on-tutorials/HEAD/images/joint_space_diagram.svg -------------------------------------------------------------------------------- /images/seq2seq_model_architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hohsiangwu/kdd-2018-hands-on-tutorials/HEAD/images/seq2seq_model_architecture.svg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hohsiangwu/kdd-2018-hands-on-tutorials/HEAD/requirements.txt --------------------------------------------------------------------------------