├── .DS_Store ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── code ├── .DS_Store ├── 0_gen_sampled_data.py ├── 1_gen_sessions.py ├── 2_gen_dien_input.py ├── 2_gen_din_input.py ├── 2_gen_dsin_input.py ├── config.py ├── train_dien.py ├── train_din.py └── train_dsin.py ├── raw_data └── README.md └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/DSIN/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/DSIN/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/DSIN/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/DSIN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/DSIN/HEAD/README.md -------------------------------------------------------------------------------- /code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/DSIN/HEAD/code/.DS_Store -------------------------------------------------------------------------------- /code/0_gen_sampled_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/DSIN/HEAD/code/0_gen_sampled_data.py -------------------------------------------------------------------------------- /code/1_gen_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/DSIN/HEAD/code/1_gen_sessions.py -------------------------------------------------------------------------------- /code/2_gen_dien_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/DSIN/HEAD/code/2_gen_dien_input.py -------------------------------------------------------------------------------- /code/2_gen_din_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/DSIN/HEAD/code/2_gen_din_input.py -------------------------------------------------------------------------------- /code/2_gen_dsin_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/DSIN/HEAD/code/2_gen_dsin_input.py -------------------------------------------------------------------------------- /code/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/DSIN/HEAD/code/config.py -------------------------------------------------------------------------------- /code/train_dien.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/DSIN/HEAD/code/train_dien.py -------------------------------------------------------------------------------- /code/train_din.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/DSIN/HEAD/code/train_din.py -------------------------------------------------------------------------------- /code/train_dsin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/DSIN/HEAD/code/train_dsin.py -------------------------------------------------------------------------------- /raw_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/DSIN/HEAD/raw_data/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenweichen/DSIN/HEAD/requirements.txt --------------------------------------------------------------------------------