Linkage Score Learning for Bipartite Graph Link Prediction
Find Innovative SolutionsGenerate Solutions
Solution Overview
Problem
Current graph neural network (GNN)-based collaborative filtering models for item recommendation primarily learn node representations and measure affinity between them, rather than directly modeling link representations, which can lead to similar link representations for non-isomorphic links, limiting their effectiveness in link prediction tasks.
Innovation Solution
A linkage score learning algorithm for bipartite graphs that predicts linkage scores by summing sub-scores over all 3-step linkage paths between user-item pairs, using iterative degree updates and learnable parameters, allowing for direct link representation modeling without node representation learning.
Engineering Contradictions & Design Principles
Engineering Contradiction Analysis
1Productivity
If GNN-based CF models learn node representations and measure affinity between them, then collaborative filtering performance is improved, but link prediction accuracy deteriorates due to similar link representations for non-isomorphic links
Solution Approach 1:
The patent extracts the link representation task from the node representation framework. Instead of learning node embeddings and inferring link affinity through aggregation, the model directly learns link representations by treating links as the primary entities to be represented, thereby resolving the issue of non-isomorphic links receiving identical representations.
Solution Approach 2:
The patent inverts the conventional approach by going from node-level representations to link-level representations. Rather than aggregating node features to represent links indirectly, the model directly models link properties using the adjacency matrix and degree information, reversing the traditional flow of representation learning.
2Measurement precision
If standard linkage scores are used for link prediction, then link prediction performance is improved, but computational complexity increases due to iterative degree updates and path enumeration
Solution Approach 1:
The patent changes the parameters used in linkage score computation from static to dynamic. By introducing iterative degree updates where node degrees are recalculated based on current link predictions, the model adapts the parameters to better capture evolving relationships, improving prediction accuracy while managing computational requirements through controlled iteration.
Solution Approach 2:
The patent segments the link prediction task into multiple components: path enumeration, sub-score calculation, and degree update. This segmentation allows each component to be optimized independently and enables parallel processing of path findings while maintaining iterative refinement through degree updates, thereby managing overall computational complexity.
3Productivity
If node representation learning is performed, then collaborative filtering can be achieved, but link prediction capability is limited due to indirect modeling of links
Solution Approach 1:
The patent creates a universal representation framework where link representations serve dual purposes: enabling both collaborative filtering and link prediction. By learning representations that capture link-specific properties through adjacency matrices and degree information, the model achieves multi-functionality, allowing the same representation to support both recommendation and link analysis tasks.
Data Source
AI summary
A recommendation system implements a linkage (connectivity) score learning algorithm for user-item interaction bipartite graphs that is combined with a lightweight iterative degree update process in the bipartite graph where the degrees used in the scoring formula are updated several times to exploit local graph structures without any node (user/item) modeling. In the linkage score learning algorithm, for user u1 and item i2, the predicted linkage score between them is the sum over all sub-scores of each 3-step linkage path between u1 and i2. The linkage score learning algorithm pre-defines 6 learnable candidate parameter values, selects the best combination of parameters, and predicts a set of linkage scores that can be used for recommendation systems. The linkage score learning algorithm addresses the problem of link prediction by predicting new links in a graph that do not already exist in training data.


