neural_graph_collaborative_filtering icon indicating copy to clipboard operation
neural_graph_collaborative_filtering copied to clipboard

An experimental phenomenon

Open wu6shen opened this issue 6 years ago • 2 comments
trafficstars

I did an experiment that delete the propagation on graph (comment line:194-221), which means that only do dot product. It is amazing that it can get comparible results in gollaw and amazon dataset.

  • Gollaw with graph: (recall@20, ndcg@20) (0.14798, 0.20794) image

  • Gollaw without graph: (recall@20, ndcg@20) (0.14481, 0.21080) image

  • Amazon with graph: (recall@20, ndcg@20) (0.03171, 0.06087) image

  • Amazon without graph: (recall@20, ndcg@20) (0.03295, 0.06254) image

wu6shen avatar Sep 18 '19 09:09 wu6shen

Sorry for the late reply after a busy week. For this finding, we think one possible reason is: (1) in the first version, we use bpr loss (implementing via sigmoid function) to do experiments and report performance in our paper. (2) in the current second version, to avoid the NAN issue, we use bpr loss (implementing via softplus function). Hence, the parameters and reports could be inconsistent with our previous and reported performance. I have changed the bpr loss back to the first version. Please try it again and let me know whether you hold the same findings. Thanks for your valuable comments.

xiangwang1223 avatar Sep 27 '19 04:09 xiangwang1223

I did an experiment that delete the propagation on graph (comment line:194-221), which means that only do dot product. It is amazing that it can get comparible results in gollaw and amazon dataset.

  • Gollaw with graph: (recall@20, ndcg@20) (0.14798, 0.20794) image
  • Gollaw without graph: (recall@20, ndcg@20) (0.14481, 0.21080) image
  • Amazon with graph: (recall@20, ndcg@20) (0.03171, 0.06087) image
  • Amazon without graph: (recall@20, ndcg@20) (0.03295, 0.06254) image

could you please elaborate how you set up your experiment? because I found after commenting line:194-221, the initial embeddings matrix will not be updated at all.

RileyLee95 avatar Nov 03 '21 11:11 RileyLee95