├── README.md ├── common ├── abstract_recommender.py └── trainer.py ├── configs ├── dataset │ ├── baby.yaml │ ├── clothing.yaml │ └── sports.yaml ├── model │ └── LGMREC.yaml └── overall.yaml ├── data ├── baby │ └── baby.inter ├── clothing │ └── clothing.inter └── sports │ └── sports.inter ├── img └── framework.jpg ├── log ├── LGMRec-baby-Aug-12-2023-20-35-58.log ├── LGMRec-clothing-Aug-12-2023-20-36-03.log └── LGMRec-sports-Aug-12-2023-20-36-00.log ├── main.py ├── models └── lgmrec.py ├── requirement.txt ├── train.sh └── utils ├── configurator.py ├── data_utils.py ├── dataloader.py ├── dataset.py ├── logger.py ├── metrics.py ├── quick_start.py ├── topk_evaluator.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/README.md -------------------------------------------------------------------------------- /common/abstract_recommender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/common/abstract_recommender.py -------------------------------------------------------------------------------- /common/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/common/trainer.py -------------------------------------------------------------------------------- /configs/dataset/baby.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/configs/dataset/baby.yaml -------------------------------------------------------------------------------- /configs/dataset/clothing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/configs/dataset/clothing.yaml -------------------------------------------------------------------------------- /configs/dataset/sports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/configs/dataset/sports.yaml -------------------------------------------------------------------------------- /configs/model/LGMREC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/configs/model/LGMREC.yaml -------------------------------------------------------------------------------- /configs/overall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/configs/overall.yaml -------------------------------------------------------------------------------- /data/baby/baby.inter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/data/baby/baby.inter -------------------------------------------------------------------------------- /data/clothing/clothing.inter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/data/clothing/clothing.inter -------------------------------------------------------------------------------- /data/sports/sports.inter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/data/sports/sports.inter -------------------------------------------------------------------------------- /img/framework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/img/framework.jpg -------------------------------------------------------------------------------- /log/LGMRec-baby-Aug-12-2023-20-35-58.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/log/LGMRec-baby-Aug-12-2023-20-35-58.log -------------------------------------------------------------------------------- /log/LGMRec-clothing-Aug-12-2023-20-36-03.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/log/LGMRec-clothing-Aug-12-2023-20-36-03.log -------------------------------------------------------------------------------- /log/LGMRec-sports-Aug-12-2023-20-36-00.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/log/LGMRec-sports-Aug-12-2023-20-36-00.log -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/main.py -------------------------------------------------------------------------------- /models/lgmrec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/models/lgmrec.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/requirement.txt -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/train.sh -------------------------------------------------------------------------------- /utils/configurator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/utils/configurator.py -------------------------------------------------------------------------------- /utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/utils/data_utils.py -------------------------------------------------------------------------------- /utils/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/utils/dataloader.py -------------------------------------------------------------------------------- /utils/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/utils/dataset.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/utils/metrics.py -------------------------------------------------------------------------------- /utils/quick_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/utils/quick_start.py -------------------------------------------------------------------------------- /utils/topk_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/utils/topk_evaluator.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgeguo-cn/LGMRec/HEAD/utils/utils.py --------------------------------------------------------------------------------