• Stars
    star
    337
  • Rank 125,272 (Top 3 %)
  • Language
    Python
  • Created almost 7 years ago
  • Updated about 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A pytorch implementation of He et al. "Neural Collaborative Filtering" at WWW'17

NCF

A pytorch GPU implementation of He et al. "Neural Collaborative Filtering" at WWW'17

Note that I use the two sub datasets provided by Xiangnan's repo.

I randomly utilized a factor number 32, MLP layers 3, epochs is 20, and posted the results in the original paper and this implementation here. I employed the exactly same settings with Xiangnan, including batch_size, learning rate, and all the initialization methods in Xiangnan's keras repo. From the results I observed, this repo can replicate the performance of the original NCF. Xiangnan's keras repo:

Models MovieLens HR@10 MovieLens NDCG@10 Pinterest HR@10 Pinterest NDCG@10
MLP 0.692 0.425 0.868 0.542
GMF - - - -
NeuMF (without pre-training) 0.701 0.425 0.870 0.549
NeuMF (with pre-training) 0.726 0.445 0.879 0.555

This pytorch code:

Models MovieLens HR@10 MovieLens NDCG@10 Pinterest HR@10 Pinterest NDCG@10
MLP 0.691 0.416 0.866 0.537
GMF 0.708 0.429 0.867 0.546
NeuMF (without pre-training) 0.701 0.424 0.867 0.544
NeuMF (with pre-training) 0.720 0.439 0.879 0.555

The requirements are as follows:

* python==3.6
* pandas==0.24.2
* numpy==1.16.2
* pytorch==1.0.1
* gensim==3.7.1
* tensorboardX==1.6 (mainly useful when you want to visulize the loss, see https://github.com/lanpa/tensorboard-pytorch)

Example to run:

python main.py --batch_size=256 --lr=0.001 --factor_num=16

More Repositories

1

BPR-pytorch

A pytorch implementation for BPR (Bayesian Personalized Ranking).
Python
135
star
2

NFM-pyorch

A pytorch implementation for He et al. Neural Factorization Machines for Sparse Predictive Analytics on SIGIR 2017.
Python
39
star
3

A3NCF

Implementation for Aspect-Aware Latent Factor Model: Rating Prediction with Ratings and Reviews.
Python
25
star
4

ALSTP

Implementation for our TOIS paper --- Attentive Long Short-Term Preference Modeling for Personalized Product Search.
Python
17
star
5

UnifER

Official implementation for the MM'22 paper.
Python
11
star
6

PELA

PELA: Learning Parameter-Efficient Models with Low-Rank Approximation [CVPR 2024]
Python
10
star
7

TranSearch

Implementation for our MM'18 paper --- Multi-modal Preference Modeling for Product Search.
Python
9
star
8

LXMERT-VQACP

This is an adaptation of LXMERT on both VQA-CP and VQA dataset.
Python
6
star
9

AdaVQA

Implementation for our IJCAI-21 paper --- AdaVQA: Overcoming Language Priors with Adapted Margin Loss.
Python
6
star
10

Relation-Fact-Detector

The Relation Fact Detector in 'R-VQA: Learning Visual Relation Facts with Semantic Attention for Visual Question Answering'.
Python
6
star
11

vqa-prior

Implementation for our SIGIR 2019 paper --- Quantifying and Alleviating the Language Prior Problem in Visual Question Answering.
Python
6
star
12

class-imbalance-VQA

Implementation for our TIP paper - Loss Re-scaling VQA: Revisiting the Language Prior Problem from a Class-imbalance View.
Python
5
star
13

ELIP

Efficient language image pre-training
Python
2
star
14

CF-PPS

Personalized product search with collaborative filtering and some typical baselines.
Python
1
star
15

UNK-VQA

A VQA dataset that includes unanswerable questions [TPAMI 2024].
1
star