├── .gitignore ├── README.md ├── Results.PNG ├── datasets ├── diginetica │ └── raw │ │ ├── test.txt │ │ └── train.txt ├── preprocess.py ├── sample │ └── raw │ │ ├── test.txt │ │ └── train.txt └── yoochoose1_64 │ └── raw │ ├── test.txt │ └── train.txt └── src ├── __init__.py ├── dataset.py ├── main.py ├── model.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userbehavioranalysis/SR-GNN_PyTorch-Geometric/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userbehavioranalysis/SR-GNN_PyTorch-Geometric/HEAD/README.md -------------------------------------------------------------------------------- /Results.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userbehavioranalysis/SR-GNN_PyTorch-Geometric/HEAD/Results.PNG -------------------------------------------------------------------------------- /datasets/diginetica/raw/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userbehavioranalysis/SR-GNN_PyTorch-Geometric/HEAD/datasets/diginetica/raw/test.txt -------------------------------------------------------------------------------- /datasets/diginetica/raw/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userbehavioranalysis/SR-GNN_PyTorch-Geometric/HEAD/datasets/diginetica/raw/train.txt -------------------------------------------------------------------------------- /datasets/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userbehavioranalysis/SR-GNN_PyTorch-Geometric/HEAD/datasets/preprocess.py -------------------------------------------------------------------------------- /datasets/sample/raw/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userbehavioranalysis/SR-GNN_PyTorch-Geometric/HEAD/datasets/sample/raw/test.txt -------------------------------------------------------------------------------- /datasets/sample/raw/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userbehavioranalysis/SR-GNN_PyTorch-Geometric/HEAD/datasets/sample/raw/train.txt -------------------------------------------------------------------------------- /datasets/yoochoose1_64/raw/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userbehavioranalysis/SR-GNN_PyTorch-Geometric/HEAD/datasets/yoochoose1_64/raw/test.txt -------------------------------------------------------------------------------- /datasets/yoochoose1_64/raw/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userbehavioranalysis/SR-GNN_PyTorch-Geometric/HEAD/datasets/yoochoose1_64/raw/train.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userbehavioranalysis/SR-GNN_PyTorch-Geometric/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userbehavioranalysis/SR-GNN_PyTorch-Geometric/HEAD/src/dataset.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userbehavioranalysis/SR-GNN_PyTorch-Geometric/HEAD/src/main.py -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userbehavioranalysis/SR-GNN_PyTorch-Geometric/HEAD/src/model.py -------------------------------------------------------------------------------- /src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userbehavioranalysis/SR-GNN_PyTorch-Geometric/HEAD/src/train.py --------------------------------------------------------------------------------