├── README.md ├── cta ├── attention.py ├── dataset.py ├── evaluation.py ├── loss.py ├── main.py ├── metric.py ├── model.py ├── optimizer.py ├── readme.md ├── taobao.sh ├── trainer.py ├── transformer.py └── xing.sh └── data ├── taobao-downsample.ipynb ├── taobao-preprocess.ipynb └── xing-preprocess.ipynb /README.md: -------------------------------------------------------------------------------- 1 | # SeqRec Codebase 2 | -------------------------------------------------------------------------------- /cta/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charleo85/seqrec/HEAD/cta/attention.py -------------------------------------------------------------------------------- /cta/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charleo85/seqrec/HEAD/cta/dataset.py -------------------------------------------------------------------------------- /cta/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charleo85/seqrec/HEAD/cta/evaluation.py -------------------------------------------------------------------------------- /cta/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charleo85/seqrec/HEAD/cta/loss.py -------------------------------------------------------------------------------- /cta/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charleo85/seqrec/HEAD/cta/main.py -------------------------------------------------------------------------------- /cta/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charleo85/seqrec/HEAD/cta/metric.py -------------------------------------------------------------------------------- /cta/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charleo85/seqrec/HEAD/cta/model.py -------------------------------------------------------------------------------- /cta/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charleo85/seqrec/HEAD/cta/optimizer.py -------------------------------------------------------------------------------- /cta/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charleo85/seqrec/HEAD/cta/readme.md -------------------------------------------------------------------------------- /cta/taobao.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charleo85/seqrec/HEAD/cta/taobao.sh -------------------------------------------------------------------------------- /cta/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charleo85/seqrec/HEAD/cta/trainer.py -------------------------------------------------------------------------------- /cta/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charleo85/seqrec/HEAD/cta/transformer.py -------------------------------------------------------------------------------- /cta/xing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charleo85/seqrec/HEAD/cta/xing.sh -------------------------------------------------------------------------------- /data/taobao-downsample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charleo85/seqrec/HEAD/data/taobao-downsample.ipynb -------------------------------------------------------------------------------- /data/taobao-preprocess.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charleo85/seqrec/HEAD/data/taobao-preprocess.ipynb -------------------------------------------------------------------------------- /data/xing-preprocess.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charleo85/seqrec/HEAD/data/xing-preprocess.ipynb --------------------------------------------------------------------------------