简述

将用户的session序列构建成有向图,通过考虑item之间的转移关系, 更好的学习item emb及用户的向量表达.

related work

一些流行的GNN演变.
word2vec, DeepWalk, LINE, node2vec.

结构及解读

网络结构

SR-GNN, 图网络召回

nodes connection

AsA_s is defined as the concatenation of two adjacency matrices. directed edges have normalized weight.
SR-GNN, 图网络召回

gated recurrent units

SR-GNN, 图网络召回

session emb

hybrid_session_emb=linear([slocal;sglobal])hybrid\_session\_emb=linear([s_{local};s_{global}]), where sglobal=soft_attention()s_{global}=soft\_attention(\cdot)

experiment

参考

  1. paper,AAAI,2019, Session-based Recommendation with Graph Neural Networks
  2. corresponding official code,SR-GNN

相关文章:

  • 2021-12-26
  • 2021-12-26
  • 2021-12-27
  • 2021-10-24
  • 2021-05-12
  • 2021-06-16
  • 2021-12-26
  • 2021-12-26
猜你喜欢
  • 2021-12-26
  • 2021-12-26
  • 2021-09-10
  • 2021-07-08
  • 2022-01-23
  • 2021-05-17
  • 2021-12-26
相关资源
相似解决方案