<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Graph-based recommendation algorithms &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/graph-based-recommendation-algorithms/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Tue, 08 Sep 2026 07:16:38 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>Graph-based recommendation algorithms &#8211; Science</title>
	<link>https://scienmag.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">73899611</site>	<item>
		<title>Graph-based social recommender suppresses redundant information for better suggestions</title>
		<link>https://scienmag.com/graph-based-social-recommender-suppresses-redundant-information-for-better-suggestions/</link>
		
		<dc:creator><![CDATA[Denise Maddox]]></dc:creator>
		<pubDate>Tue, 08 Sep 2026 07:16:34 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[advanced loss functions in recommendation models]]></category>
		<category><![CDATA[enhancing recommendation accuracy]]></category>
		<category><![CDATA[enhancing recommendation accuracy through graph pruning]]></category>
		<category><![CDATA[Graph-based recommendation algorithms]]></category>
		<category><![CDATA[improving personalized content suggestions]]></category>
		<category><![CDATA[improving social-based content suggestions]]></category>
		<category><![CDATA[influence filtering in social graph analysis]]></category>
		<category><![CDATA[influence of superficial social ties]]></category>
		<category><![CDATA[machine learning for social network analysis]]></category>
		<category><![CDATA[multi-loss function in social recommendation]]></category>
		<category><![CDATA[noise reduction in social graph models]]></category>
		<category><![CDATA[noise reduction in social recommender systems]]></category>
		<category><![CDATA[real-world social media recommendation datasets]]></category>
		<category><![CDATA[real-world social recommendation datasets]]></category>
		<category><![CDATA[redundant information suppression]]></category>
		<category><![CDATA[redundant information suppression in social networks]]></category>
		<category><![CDATA[social homogeneity impact on recommendation systems]]></category>
		<category><![CDATA[social homogeneity in recommender systems]]></category>
		<category><![CDATA[social network analysis for recommendations]]></category>
		<category><![CDATA[social recommendation]]></category>
		<category><![CDATA[weak social link filtering techniques]]></category>
		<guid isPermaLink="false">https://scienmag.com/graph-based-social-recommender-suppresses-redundant-information-for-better-suggestions/</guid>

					<description><![CDATA[Social media platforms have long promised that the people we connect with online can help us discover the things we will love next. The logic seems obvious: friends tend to share tastes, so what your friends like, you will probably like too. Yet a new study argues that this foundational assumption — social homogeneity — [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Social media platforms have long promised that the people we connect with online can help us discover the things we will love next. The logic seems obvious: friends tend to share tastes, so what your friends like, you will probably like too. Yet a new study argues that this foundational assumption — social homogeneity — is quietly undermining the very recommender systems built upon it. Not every social connection is a genuine channel of influence, and treating superficial ties as meaningful signals injects noise into the models that power modern recommendations. A team of researchers at Southwest Petroleum University in Chengdu, China, has now developed a technique that teaches recommendation algorithms to distinguish between the friendships that matter and those that merely clutter the graph.</p>
<p>The study, published in the journal Cluster Computing, was conducted by Shu-Run Zuo, Heng-Ru Zhang and Yuan-Yuan Xu of the School of Computer Science and Software Engineering. Their approach, presented in a paper titled &#8220;Graph-based social recommendation with redundant information suppression,&#8221; introduces two complementary loss functions that work together to prune away the misleading influence of weak, redundant social links. The results are striking: when tested against nine state-of-the-art baseline models across three real-world datasets, the new algorithm delivered average improvements of 7.977 percent in Recall@20 and 8.180 percent in NDCG@20, two standard metrics that measure how well a system places relevant items at the top of a user&#8217;s recommendation list.</p>
<p>To understand why redundant social connections are so damaging, it helps to look at how graph-based social recommenders actually work. These systems represent users, items and their relationships as a graph — a mathematical structure of nodes and edges. Users are nodes, and the edges encode both user-user social ties and user-item interactions such as purchases, ratings or clicks. Graph neural networks then propagate information along these edges, refining each user&#8217;s and each item&#8217;s embedding, a vector of numbers that encodes the essence of that user&#8217;s preferences or that item&#8217;s characteristics. When two users are connected, the model assumes their embeddings should influence one another, blending their preferences together. This mechanism works beautifully when the connection reflects true shared taste or mutual influence.</p>
<p>The problem is that many online social ties do not reflect any of this. Users accumulate followers, add acquaintances and follow celebrities or brands out of politeness, curiosity or habit. These relationships carry little or no preference information. When a graph neural network propagates signals along such edges anyway, it mixes in preferences that have nothing to do with the target user&#8217;s actual tastes. Over multiple layers of message passing, this noise compounds, degrading the quality of the learned embeddings and, ultimately, the accuracy of the recommendations. Previous research has attacked this problem with various denoising strategies, including diffusion models, adversarial training and graph structure learning, but the Southwest Petroleum team took a more direct route: teach the model itself to dynamically re-weight its social connections during training.</p>
<p>The first of the two proposed techniques is a social relationship adjustment loss function. Rather than treating every social edge as equally trustworthy, this loss function dynamically adjusts the weights assigned to individual social connections as the model learns. Connections that consistently help predict a user&#8217;s preferences gain weight; connections that contribute little, or that actively conflict with observed user-item interactions, are down-weighted. In effect, the model learns a softened, data-driven version of its social graph — one that preserves genuinely informative relationships while suppressing those that are redundant. Crucially, this adjustment is not a one-time preprocessing step but an ongoing optimization process integrated into the model&#8217;s training loop, allowing the weights to evolve alongside the embeddings themselves.</p>
<p>The second technique addresses a subtler problem. Once social relationship weights have been adjusted, there is a risk that the effect of that adjustment will be diluted: the embeddings produced before and after the social adjustment might end up looking very similar, meaning the adjusted relationships are not actually steering the learned representations in a meaningful new direction. To prevent this, the researchers introduce a loss function based on the Hilbert-Schmidt independence criterion, or HSIC — a statistical measure borrowed from kernel methods that quantifies the dependence between two sets of variables. By minimizing dependence between pre-adjustment and post-adjustment user and item embeddings, the HSIC loss forces the adjustment to produce genuinely different, more informative representations. In other words, it amplifies the effect of the re-weighted social relationships on the final embeddings, ensuring the denoising effort actually changes what the model has learned rather than leaving it functionally unchanged.</p>
<p>The combination of these two mechanisms forms the core of the proposed framework, which the authors call GRIS — short for graph-based social recommendation with redundant information suppression. The framework is designed to be model-agnostic, meaning it can be layered onto different underlying recommendation architectures rather than being locked to a single design. In their experiments, the team demonstrated that GRIS significantly improved the performance of multiple base models, confirming that the benefits of social relationship adjustment and independence-based amplification are not artifacts of one particular network design but a general principle applicable across the graph-based social recommendation landscape.</p>
<p>The evaluation was conducted on three real-world datasets, providing a demanding test of the method under realistic conditions of sparse interactions and noisy social networks. The team compared their approach against nine state-of-the-art models, including graph convolutional recommendation architectures such as LightGCN and social recommendation networks such as SocialLGN and DiffNet++. The consistent gains in Recall@20 — which measures the fraction of relevant items captured in the top twenty recommendations — and NDCG@20 — which rewards placing the most relevant items higher in the ranked list — indicate that the improvements are both broad and well-placed. A system that retrieves more relevant items and ranks them higher is, in practical terms, a system better at cutting through the noise to surface what a user genuinely wants.</p>
<p>The work builds on a substantial body of prior research. Social recommendation traces back to probabilistic matrix factorization approaches such as SoRec, introduced in 2008, and trust-aware models like TrustSVD. More recently, graph neural networks have transformed the field, with models like GraphRec pioneering the use of graph structures for social recommendation, and subsequent work exploring adversarial graph convolutional networks, hypergraph convolution, and neural influence diffusion. A parallel thread of research has focused on denoising, recognizing that both interaction data and social data contain noise. Methods such as robust preference-guided denoising, graph bottlenecked social recommendation, and diffusion-based social network refinement all share with the new study the goal of making recommenders resilient to imperfect social signals. What distinguishes GRIS is its two-pronged strategy of explicit relationship re-weighting combined with an independence criterion that guarantees the re-weighting leaves a measurable imprint on the learned representations.</p>
<p>The practical implications extend well beyond academic benchmarks. Recommender systems drive a substantial fraction of engagement on e-commerce platforms, streaming services and social networks, and even modest percentage improvements in ranking quality can translate into significantly better user experiences and business outcomes. More fundamentally, the research offers a corrective to a simplistic view of online social ties. Homophily — the tendency of similar people to connect — is real, but it is not uniform. Social networks are heterogeneous in the strength and meaning of their connections, and systems that ignore this heterogeneity pay a price in accuracy. By learning which connections carry preference information and which do not, GRIS-style approaches point toward recommenders that treat social data with the same critical scrutiny that users themselves intuitively apply.</p>
<p>The researchers have made their code openly available on GitHub, allowing other teams to reproduce their results and integrate the redundant information suppression framework into their own systems. The work was supported by the Sichuan Provincial Natural Science Foundation of China. As online social graphs continue to grow in size and complexity, techniques that can separate signal from noise in human relationships are likely to become increasingly essential — and this study offers a mathematically principled template for how to do exactly that.</p>
<div class="scienmag-article-metadata"><strong>Subject of Research:</strong> Graph-based social recommendation with suppression of redundant social information</p>
<p><strong>Article Title:</strong> Graph-based social recommendation with redundant information suppression</p>
<p><strong>Article References:</strong> Zuo, S.-R., Zhang, H.-R., &amp; Xu, Y.-Y. (2026). Graph-based social recommendation with redundant information suppression. <em>Cluster Computing, 29</em>(12), Article 707. <a href="https://doi.org/10.1007/s10586-026-06500-3" target="_blank" rel="noopener noreferrer">https://doi.org/10.1007/s10586-026-06500-3</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s10586-026-06500-3" target="_blank" rel="noopener noreferrer">10.1007/s10586-026-06500-3</a></p>
<p><strong>Keywords:</strong> Graph-based social recommendation, Social homogeneity, Redundant information suppression, Social relationship adjustment, Hilbert-Schmidt independence criterion, Graph neural networks, Recommender systems, Denoising, Recall@20, NDCG@20</p>
</div>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">189986</post-id>	</item>
		<item>
		<title>Graph attention model improves recommendations by weighting users&#8217; past interactions</title>
		<link>https://scienmag.com/graph-attention-model-improves-recommendations-by-weighting-users-past-interactions/</link>
		
		<dc:creator><![CDATA[Denise Maddox]]></dc:creator>
		<pubDate>Sat, 05 Sep 2026 02:54:51 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[advances in user behavior modeling for online recommendations]]></category>
		<category><![CDATA[Attention mechanisms in recommendations]]></category>
		<category><![CDATA[attention mechanisms in recommender systems]]></category>
		<category><![CDATA[Collaborative filtering integration]]></category>
		<category><![CDATA[collaborative filtering with graph-based methods]]></category>
		<category><![CDATA[combining traditional and modern recommendation techniques]]></category>
		<category><![CDATA[Dynamic relevance weighting]]></category>
		<category><![CDATA[dynamic weighting of user interaction histories]]></category>
		<category><![CDATA[GCRA-Rec model for improved recommendation accuracy]]></category>
		<category><![CDATA[Graph convolutional neural networks]]></category>
		<category><![CDATA[graph convolutional neural networks for user-item interaction analysis]]></category>
		<category><![CDATA[Graph-based recommendation algorithms]]></category>
		<category><![CDATA[integrating order and community patterns in recommendations]]></category>
		<category><![CDATA[modeling user behavior sequences]]></category>
		<category><![CDATA[Neural architecture for recommendations]]></category>
		<category><![CDATA[neural architectures for personalized content suggestions]]></category>
		<category><![CDATA[Personalized content ranking]]></category>
		<category><![CDATA[recommendation system models]]></category>
		<category><![CDATA[Recommender system enhancement]]></category>
		<category><![CDATA[Recommender system research]]></category>
		<category><![CDATA[recurrent neural networks in recommendation systems]]></category>
		<category><![CDATA[Sequential behavior analysis]]></category>
		<category><![CDATA[User interaction modeling]]></category>
		<category><![CDATA[User-item interaction graphs]]></category>
		<guid isPermaLink="false">https://scienmag.com/graph-attention-model-improves-recommendations-by-weighting-users-past-interactions/</guid>

					<description><![CDATA[Recommender systems shape much of the modern internet, quietly deciding which films appear on a streaming homepage, which products surface in an online storefront, and which songs fill a playlist. Yet beneath this everyday convenience lies a long-standing technical dilemma that researchers have struggled to resolve: how to model both the order in which a [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Recommender systems shape much of the modern internet, quietly deciding which films appear on a streaming homepage, which products surface in an online storefront, and which songs fill a playlist. Yet beneath this everyday convenience lies a long-standing technical dilemma that researchers have struggled to resolve: how to model both the order in which a user interacts with items and the broader patterns of behavior shared across an entire user community. A newly published study in the journal Knowledge and Information Systems proposes an answer, introducing a neural architecture that merges two traditionally separate modeling traditions into a single, unified framework.</p>
<p>The new model, called GCRA-Rec — short for graph convolutional recurrent attention recommender — was developed by Dawed Omer Ahmed and Venkateswara Rao Kagita of the National Institute of Technology, Warangal, together with Vikas Kumar of the University of Delhi. Its central contribution is a way of dynamically weighting a user&#8217;s historical interactions according to how relevant each past behavior is to the item currently being considered for recommendation, while simultaneously drawing on the collaborative filtering signals embedded in the user–item interaction graph.</p>
<p>To understand why this matters, it helps to look at the two dominant families of recommendation algorithms and their complementary weaknesses. Graph-based approaches, particularly those built on graph convolutional networks, treat the recommendation problem as a form of learning on a bipartite graph in which users and items form the two classes of nodes and interactions form the edges. By propagating information across multiple layers of this graph, a GCN can capture collaborative relationships — the fact that users with similar tastes tend to interact with similar items — in a way that matrix factorization and older collaborative filtering methods cannot. Landmark models such as Neural Graph Collaborative Filtering and LightGCN demonstrated the power of this approach. But graph convolutions, as the authors note, often struggle to capture long-range dependencies and the temporal dynamics of user preference. A user&#8217;s taste at the moment of recommendation may differ substantially from their aggregate history, and a purely graph-based representation can blur that shift.</p>
<p>Sequential models occupy the opposite corner of the design space. Recurrent architectures, including gated recurrent units popularized by session-based recommenders, and self-attentive transformer models excel at modeling temporal dependencies: they can encode the trajectory of a user&#8217;s recent behavior and predict what comes next. Their blind spot, however, is the global structure of the interaction data. A sequential model processes one user&#8217;s history in isolation and largely ignores the collaborative signals that arise from millions of other users&#8217; overlapping choices.</p>
<p>GCRA-Rec is designed to capture both. The framework begins with a user–item interaction graph, over which graph convolutions are applied to learn embeddings enriched with collaborative structure. In parallel, a novel sequence encoder processes each user&#8217;s ordered history of interactions. The key innovation is in how that encoder treats the past: rather than weighting all historical interactions equally, or weighting them only by recency, the model uses an attention mechanism to score each past interaction against the current recommendation target. An interaction from months ago that is highly relevant to the item under consideration can receive a large weight, while a more recent but irrelevant interaction can be down-weighted. This dynamic relevance weighting is what the authors identify as the model&#8217;s distinguishing feature — the historical sequence is interpreted not as a fixed transcript of behavior but as a flexible pool of evidence to be queried as needed.</p>
<p>The architecture then faces a second design problem: how to combine the graph-based representation, which encodes collaborative structure, with the sequential representation, which encodes temporal dynamics. The researchers investigated an attention-based fusion strategy for this purpose, allowing the model to learn how much to rely on each source of information. The fused representation is used to score candidate items and produce the final recommendation ranking. In technical terms, the system unites the message-passing inductive bias of graph convolutions, the recurrence-based temporal modeling of sequential encoders, and the content-based soft selection of attention mechanisms within a single end-to-end trainable model.</p>
<p>The empirical evaluation was conducted on publicly available benchmark datasets drawn from three distinct domains: Yelp2018, a large-scale collection of business reviews; MovieLens-100K, a classic movie rating dataset; and Last.FM, a music listening dataset. The breadth of the domains matters, because a recommendation model that excels only in one content type may be exploiting dataset-specific quirks rather than learning genuine preference structure. The authors report that GCRA-Rec consistently outperformed state-of-the-art baseline models across all evaluation metrics used in the study. The model was trained with the Adam optimizer, and the evaluation followed established statistical practices for comparing classifiers over multiple datasets, lending rigor to the comparative claims. The datasets themselves remain openly accessible — Yelp2018 through Yelp&#8217;s open dataset portal, and the MovieLens and Last.FM collections through the GroupLens research group — which allows other teams to verify and extend the results.</p>
<p>The significance of the work can be appreciated against a backdrop of healthy skepticism in the recommendation research community. A well-known analysis published at the RecSys conference famously asked, &#8220;Are we really making much progress?&#8221;, finding that many recent neural recommendation approaches failed to outperform carefully tuned simple baselines. Similar concerns have been raised about whether deep learning genuinely benefits recommendation from implicit feedback. In this context, the burden of proof for any new architecture is high: it must demonstrate that its added complexity translates into measurable and consistent gains. The GCRA-Rec study addresses this by combining two sources of signal that are known, individually, to be effective, and by showing that their principled integration — rather than a loose concatenation — delivers improvements across heterogeneous datasets.</p>
<p>The technical implications reach beyond academic benchmarks. Sequential recommendation in particular has become a heavy consumer of computational resources as transformer-based models have grown, and there is active research into scaling such systems efficiently. An architecture that can fuse collaborative graph signals with temporal modeling may reduce the amount of raw interaction history a system needs to consult, since the graph component supplies much of the &#8220;wisdom of the crowd&#8221; that a purely sequential model would otherwise need long histories to learn. For applications such as e-commerce, media streaming, and smart-campus services — areas highlighted in recent surveys of the field — the ability to weigh long-term history against short-term intent dynamically could translate into more relevant suggestions and, ultimately, better user engagement.</p>
<p>The paper also situates itself within a broader research conversation that includes graph attention networks, contrastive learning methods for recommendation, heterogeneous graph neural networks for movie recommendation, and knowledge-aware and diffusion-based approaches. Attention, first introduced to machine translation as a way of aligning and translating jointly, has become the connective tissue of modern deep learning, and GCRA-Rec extends its use to a specific and consequential problem: deciding which fragments of a user&#8217;s past matter right now.</p>
<p>The study was published on 21 August 2026 in Knowledge and Information Systems, a peer-reviewed journal covering databases, data mining, and intelligent information systems. The authors state that the research received no external funding and that they declare no conflicts of interest. All three contributors — Ahmed, Kagita, and Kumar — participated in conceptualizing the problem and designing the study, with Ahmed leading the implementation, experiments, and initial manuscript, while Kagita and Kumar provided supervision and critical revision.</p>
<p>For the field of recommender systems, the study offers a template for hybridization done carefully: rather than bolting a sequential module onto a graph model, GCRA-Rec&#8217;s attention mechanism makes the relevance of historical behavior itself a learned, target-dependent quantity. As personalization continues to pervade digital life, models that can reconcile the collaborative and the temporal — the crowd&#8217;s patterns and the individual&#8217;s trajectory — are likely to define the next generation of recommendation technology. Whether GCRA-Rec&#8217;s approach becomes a standard building block will depend on how it fares as independent teams apply it to their own data, but the study provides both a working implementation and open benchmarks on which that verdict can be rendered.</p>
<div class="scienmag-article-metadata"><strong>Subject of Research:</strong> Recommender systems; a hybrid graph convolutional and recurrent attention model for sequential recommendation</p>
<p><strong>Article Title:</strong> GCRA-Rec: a graph convolutional recurrent attention recommender model for dynamic relevance weighting of historical interactions</p>
<p><strong>Article References:</strong> Ahmed, D. O., Kagita, V. R., &amp; Kumar, V. (2026). GCRA-Rec: a graph convolutional recurrent attention recommender model for dynamic relevance weighting of historical interactions. <em>Knowledge and Information Systems, 68</em>(1), Article 244. <a href="https://doi.org/10.1007/s10115-026-02854-7" target="_blank" rel="noopener noreferrer">https://doi.org/10.1007/s10115-026-02854-7</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s10115-026-02854-7" target="_blank" rel="noopener noreferrer">10.1007/s10115-026-02854-7</a></p>
<p><strong>Keywords:</strong> Recommender systems, Graph convolutional networks, Sequential recommendation, Collaborative filtering, Gated recurrent units, Attention mechanisms</p>
</div>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">187689</post-id>	</item>
	</channel>
</rss>
