Papers › LightGCN: Simplifying and Powering Graph Convolution Network for Recommendation

LightGCN: Simplifying and Powering Graph Convolution Network for Recommendation

6 Feb 2020arXiv:2002.02126archive 2025-07-28

Xiangnan He, Kuan Deng, Xiang Wang, Yan Li, Yongdong Zhang, Meng Wang

Graph Convolution Network (GCN) has become new state-of-the-art for collaborative filtering. Nevertheless, the reasons of its effectiveness for recommendation are not well understood. Existing work that adapts GCN to recommendation lacks thorough ablation analyses on GCN, which is originally designed for graph classification tasks and equipped with many neural network operations. However, we empirically find that the two most common designs in GCNs -- feature transformation and nonlinear activation -- contribute little to the performance of collaborative filtering. Even worse, including them adds to the difficulty of training and degrades recommendation performance. In this work, we aim to simplify the design of GCN to make it more concise and appropriate for recommendation. We propose a new model named LightGCN, including only the most essential component in GCN -- neighborhood aggregation -- for collaborative filtering. Specifically, LightGCN learns user and item embeddings by linearly propagating them on the user-item interaction graph, and uses the weighted sum of the embeddings learned at all layers as the final embedding. Such simple, linear, and neat model is much easier to implement and train, exhibiting substantial improvements (about 16.0% relative improvement on average) over Neural Graph Collaborative Filtering (NGCF) -- a state-of-the-art GCN-based recommender model -- under exactly the same experimental setting. Further analyses are provided towards the rationality of the simple LightGCN from both analytical and empirical perspectives.

PaperPDFCodeCode Syntology ran

In Syntology View this paper on Syntology: its repositories, every harvested function with whether it ran, its licence and the call to fetch it.

Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2002.02126")

Code

Syntology Ran 6 of 7 code samples harvested from 2 repositories linked to this paper; 1 has no recorded run. Of those that ran: 2 ran · our draft was wrong; 4 ran with no contract checked.

By repository: community (archive-listed): 6 samples from 2 repositories, 5 ran; 1 identical to code first harvested elsewhere. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

18 repositories listed; official and paper-mentioned ones first.

gusye1234/pytorch-light-gcn officialmentioned in papermentioned on GitHubpytorch report
kuandeng/LightGCN officialmentioned in papermentioned on GitHubtf report
JiahaoWuGit/DcRec mentioned on GitHubpytorch report
LehengTHU/Agent4Rec mentioned on GitHubpytorchMIT report
PreferredAI/cornac mentioned on GitHubtfApache-2.0 report
Trantin84/NGCF-Tin mentioned on GitHubtfGPL-3.0 report
apat1n/LightGCN-Pytorch mentioned on GitHubpytorch report
gusye1234/LightGCN-PyTorch mentioned on GitHubpytorch report
jinfeng-xu/fkan-gcf mentioned on GitHubpytorchMIT report
lucapantea/LightGCN mentioned on GitHubpytorch report
massquantity/LibRecommender mentioned on GitHubtfMIT report
nathann3/better_than_netflix_movie_recommender mentioned on GitHubtfNOASSERTION report
sayamsingla2000/LightGCN_MovieLens mentioned on GitHubpytorch report
shuyao-wang/dsl mentioned on GitHubpytorch report
tanya525625/LightGCN-PyTorch mentioned on GitHubpytorch report
yshenaw/GF_CF mentioned on GitHubpytorch report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

7 samples harvested; 6 ran; 0 honoured the contract we drafted; 1 has no recorded run. Read from Syntology's graph 2026-09-25; that is when this build read the record, not when the samples ran.

2ran · our draft was wrong
4ran
1unverified

Licence: 2 of the 7 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from 2 repositories linked to this paper, official or community; each sample names its own and says which. Some samples are identical code Syntology first harvested from another repository; for those, this paper's copy is not located and its licence is not recorded. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

calc_A_hat lucapantea/LightGCN/code/models/LightGCN.py community (archive-listed) ran · our draft was wrong no licence file found · pointer only · 1e0bdab65a021d83 · report
ranking_eval PreferredAI/cornac/cornac/eval_methods/base_method.py community (archive-listed) ran Apache-2.0 (permissive) · c04f4ee170bc2ef2 · report
ranking_eval PreferredAI/cornac/cornac/eval_methods/next_basket_evaluation.py community (archive-listed) ran Apache-2.0 (permissive) · 403165dad04c951c · report
ranking_eval PreferredAI/cornac/cornac/eval_methods/propensity_stratified_evaluation.py community (archive-listed) ran Apache-2.0 (permissive) · 068d454afc7e35d8 · report
rating_eval PreferredAI/cornac/cornac/eval_methods/base_method.py community (archive-listed) ran Apache-2.0 (permissive) · ea27fcd78e800f26 · report
ranking_eval PreferredAI/cornac/cornac/eval_methods/next_item_evaluation.py community (archive-listed) unverified Apache-2.0 (permissive) · 41729017320882a2 · report
sparse_matrix_to_torch identical code first harvested elsewhere ran · our draft was wrong licence of this copy not recorded · 27f355e24ef27c9b · report

Tasks

Collaborative FilteringGraph ClassificationMulti-modal RecommendationRecommendation Systems

Results from the paper archive 2025-07-28

TaskDatasetModelMetricValueRank at snapshotLeaderboardReport
Collaborative Filtering Amazon-Book LightGCN NDCG@20 0.0315 #6 of 6 Archive leaderboard report
Collaborative Filtering Amazon-Book LightGCN Recall@20 0.0411 #6 of 6 Archive leaderboard report
Collaborative Filtering Gowalla LightGCN NDCG@20 0.1554 #10 of 11 Archive leaderboard report
Collaborative Filtering Gowalla LightGCN Recall@20 0.1830 #10 of 11 Archive leaderboard report
Collaborative Filtering MovieLens 1M LightGCN NDCG@20 0.2427 #4 of 4 Archive leaderboard report
Collaborative Filtering MovieLens 1M LightGCN Recall@20 0.2576 #4 of 4 Archive leaderboard report
Collaborative Filtering Yelp2018 LightGCN NDCG@20 0.0530 #9 of 9 Archive leaderboard report
Collaborative Filtering Yelp2018 LightGCN Recall@20 0.0649 #9 of 9 Archive leaderboard report
Multi-modal Recommendation Amazon Baby LightGCN NDCG@20 0.0328 #8 of 10 Archive leaderboard report
Multi-modal Recommendation Amazon Clothing LightGCN NDCG@20 0.0243 #8 of 10 Archive leaderboard report
Multi-modal Recommendation Amazon Sports LightGCN NGCG@20 0.0387 #8 of 10 Archive leaderboard report
Recommendation Systems Amazon-Book LightGCN Recall@20 0.0411 #12 of 16 Archive leaderboard report
Recommendation Systems Amazon-Book LightGCN nDCG@20 0.0315 #12 of 16 Archive leaderboard report
Recommendation Systems Gowalla LightGCN Recall@20 0.1830 #10 of 13 Archive leaderboard report
Recommendation Systems Gowalla LightGCN nDCG@20 0.1554 #10 of 13 Archive leaderboard report
Recommendation Systems Yelp2018 LightGCN NDCG@20 0.0530 #10 of 11 Archive leaderboard report
Recommendation Systems Yelp2018 LightGCN Recall@20 0.0649 #10 of 11 Archive leaderboard report

Ranks are positions in the archive's leaderboards as they stood at the 2025-07-28 snapshot. Results published since then are not among these rows, so a rank here is not a current standing.

Methods

Introduced by this paper: LightGCN

ConvolutionGCNLightGCN

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections