├── .idea ├── SequentialModels.iml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── BPR-MF └── BPR.py ├── FPMC ├── FPMC.py ├── FPMC_numba.py ├── __init__.py ├── run.py └── utils.py ├── GRU4Rec └── gru4rec.txt ├── HGRU └── hgru4rec.txt ├── HRM └── hrm.py ├── NARM └── narm.txt ├── POP └── pop.py ├── README.md ├── SHAN ├── logging.conf └── shan.py ├── SR_GNN └── sr_gnn.txt └── STAMP ├── logging.conf └── stamp.py /.idea/SequentialModels.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenghu17/Sequential_Recommendation/HEAD/.idea/SequentialModels.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenghu17/Sequential_Recommendation/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenghu17/Sequential_Recommendation/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenghu17/Sequential_Recommendation/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenghu17/Sequential_Recommendation/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /BPR-MF/BPR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenghu17/Sequential_Recommendation/HEAD/BPR-MF/BPR.py -------------------------------------------------------------------------------- /FPMC/FPMC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenghu17/Sequential_Recommendation/HEAD/FPMC/FPMC.py -------------------------------------------------------------------------------- /FPMC/FPMC_numba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenghu17/Sequential_Recommendation/HEAD/FPMC/FPMC_numba.py -------------------------------------------------------------------------------- /FPMC/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FPMC/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenghu17/Sequential_Recommendation/HEAD/FPMC/run.py -------------------------------------------------------------------------------- /FPMC/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenghu17/Sequential_Recommendation/HEAD/FPMC/utils.py -------------------------------------------------------------------------------- /GRU4Rec/gru4rec.txt: -------------------------------------------------------------------------------- 1 | https://github.com/hidasib/GRU4Rec -------------------------------------------------------------------------------- /HGRU/hgru4rec.txt: -------------------------------------------------------------------------------- 1 | https://github.com/mquad/hgru4rec -------------------------------------------------------------------------------- /HRM/hrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenghu17/Sequential_Recommendation/HEAD/HRM/hrm.py -------------------------------------------------------------------------------- /NARM/narm.txt: -------------------------------------------------------------------------------- 1 | https://github.com/lijingsdu/sessionRec_NARM -------------------------------------------------------------------------------- /POP/pop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenghu17/Sequential_Recommendation/HEAD/POP/pop.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenghu17/Sequential_Recommendation/HEAD/README.md -------------------------------------------------------------------------------- /SHAN/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenghu17/Sequential_Recommendation/HEAD/SHAN/logging.conf -------------------------------------------------------------------------------- /SHAN/shan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenghu17/Sequential_Recommendation/HEAD/SHAN/shan.py -------------------------------------------------------------------------------- /SR_GNN/sr_gnn.txt: -------------------------------------------------------------------------------- 1 | https://github.com/CRIPAC-DIG/SR-GNN -------------------------------------------------------------------------------- /STAMP/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenghu17/Sequential_Recommendation/HEAD/STAMP/logging.conf -------------------------------------------------------------------------------- /STAMP/stamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenghu17/Sequential_Recommendation/HEAD/STAMP/stamp.py --------------------------------------------------------------------------------