├── .gitignore ├── QRec.py ├── README.md ├── base ├── __init__.py ├── deepRecommender.py ├── graphRecommender.py ├── iterativeRecommender.py ├── recommender.py └── socialRecommender.py ├── config ├── APR.conf ├── BPR.conf ├── BUIR.conf ├── BasicMF.conf ├── CDAE.conf ├── CFGAN.conf ├── CUNE_BPR.conf ├── CUNE_MF.conf ├── CoFactor.conf ├── DHCF.conf ├── DMF.conf ├── DiffNet.conf ├── EE.conf ├── ESRF.conf ├── ExpoMF.conf ├── IF_BPR.conf ├── IRGAN.conf ├── ItemKNN.conf ├── ItemMean.conf ├── LOCABAL.conf ├── LightGCN.conf ├── MHCN.conf ├── MostPopular.conf ├── NGCF.conf ├── NeuMF.conf ├── PMF.conf ├── RSGAN.conf ├── RSTE.conf ├── Rand.conf ├── SBPR.conf ├── SEPT.conf ├── SERec.conf ├── SGL.conf ├── SREE.conf ├── SVD++.conf ├── SVD.conf ├── SimGCL.conf ├── SlopeOne.conf ├── SoRec.conf ├── SoReg.conf ├── SocialFD.conf ├── SocialMF.conf ├── TBPR.conf ├── UserKNN.conf ├── UserMean.conf └── WRMF.conf ├── data ├── __init__.py ├── rating.py └── social.py ├── dataset ├── FilmTrust │ ├── divide.py │ ├── ratings.txt │ ├── readme.txt │ ├── sample-test.txt │ ├── testset.txt │ ├── trainset.txt │ └── trust.txt ├── lastfm │ ├── ratings.txt │ └── trusts.txt └── yelp2018 │ ├── test.txt │ └── train.txt ├── logo.png ├── main.py ├── model ├── __init__.py ├── ranking │ ├── APR.py │ ├── BPR.py │ ├── BUIR.py │ ├── CDAE.py │ ├── CFGAN.py │ ├── CUNE_BPR.py │ ├── CoFactor.py │ ├── DHCF.py │ ├── DMF.py │ ├── DiffNet.py │ ├── ESRF.py │ ├── ExpoMF.py │ ├── IF_BPR.py │ ├── IRGAN.py │ ├── LightGCN.py │ ├── MHCN.py │ ├── MostPopular.py │ ├── NGCF.py │ ├── NeuMF.py │ ├── RSGAN.py │ ├── Rand.py │ ├── SBPR.py │ ├── SEPT.py │ ├── SERec.py │ ├── SGL.py │ ├── SimGCL.py │ ├── TBPR.py │ ├── WRMF.py │ └── __init__.py └── rating │ ├── BasicMF.py │ ├── CUNE_MF.py │ ├── EE.py │ ├── ItemKNN.py │ ├── ItemMean.py │ ├── LOCABAL.py │ ├── PMF.py │ ├── RSTE.py │ ├── SREE.py │ ├── SVD.py │ ├── SVDPlusPlus.py │ ├── SlopeOne.py │ ├── SoRec.py │ ├── SoReg.py │ ├── SocialFD.py │ ├── SocialMF.py │ ├── UserKNN.py │ ├── UserMean.py │ └── __init__.py ├── snippet.py └── util ├── __init__.py ├── config.py ├── dataSplit.py ├── io.py ├── log.py ├── loss.py ├── measure.py ├── qmath.py └── structure ├── __init__.py ├── new_sparseMatrix.py ├── sparseMatrix.py └── symmetricMatrix.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/.gitignore -------------------------------------------------------------------------------- /QRec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/QRec.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/README.md -------------------------------------------------------------------------------- /base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/deepRecommender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/base/deepRecommender.py -------------------------------------------------------------------------------- /base/graphRecommender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/base/graphRecommender.py -------------------------------------------------------------------------------- /base/iterativeRecommender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/base/iterativeRecommender.py -------------------------------------------------------------------------------- /base/recommender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/base/recommender.py -------------------------------------------------------------------------------- /base/socialRecommender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/base/socialRecommender.py -------------------------------------------------------------------------------- /config/APR.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/APR.conf -------------------------------------------------------------------------------- /config/BPR.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/BPR.conf -------------------------------------------------------------------------------- /config/BUIR.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/BUIR.conf -------------------------------------------------------------------------------- /config/BasicMF.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/BasicMF.conf -------------------------------------------------------------------------------- /config/CDAE.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/CDAE.conf -------------------------------------------------------------------------------- /config/CFGAN.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/CFGAN.conf -------------------------------------------------------------------------------- /config/CUNE_BPR.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/CUNE_BPR.conf -------------------------------------------------------------------------------- /config/CUNE_MF.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/CUNE_MF.conf -------------------------------------------------------------------------------- /config/CoFactor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/CoFactor.conf -------------------------------------------------------------------------------- /config/DHCF.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/DHCF.conf -------------------------------------------------------------------------------- /config/DMF.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/DMF.conf -------------------------------------------------------------------------------- /config/DiffNet.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/DiffNet.conf -------------------------------------------------------------------------------- /config/EE.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/EE.conf -------------------------------------------------------------------------------- /config/ESRF.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/ESRF.conf -------------------------------------------------------------------------------- /config/ExpoMF.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/ExpoMF.conf -------------------------------------------------------------------------------- /config/IF_BPR.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/IF_BPR.conf -------------------------------------------------------------------------------- /config/IRGAN.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/IRGAN.conf -------------------------------------------------------------------------------- /config/ItemKNN.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/ItemKNN.conf -------------------------------------------------------------------------------- /config/ItemMean.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/ItemMean.conf -------------------------------------------------------------------------------- /config/LOCABAL.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/LOCABAL.conf -------------------------------------------------------------------------------- /config/LightGCN.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/LightGCN.conf -------------------------------------------------------------------------------- /config/MHCN.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/MHCN.conf -------------------------------------------------------------------------------- /config/MostPopular.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/MostPopular.conf -------------------------------------------------------------------------------- /config/NGCF.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/NGCF.conf -------------------------------------------------------------------------------- /config/NeuMF.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/NeuMF.conf -------------------------------------------------------------------------------- /config/PMF.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/PMF.conf -------------------------------------------------------------------------------- /config/RSGAN.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/RSGAN.conf -------------------------------------------------------------------------------- /config/RSTE.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/RSTE.conf -------------------------------------------------------------------------------- /config/Rand.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/Rand.conf -------------------------------------------------------------------------------- /config/SBPR.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/SBPR.conf -------------------------------------------------------------------------------- /config/SEPT.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/SEPT.conf -------------------------------------------------------------------------------- /config/SERec.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/SERec.conf -------------------------------------------------------------------------------- /config/SGL.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/SGL.conf -------------------------------------------------------------------------------- /config/SREE.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/SREE.conf -------------------------------------------------------------------------------- /config/SVD++.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/SVD++.conf -------------------------------------------------------------------------------- /config/SVD.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/SVD.conf -------------------------------------------------------------------------------- /config/SimGCL.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/SimGCL.conf -------------------------------------------------------------------------------- /config/SlopeOne.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/SlopeOne.conf -------------------------------------------------------------------------------- /config/SoRec.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/SoRec.conf -------------------------------------------------------------------------------- /config/SoReg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/SoReg.conf -------------------------------------------------------------------------------- /config/SocialFD.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/SocialFD.conf -------------------------------------------------------------------------------- /config/SocialMF.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/SocialMF.conf -------------------------------------------------------------------------------- /config/TBPR.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/TBPR.conf -------------------------------------------------------------------------------- /config/UserKNN.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/UserKNN.conf -------------------------------------------------------------------------------- /config/UserMean.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/UserMean.conf -------------------------------------------------------------------------------- /config/WRMF.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/config/WRMF.conf -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/rating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/data/rating.py -------------------------------------------------------------------------------- /data/social.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/data/social.py -------------------------------------------------------------------------------- /dataset/FilmTrust/divide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/dataset/FilmTrust/divide.py -------------------------------------------------------------------------------- /dataset/FilmTrust/ratings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/dataset/FilmTrust/ratings.txt -------------------------------------------------------------------------------- /dataset/FilmTrust/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/dataset/FilmTrust/readme.txt -------------------------------------------------------------------------------- /dataset/FilmTrust/sample-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/dataset/FilmTrust/sample-test.txt -------------------------------------------------------------------------------- /dataset/FilmTrust/testset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/dataset/FilmTrust/testset.txt -------------------------------------------------------------------------------- /dataset/FilmTrust/trainset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/dataset/FilmTrust/trainset.txt -------------------------------------------------------------------------------- /dataset/FilmTrust/trust.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/dataset/FilmTrust/trust.txt -------------------------------------------------------------------------------- /dataset/lastfm/ratings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/dataset/lastfm/ratings.txt -------------------------------------------------------------------------------- /dataset/lastfm/trusts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/dataset/lastfm/trusts.txt -------------------------------------------------------------------------------- /dataset/yelp2018/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/dataset/yelp2018/test.txt -------------------------------------------------------------------------------- /dataset/yelp2018/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/dataset/yelp2018/train.txt -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/logo.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/main.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/ranking/APR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/APR.py -------------------------------------------------------------------------------- /model/ranking/BPR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/BPR.py -------------------------------------------------------------------------------- /model/ranking/BUIR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/BUIR.py -------------------------------------------------------------------------------- /model/ranking/CDAE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/CDAE.py -------------------------------------------------------------------------------- /model/ranking/CFGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/CFGAN.py -------------------------------------------------------------------------------- /model/ranking/CUNE_BPR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/CUNE_BPR.py -------------------------------------------------------------------------------- /model/ranking/CoFactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/CoFactor.py -------------------------------------------------------------------------------- /model/ranking/DHCF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/DHCF.py -------------------------------------------------------------------------------- /model/ranking/DMF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/DMF.py -------------------------------------------------------------------------------- /model/ranking/DiffNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/DiffNet.py -------------------------------------------------------------------------------- /model/ranking/ESRF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/ESRF.py -------------------------------------------------------------------------------- /model/ranking/ExpoMF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/ExpoMF.py -------------------------------------------------------------------------------- /model/ranking/IF_BPR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/IF_BPR.py -------------------------------------------------------------------------------- /model/ranking/IRGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/IRGAN.py -------------------------------------------------------------------------------- /model/ranking/LightGCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/LightGCN.py -------------------------------------------------------------------------------- /model/ranking/MHCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/MHCN.py -------------------------------------------------------------------------------- /model/ranking/MostPopular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/MostPopular.py -------------------------------------------------------------------------------- /model/ranking/NGCF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/NGCF.py -------------------------------------------------------------------------------- /model/ranking/NeuMF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/NeuMF.py -------------------------------------------------------------------------------- /model/ranking/RSGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/RSGAN.py -------------------------------------------------------------------------------- /model/ranking/Rand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/Rand.py -------------------------------------------------------------------------------- /model/ranking/SBPR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/SBPR.py -------------------------------------------------------------------------------- /model/ranking/SEPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/SEPT.py -------------------------------------------------------------------------------- /model/ranking/SERec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/SERec.py -------------------------------------------------------------------------------- /model/ranking/SGL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/SGL.py -------------------------------------------------------------------------------- /model/ranking/SimGCL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/SimGCL.py -------------------------------------------------------------------------------- /model/ranking/TBPR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/TBPR.py -------------------------------------------------------------------------------- /model/ranking/WRMF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/ranking/WRMF.py -------------------------------------------------------------------------------- /model/ranking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/rating/BasicMF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/rating/BasicMF.py -------------------------------------------------------------------------------- /model/rating/CUNE_MF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/rating/CUNE_MF.py -------------------------------------------------------------------------------- /model/rating/EE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/rating/EE.py -------------------------------------------------------------------------------- /model/rating/ItemKNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/rating/ItemKNN.py -------------------------------------------------------------------------------- /model/rating/ItemMean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/rating/ItemMean.py -------------------------------------------------------------------------------- /model/rating/LOCABAL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/rating/LOCABAL.py -------------------------------------------------------------------------------- /model/rating/PMF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/rating/PMF.py -------------------------------------------------------------------------------- /model/rating/RSTE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/rating/RSTE.py -------------------------------------------------------------------------------- /model/rating/SREE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/rating/SREE.py -------------------------------------------------------------------------------- /model/rating/SVD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/rating/SVD.py -------------------------------------------------------------------------------- /model/rating/SVDPlusPlus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/rating/SVDPlusPlus.py -------------------------------------------------------------------------------- /model/rating/SlopeOne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/rating/SlopeOne.py -------------------------------------------------------------------------------- /model/rating/SoRec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/rating/SoRec.py -------------------------------------------------------------------------------- /model/rating/SoReg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/rating/SoReg.py -------------------------------------------------------------------------------- /model/rating/SocialFD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/rating/SocialFD.py -------------------------------------------------------------------------------- /model/rating/SocialMF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/rating/SocialMF.py -------------------------------------------------------------------------------- /model/rating/UserKNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/rating/UserKNN.py -------------------------------------------------------------------------------- /model/rating/UserMean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/model/rating/UserMean.py -------------------------------------------------------------------------------- /model/rating/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/snippet.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/util/config.py -------------------------------------------------------------------------------- /util/dataSplit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/util/dataSplit.py -------------------------------------------------------------------------------- /util/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/util/io.py -------------------------------------------------------------------------------- /util/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/util/log.py -------------------------------------------------------------------------------- /util/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/util/loss.py -------------------------------------------------------------------------------- /util/measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/util/measure.py -------------------------------------------------------------------------------- /util/qmath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/util/qmath.py -------------------------------------------------------------------------------- /util/structure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/structure/new_sparseMatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/util/structure/new_sparseMatrix.py -------------------------------------------------------------------------------- /util/structure/sparseMatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/util/structure/sparseMatrix.py -------------------------------------------------------------------------------- /util/structure/symmetricMatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Yu/QRec/HEAD/util/structure/symmetricMatrix.py --------------------------------------------------------------------------------