├── Data ├── ml-1m.test.negative ├── ml-1m.test.rating ├── ml-1m.train.rating ├── pinterest-20.test.negative ├── pinterest-20.test.rating └── pinterest-20.train.rating ├── Dataset.py ├── Dockerfile ├── GMF.py ├── LICENSE ├── MLP.py ├── NeuMF.py ├── Pretrain ├── ml-1m_GMF_8_1501651698.h5 └── ml-1m_MLP_[64,32,16,8]_1501652038.h5 ├── README.md └── evaluate.py /Data/ml-1m.test.negative: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexiangnan/neural_collaborative_filtering/HEAD/Data/ml-1m.test.negative -------------------------------------------------------------------------------- /Data/ml-1m.test.rating: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexiangnan/neural_collaborative_filtering/HEAD/Data/ml-1m.test.rating -------------------------------------------------------------------------------- /Data/ml-1m.train.rating: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexiangnan/neural_collaborative_filtering/HEAD/Data/ml-1m.train.rating -------------------------------------------------------------------------------- /Data/pinterest-20.test.negative: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexiangnan/neural_collaborative_filtering/HEAD/Data/pinterest-20.test.negative -------------------------------------------------------------------------------- /Data/pinterest-20.test.rating: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexiangnan/neural_collaborative_filtering/HEAD/Data/pinterest-20.test.rating -------------------------------------------------------------------------------- /Data/pinterest-20.train.rating: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexiangnan/neural_collaborative_filtering/HEAD/Data/pinterest-20.train.rating -------------------------------------------------------------------------------- /Dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexiangnan/neural_collaborative_filtering/HEAD/Dataset.py -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexiangnan/neural_collaborative_filtering/HEAD/Dockerfile -------------------------------------------------------------------------------- /GMF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexiangnan/neural_collaborative_filtering/HEAD/GMF.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexiangnan/neural_collaborative_filtering/HEAD/LICENSE -------------------------------------------------------------------------------- /MLP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexiangnan/neural_collaborative_filtering/HEAD/MLP.py -------------------------------------------------------------------------------- /NeuMF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexiangnan/neural_collaborative_filtering/HEAD/NeuMF.py -------------------------------------------------------------------------------- /Pretrain/ml-1m_GMF_8_1501651698.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexiangnan/neural_collaborative_filtering/HEAD/Pretrain/ml-1m_GMF_8_1501651698.h5 -------------------------------------------------------------------------------- /Pretrain/ml-1m_MLP_[64,32,16,8]_1501652038.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexiangnan/neural_collaborative_filtering/HEAD/Pretrain/ml-1m_MLP_[64,32,16,8]_1501652038.h5 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexiangnan/neural_collaborative_filtering/HEAD/README.md -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexiangnan/neural_collaborative_filtering/HEAD/evaluate.py --------------------------------------------------------------------------------