<?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>advanced loss functions in recommendation models &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/advanced-loss-functions-in-recommendation-models/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>advanced loss functions in recommendation models &#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>
	</channel>
</rss>
