<?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>privacy-preserving data analysis &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/privacy-preserving-data-analysis/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Mon, 31 Aug 2026 18:47:40 +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>privacy-preserving data analysis &#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>New federated discretization method enables privacy-preserving supervised classification</title>
		<link>https://scienmag.com/new-federated-discretization-method-enables-privacy-preserving-supervised-classification/</link>
		
		<dc:creator><![CDATA[Denise Maddox]]></dc:creator>
		<pubDate>Sun, 30 Aug 2026 14:42:20 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[collaborative data categorization techniques]]></category>
		<category><![CDATA[collaborative data discretization]]></category>
		<category><![CDATA[data privacy in AI]]></category>
		<category><![CDATA[decentralized data preprocessing]]></category>
		<category><![CDATA[distributed classification algorithms]]></category>
		<category><![CDATA[distributed machine learning]]></category>
		<category><![CDATA[edge device data processing]]></category>
		<category><![CDATA[edge device machine learning]]></category>
		<category><![CDATA[federated data categorization]]></category>
		<category><![CDATA[federated data transformation]]></category>
		<category><![CDATA[federated discretization]]></category>
		<category><![CDATA[federated discretization method]]></category>
		<category><![CDATA[federated learning]]></category>
		<category><![CDATA[federated learning for discrete data]]></category>
		<category><![CDATA[local model training without data sharing]]></category>
		<category><![CDATA[privacy-aware AI algorithms]]></category>
		<category><![CDATA[privacy-aware machine learning]]></category>
		<category><![CDATA[privacy-preserving data analysis]]></category>
		<category><![CDATA[privacy-preserving data discretization methods]]></category>
		<category><![CDATA[privacy-preserving supervised classification]]></category>
		<category><![CDATA[secure data categorization]]></category>
		<category><![CDATA[secure data preprocessing]]></category>
		<category><![CDATA[statistical data summaries in federated learning]]></category>
		<guid isPermaLink="false">https://scienmag.com/new-federated-discretization-method-enables-privacy-preserving-supervised-classification/</guid>

					<description><![CDATA[Artificial intelligence is increasingly trained on data that nobody is allowed to see. Millions of smartphones hold keystroke patterns, hospitals hold medical records and factories hold sensor readings from production lines, and privacy rules, commercial interests and simple prudence dictate that this raw information should stay where it was created. Federated learning was invented for [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Artificial intelligence is increasingly trained on data that nobody is allowed to see. Millions of smartphones hold keystroke patterns, hospitals hold medical records and factories hold sensor readings from production lines, and privacy rules, commercial interests and simple prudence dictate that this raw information should stay where it was created. Federated learning was invented for precisely this world: instead of pooling data on a central server, devices train models locally and share only the resulting parameters. Yet a deceptively mundane obstacle has lingered at the edge of this paradigm. A large family of classification algorithms can digest only discrete categories, not the continuous numbers the physical world produces, and carving those numbers into categories has always been treated as a centralized task that assumes somebody can see everything. Researchers at the University of the Basque Country and the Basque Center for Applied Mathematics in Spain now report in Data Mining and Knowledge Discovery a way to complete this final preprocessing step collectively, without any device ever surrendering a single raw data point, and with the users&#8217; statistical summaries traveling to the server only once.</p>
<p>The recipe behind federated learning is conceptually simple. Each participant, whether a phone, a hospital or an industrial controller, holds a private dataset and fits a local model on it. The model parameters, never the data, travel to a coordinating server, which aggregates the local contributions into a global model and sends the result back down; each such exchange constitutes a communication round, and the loop repeats until the global model converges. Because raw records never leave the devices that generated them, the framework offers privacy by architecture: a would-be attacker is forced to devise separate offensive techniques for every individual user rather than breach a single consolidated data store. The design is also naturally scalable, since participating devices contribute their own computational resources and distribute the workload of training. The paradigm already underpins deployed systems, from keyboard query prediction on Android devices and human trajectory forecasting to manufacturing defect detection, energy prediction for electric vehicles, phenotyping of electronic health records and the analysis of distributed biomedical images.</p>
<p>The overlooked snag lies in the nature of the numbers. Supervised classification learns a function that maps an instance, described by a vector of attribute values, to a class label, and some of the most interpretable and computationally economical classifiers, notably those built on Bayesian networks such as the naive Bayes classifier, require every input variable to be discrete. Continuous measurements such as blood pressure, voltage or acceleration must therefore be preprocessed through discretization: an algorithm slices the variable&#8217;s range into a set of disjoint intervals delimited by cut points, and each observation is subsequently assigned to one of those intervals. Supervised variants go further, consulting the class labels to position the cuts so that the intervals best separate the classes; entropy-based methods, for instance, recursively choose the split that maximizes information gain and apply the Minimum Description Length principle to decide when to stop. The difficulty in a federated setting is that every participant must apply the identical slicing policy. If two users convert the same blood-pressure value into different categories, their locally trained models become mutually incompatible, and no aggregation scheme can reconcile them afterwards.</p>
<p>The seemingly obvious remedy, letting each device discretize its own data and ship the resulting policy to the server for merging, collapses under its own combinatorics. Because different users observe different fragments of the underlying distribution, they inevitably produce heterogeneous interval boundaries, and reconciling thousands of mismatched cut points quickly becomes prohibitively expensive for the coordinating server. Until now, the literature offered essentially no general answer: the only prior federated discretization method known to the authors was tailored to a single, specific classifier. The Spanish team, Jose Luis Flores and Borja Calvo of the University of the Basque Country together with Aritz Pérez of the Basque Center for Applied Mathematics, set out instead to build something classifier-agnostic and algorithm-agnostic: a general framework into which any discretization method can be plugged and from which any downstream classifier requiring categorical inputs can benefit.</p>
<p>The core idea is to replace raw data with a compact statistical portrait. Each user fits a class-conditional univariate Gaussian mixture model to every continuous attribute, estimating the parameters with the expectation–maximization algorithm; the number of mixture components grows only logarithmically, set to the ceiling of the base-two logarithm of the class&#8217;s local instance count. Every component of every mixture is distilled into what the authors call a representative, a quadruple carrying the component&#8217;s mean, its class label, its standard deviation and a weight equal to the number of original instances it stands for. The weights within a single user&#8217;s representative set sum exactly to the size of that user&#8217;s dataset, so the relative mass of the population is preserved even though the data itself is discarded. Intuitively, each representative behaves like a labeled, weighted and deliberately fuzzy data point whose standard deviation quantifies the uncertainty around its position. Users transmit only these representatives to the server, which unions them into a global set, runs a discretization algorithm over it and broadcasts the resulting cut points back to everyone.</p>
<p>The framework&#8217;s flexibility stems from the fact that different discretization algorithms can exploit different slices of the representative quadruple. The simplest adaptation, equal-width discretization, is unsupervised and uses only the means: it locates their minimum and maximum and divides that range into a requested number of equally sized bins, at a cost dominated by a single sort of the representatives. Equal-frequency discretization adds the weights, constructing a weighted empirical cumulative distribution function and placing cut points at its quantiles, so that each bin captures roughly the same share of the represented population. Entropy-based discretization brings in the class labels: it recursively evaluates candidate cuts by information gain and, following the Minimum Description Length principle, halts once further cuts are no longer justified. The most information-hungry variant, kernel density-based discretization, consumes everything, including the standard deviations. It rebuilds class-conditional density estimates in which every representative contributes an Epanechnikov kernel whose bandwidth scales with its own uncertainty, then places cut points exactly where the class-conditional densities intersect. A grid of candidate smoothing parameters is screened using the area under the ROC curve, and the whole procedure runs in time proportional to the number of global representatives times the square of its logarithm.</p>
<p>Whether such compressed cooperation can genuinely stand in for the real thing was tested on ten datasets drawn from the UCI repository, each containing at least ten thousand instances. The data were split into training and test sets; the training portion was discretized once centrally, with full access to every record, and once in federated mode, partitioned among many users each holding only a small local sample. A naive Bayes classifier was then trained on the resulting categorical data, and performance was scored with the area under the receiver operating characteristic curve, a metric suited to both balanced and imbalanced class distributions. Four federated configurations mirrored realistic deployments: ten or one hundred users, each holding fifty or one hundred instances. Every scenario was repeated ten times to capture statistical variability, and the centralized version of each algorithm served as the gold standard against which its federated counterpart was judged.</p>
<p>The verdict was strikingly favorable. The kernel density-based variant matched its centralized counterpart in thirty-three of the forty dataset-and-configuration combinations, or 82.5 percent, with equal-frequency discretization close behind, while the minimalist equal-width method still replicated the gold standard in 67.5 percent of the scenarios. Crucially, even where a federated policy fell short, the drop in AUC relative to centralized discretization never exceeded 0.05, a margin that rarely changes practical conclusions. This robustness held across ten and one hundred users alike, indicating graceful scaling as the federation grows and local fragments shrink. The results also carried an encouraging message about flexibility: because every adapted algorithm consumes a different subset of the representative information, practitioners can trade statistical fidelity against simplicity, and even the crudest option remained within striking distance of what a fully centralized pipeline would achieve.</p>
<p>Formal statistical analysis reinforced the picture. Following standard recommendations for comparing multiple algorithms, the team applied Wilcoxon signed-rank tests at a significance level of 0.05 to every pair of methods, with Shaffer&#8217;s static correction for multiple testing. The corrected results found no significant differences between the kernel-based and equal-frequency approaches, nor between the kernel-based and equal-width methods, and pointed to similar behavior between equal-width and entropy-based discretization. In other words, the choice among the four adaptations can be guided by communication budgets and deployment constraints rather than by raw accuracy alone. Supplementary experiments pushed the evaluation into harsher territory: settings where users&#8217; local data distributions are not independently and identically distributed, the scenario that most often degrades federated systems, plus multinomial naive Bayes and tree-augmented naive Bayes classifiers evaluated across five datasets. The discretization scheme proved resilient, withstanding the performance drops typical of such heterogeneity and confirming its versatility across different classifier implementations.</p>
<p>The broader payoff is threefold. Privacy is preserved by construction, since only mixture parameters, never records, cross the network boundary, an arrangement consistent with the standard federated paradigm in which models rather than data are shared. Communication overhead is minimal, because the uplink transmission of representatives happens only once and the server operates on a reduced summary instead of full datasets, an economy that matters when millions of devices or bandwidth-constrained institutions are involved. And the design is deliberately modular: any discretization algorithm, supervised or unsupervised, can in principle be adapted to operate on the representative set, and any classifier that needs categorical inputs can be trained downstream within standard federated machinery. In hospitals, where electronic health records are scattered across institutions that legally cannot pool them, or in industrial plants where sensor streams are dispersed across dozens of controllers, the framework removes a preprocessing bottleneck that has quietly constrained which models federated systems can even attempt. As machine learning pushes deeper into domains where data is sensitive, scattered and stubbornly continuous, work of this kind suggests the gap between centralized and privacy-preserving methods is narrowing toward practical irrelevance.</p>
<div class="scienmag-article-metadata"><strong>Subject of Research:</strong> A federated discretization framework that learns a shared global discretization policy from Gaussian mixture model representatives in a single communication round, enabling privacy-preserving supervised classification on continuous data.</p>
<p><strong>Article Title:</strong> Federated discretization for supervised classification</p>
<p><strong>Article References:</strong> Flores, J. L., Calvo, B., &amp; Pérez, A. (2026). Federated discretization for supervised classification. <em>Data Mining and Knowledge Discovery, 40</em>(5), Article 85. <a href="https://doi.org/10.1007/s10618-026-01247-2" target="_blank" rel="noopener noreferrer">https://doi.org/10.1007/s10618-026-01247-2</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s10618-026-01247-2" target="_blank" rel="noopener noreferrer">10.1007/s10618-026-01247-2</a></p>
<p><strong>Keywords:</strong> Federated learning, Discretization, Supervised classification, Gaussian mixture models, Kernel density estimation, Privacy-preserving machine learning, Naive Bayes classifier, Cut points, Communication efficiency, Area under the ROC curve</p>
</div>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">185542</post-id>	</item>
		<item>
		<title>Long-horizon local optimization and regularized knowledge improve personalized federated recommendation</title>
		<link>https://scienmag.com/long-horizon-local-optimization-and-regularized-knowledge-improve-personalized-federated-recommendation/</link>
		
		<dc:creator><![CDATA[Denise Maddox]]></dc:creator>
		<pubDate>Sun, 30 Aug 2026 03:42:29 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[collaborative filtering]]></category>
		<category><![CDATA[collaborative filtering in federated learning]]></category>
		<category><![CDATA[distributed machine learning]]></category>
		<category><![CDATA[distributed machine learning algorithms]]></category>
		<category><![CDATA[federated learning algorithms]]></category>
		<category><![CDATA[federated learning optimization]]></category>
		<category><![CDATA[federated recommendation accuracy improvement]]></category>
		<category><![CDATA[federated recommendation systems]]></category>
		<category><![CDATA[global knowledge injection in federated learning]]></category>
		<category><![CDATA[knowledge regularization techniques]]></category>
		<category><![CDATA[lightweight personalization techniques]]></category>
		<category><![CDATA[local model synchronization]]></category>
		<category><![CDATA[long-horizon local optimization]]></category>
		<category><![CDATA[long-horizon local optimization in federated learning]]></category>
		<category><![CDATA[long-horizon local training]]></category>
		<category><![CDATA[model-agnostic federated recommendation]]></category>
		<category><![CDATA[personalized federated learning]]></category>
		<category><![CDATA[personalized machine learning]]></category>
		<category><![CDATA[privacy-preserving data analysis]]></category>
		<category><![CDATA[privacy-preserving recommender systems]]></category>
		<category><![CDATA[recommendation accuracy enhancement]]></category>
		<category><![CDATA[regularized knowledge guidance]]></category>
		<category><![CDATA[regularized knowledge transfer]]></category>
		<category><![CDATA[scalable federated AI]]></category>
		<category><![CDATA[user-specific item representations]]></category>
		<category><![CDATA[user-specific recommendation models]]></category>
		<guid isPermaLink="false">https://scienmag.com/long-horizon-local-optimization-and-regularized-knowledge-improve-personalized-federated-recommendation/</guid>

					<description><![CDATA[Recommender systems trained across users&#039; own devices promise to keep private interaction histories off central servers, but a persistent tension has limited their usefulness: the more a model is personalized to an individual, the more]]></description>
										<content:encoded><![CDATA[<p>Recommender systems trained across users&#039; own devices promise to keep private interaction histories off central servers, but a persistent tension has limited their usefulness: the more a model is personalized to an individual, the more memory, computation, and communication it tends to demand. A new study published in the Journal of Intelligent Information Systems argues that much of this tension is self-inflicted by the way federated recommenders synchronize, and that a simple change of perspective—treating the length of local training as the primary lever of personalization—can deliver better accuracy with a lighter footprint.</p>
<p>The work, by Jaehyung Lim, Wonbin Kweon, Woojoo Kim, Junyoung Kim, Dongha Kim, and Hwanjo Yu, introduces FedRKG, short for Federated Recommendation with Regularized Knowledge Guidance. The framework is model-agnostic, meaning it can wrap around existing federated recommendation architectures rather than requiring a new model design. Its central claim, backed by both empirical analysis and a formal argument, is that user-specific item representations can form naturally when clients are allowed to train locally for long stretches of time, and that global knowledge should then be injected softly and intermittently rather than written over the local model.</p>
<p>Federated recommendation, or FedRec, emerged from federated learning, the training paradigm introduced by McMahan and colleagues in which a server coordinates models trained on distributed devices without collecting raw data. Privacy regulations such as the GDPR and CCPA have made this approach attractive for services that rely on sensitive behavioral records. But recommendation differs from generic federated tasks in an important way: the same item can mean different things to different users, and each client&#039;s interaction history is heavily non-IID. A single shared item embedding table, the kind a centralized matrix factorization model learns, forces one representation to reconcile conflicting preference signals across the whole population.</p>
<p>Early FedRec systems simply ported centralized models like matrix factorization and neural collaborative filtering into the federated setting. Later work split into two camps. Single-knowledge methods keep one persistent item embedding per client and try to add personalization through server-side machinery—user-relation graphs, preference-based grouping, item-similarity exchange, or personalized aggregation schemes. Dual-knowledge methods instead maintain separate local and global item representations on each device, doubling the item-embedding parameters from md to 2md, where m is the number of items and d the embedding dimension, and incurring further overhead when the split is implemented at the module level, as in variational autoencoder architectures. The authors note that both camps carry costs: server-side relational signals can indirectly reveal how clients or items are related, while persistent dual representations burden resource-constrained devices.</p>
<p>What neither camp examined closely, the team argues, is the local optimization horizon itself—how many rounds a client trains before the server intervenes. In most prior FedRec studies, synchronization happens after only one, two, or ten local rounds. The researchers&#039; motivational experiments, run on the Amazon-Video and LastFM-2K benchmarks with a federated matrix factorization backbone, show why this matters. As the synchronization interval grows, hit rate at rank ten improves during local training, indicating that client-side item embeddings gradually capture user-specific preference structures. But abrupt performance drops appear around synchronization rounds: replacing locally optimized embeddings with the server&#039;s global model destroys the personalization that has accumulated.</p>
<p>Visualization made the point concrete. Using t-SNE projections of item embeddings for individual LastFM-2K users, the authors compared frequent synchronization with an interval of one round against a longer horizon of fifty rounds. Under frequent synchronization, a user&#039;s interacted items were scattered and hard to distinguish from non-interacted ones; with the longer horizon, interacted items formed compact, separable clusters. Personalized structure, in other words, is something local training can build on its own—no server-side graph construction required.</p>
<p>A second set of experiments compared four synchronization strategies: full replacement with frequent aggregation, full replacement with intermittent aggregation, purely local training, and knowledge guidance. Full replacement performed poorly under both schedules, confirming that overwriting local embeddings is destructive. Local-only training preserved personalization but eventually plateaued, since it never benefits from shared collaborative trends. Knowledge guidance—softly pulling local embeddings toward a common global reference—achieved the best final performance and showed step-wise gains at each guidance round. A third analysis swept the guidance interval from one to two hundred rounds and found a sweet spot: performance improved up to moderate intervals around one hundred rounds, but very long intervals hurt, as clients over-specialized to local interactions while receiving stale global information.</p>
<p>These observations shaped FedRKG&#039;s design. In ordinary rounds, each client trains its personalized item embedding matrix, a private user embedding, and, if needed, a user-specific scoring function, minimizing a binary cross-entropy loss over positive interactions and sampled negatives. The user embedding and scoring function never leave the device; only item embeddings are exchanged. At every T_int rounds—more than fifty in practice, and one hundred in the main experiments—the server aggregates client item embeddings into a common global matrix using plain FedAvg-style averaging, with no client-specific personalization on the server side.</p>
<p>The synchronization itself is cast as a regularized optimization problem. Rather than replacing the local embedding, the client solves for a new embedding that minimizes a weighted sum of two discrepancy terms: distance from its own personalized state and distance from the global reference, balanced by a coefficient lambda. The global embedding thus acts as a soft anchor rather than a reset. The authors instantiate the discrepancy as squared Frobenius distance, which makes the solution a convex combination of the local and global matrices.</p>
<p>Because a single global anchor may not suit every user–item interaction equally, FedRKG adds Adaptive Guidance. A lightweight per-client gating network takes the local item embedding, the global embedding, and their difference, and outputs a gate value for each item. The gate scales the global anchor item by item: a neutral gate of 0.5 recovers the original global vector, while smaller or larger values attenuate or amplify it. The gate parameters are trained through truncated bi-level optimization. At a guidance round, the recommender&#039;s states are frozen via stop-gradient copies, and only the gate is optimized for a few inner steps to minimize the recommendation loss that would result after applying the guidance operator. The optimized gate is then used once to update the actual, unfrozen local embedding, which seeds the next long-horizon training phase. The temporary guided embedding used in the inner loop is never stored as the client&#039;s representation.</p>
<p>The paper also offers a theoretical rationale. Under mild assumptions—a nonnegative discrepancy measure and a local objective that is L-smooth and near-stationary after long local training—the authors prove that the regularized guidance target is no farther from the personalized local state than full replacement is, and no farther from the global reference than leaving the local state unchanged. A corollary quantifies the shock: with squared Frobenius discrepancy, replacement perturbs the local gradient by the full distance between local and global states, while guidance perturbs it by only a fraction lambda over one plus lambda of that distance. This formalizes why abrupt degradation follows naive synchronization even after long local training, and why guidance behaves as a bounded correction.</p>
<p>Evaluation covered four widely used benchmarks—Amazon-Video, FilmTrust, LastFM-2K, and MovieLens-1M—preprocessed with the same filtering thresholds as prior work (at least twenty interactions per user for ML-1M, ten for the others) and converted to implicit feedback. Interactions were split chronologically, with the most recent item for testing, the second most recent for validation, and the rest for training. Notably, the team ranked each test item against the entire set of unobserved items rather than the 99 sampled negatives used in much prior work, a stricter protocol that avoids inflating scores against an easy candidate pool. All methods shared an embedding dimension of 32, a batch size of 256, SGD updates, four sampled negatives per positive, and early stopping with patience of one hundred epochs. Results were averaged over five runs.</p>
<p>FedRKG outperformed centralized MF and NeuMF, a gap the authors attribute not to federated training being inherently better but to personalization capacity: client-specific item tables let the same item carry different meanings for different users. It also beat most single-knowledge baselines, including relation-graph, grouping, and similarity-exchange methods, and outperformed dual-knowledge models such as FedRAP, FedIAR, and the VAE-based FedAe in most cases—despite never persistently storing separate local and global embeddings. Ablations on Amazon-Video and LastFM-2K showed that removing long-horizon local optimization caused the largest degradation, with normalized discounted cumulative gain at rank five collapsing from 14.85 to under one when guidance operated without well-formed local structures. Setting lambda to infinity—full replacement—performed poorly, while lambda of zero, local-only training, was better but still inferior to the full framework. Dropping adaptive guidance left the model competitive but consistently worse.</p>
<p>Efficiency analysis reinforces the practical appeal. In typical rounds, each client stores (m+4)d+1 parameters—essentially one item embedding table plus small private vectors—roughly half the persistent footprint of dual-knowledge methods and far below FedCIA, which exchanges item-similarity matrices with quadratic O(m²) storage. Peak storage during a guidance round rises to (2m+4)d+1, still linear in items. Communication cost falls by a factor of T_int compared with methods that exchange embeddings every round, since transfers occur only once per guidance interval. Under partial participation, the authors show FedRKG is more communication-efficient than per-round baselines unless the client sampling ratio falls below roughly one over T_int—under two percent for typical intervals, an uncommon operating point.</p>
<p>Further analyses probed the guidance mechanism&#039;s behavior. Splitting Amazon-Video users into &quot;followers,&quot; who interact heavily with popular items, and &quot;distinct&quot; users with idiosyncratic tastes, the authors measured performance changes immediately after guidance rounds. Distinct users sometimes dipped slightly under plain knowledge guidance, while followers consistently improved; adaptive guidance shrank the dips for distinct users and amplified gains for followers, and a larger fraction of users improved overall. The guidance paradigm also proved model-agnostic in practice, consistently improving three different backbones—FedMF, FedNCF, and PFedRec—when integrated into them, supporting the claim that the mechanism is not tied to any particular architecture.</p>
<p>The authors address residual privacy concerns directly. Although raw interactions never leave devices, transmitted item-embedding updates can still encode preference information; a curious server that knows the previous embedding, the global reference, and lambda could reconstruct a client&#039;s accumulated local update. To counter this, they show FedRKG can be combined with local differential privacy: updates are clipped to a bounded norm and perturbed with Gaussian noise calibrated to the sensitivity and a target (epsilon, delta) budget, and the server aggregates only the privatized updates, with aggregation acting as post-processing that preserves the guarantee. Empirical results confirm utility and convergence under this mechanism.</p>
<div class="scienmag-article-metadata"><strong>Subject of Research:</strong> Technology and Engineering</p>
<p><strong>Article Title:</strong> Long-horizon local optimization and regularized knowledge improve personalized federated recommendation</p>
<p><strong>Article References:</strong> Lim, J., Kweon, W., Kim, W., Kim, J., Kim, D., &amp; Yu, H. (2026). Personalized federated recommendation via long-horizon local optimization and regularized knowledge guidance. <em>Journal of Intelligent Information Systems</em>. <a href="https://doi.org/10.1007/s10844-026-01089-w" target="_blank" rel="noopener noreferrer">https://doi.org/10.1007/s10844-026-01089-w</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s10844-026-01089-w" target="_blank" rel="noopener noreferrer">10.1007/s10844-026-01089-w</a></p>
<p><strong>Keywords:</strong> collaborative filtering, distributed machine learning, federated learning algorithms, federated recommendation systems, knowledge regularization techniques, long-horizon local optimization, personalized machine learning, privacy-preserving data analysis, recommendation accuracy enhancement, regularized knowledge transfer, scalable federated AI, user-specific recommendation models</p>
</div>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">185148</post-id>	</item>
	</channel>
</rss>
