LightGCN
Summarizing of the paper
Head - LightGCN: Simplifying and Powering Graph Convolution Network for Recommendation.
Algorithms:
The final representation is the form of combined layer embeddings.
The model prediction is defined as the inner product of user and item final representations: . It implies the similarity between the user and item.
Matrix Form:
is a user-item interaction matrix. Each entries 1 if is connected to
is a diagonal matrix, in which each entry denotes the number of nonzero entries in the row vector of
is a matrix where is the embedding size.
We easily make this as a code using torch_geomtric.utils (reference)
Last updated
Was this helpful?