<?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>distributed AI training optimization &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/distributed-ai-training-optimization/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Sat, 12 Sep 2026 21:48:41 +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>distributed AI training optimization &#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>Entropy-Aware Gating Boosts Privacy and Speed in Federated Learning</title>
		<link>https://scienmag.com/entropy-aware-gating-boosts-privacy-and-speed-in-federated-learning/</link>
		
		<dc:creator><![CDATA[Veronica Carney]]></dc:creator>
		<pubDate>Sat, 12 Sep 2026 21:48:41 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[attention aggregation]]></category>
		<category><![CDATA[backdoor attack]]></category>
		<category><![CDATA[Cluster Computing]]></category>
		<category><![CDATA[communication efficiency]]></category>
		<category><![CDATA[data diversity measurement in federated systems]]></category>
		<category><![CDATA[Data Privacy]]></category>
		<category><![CDATA[differential privacy]]></category>
		<category><![CDATA[distributed AI training optimization]]></category>
		<category><![CDATA[dynamic gating]]></category>
		<category><![CDATA[entropy]]></category>
		<category><![CDATA[entropy-aware model training]]></category>
		<category><![CDATA[entropy-based gating in AI models]]></category>
		<category><![CDATA[FedEntGate framework for federated learning]]></category>
		<category><![CDATA[federated learning]]></category>
		<category><![CDATA[federated learning privacy]]></category>
		<category><![CDATA[federated learning security enhancements]]></category>
		<category><![CDATA[information theory in machine learning]]></category>
		<category><![CDATA[Machine learning]]></category>
		<category><![CDATA[non-IID data]]></category>
		<category><![CDATA[non-IID data challenges in federated learning]]></category>
		<category><![CDATA[privacy leakage mitigation techniques]]></category>
		<category><![CDATA[privacy-preserving gradient sharing]]></category>
		<category><![CDATA[Rényi differential privacy]]></category>
		<category><![CDATA[speed and accuracy improvement in federated learning]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=198848</guid>

					<description><![CDATA[A new federated learning framework called FedEntGate uses entropy-aware dynamic gating and adaptive differential privacy to cut communication overhead by about 75 percent, raise accuracy by 6.6 percent over the strongest baseline, and suppress backdoor attacks below 9.7 percent under strict privacy constraints.]]></description>
										<content:encoded><![CDATA[<p>Federated learning has long promised a way for hospitals, banks, and phone manufacturers to train shared artificial intelligence models without ever moving sensitive raw data off the devices where it lives. Instead of pooling patient records or transaction histories in a central server, each participant trains locally and sends only model updates, or gradients, to an aggregator. Yet in practice the promise has been hard to keep. Real-world data are messy and skewed across participants, a condition researchers call non-independent and identically distributed, or Non-IID, which slows convergence and degrades accuracy. At the same time, the gradients themselves can leak information, forcing developers to inject privacy-protecting noise that further weakens the model. A new framework called FedEntGate, described in the journal Cluster Computing, argues that these problems can be tackled together rather than one at a time.</p>
<p>Developed by Weibai Zhou, Rong Li, and Dan Huan of Guangzhou College of Commerce, FedEntGate uses a deceptively simple quantity from information theory as its organizing principle: entropy. Each client computes the information entropy of its local dataset, a compact statistical fingerprint that reflects how diverse or homogeneous the data are. A client with highly varied, information-rich data tends to produce updates that are more valuable to the global model, while a client with redundant or repetitive samples contributes little new information. Rather than treating every participant equally, the framework uses this entropy signal to decide, round by round, which clients should bother uploading their gradients at all.</p>
<p>The first pillar of the system is an entropy-aware dynamic gating strategy. Before transmitting anything, a client compares its entropy-sanitized value against a threshold derived from the historical profile of low-entropy, or data-poor, participants. If the value falls below the gate, the client stays silent and uploads nothing; if it passes, the gradient channel opens. This filtering happens at the source, meaning low-quality or redundant updates never enter the network. The consequence is a dramatic reduction in communication. In experiments, roughly three quarters of the upload overhead was eliminated compared with standard baselines, a figure that matters enormously in settings where thousands of constrained devices, such as smartphones or edge sensors, share limited bandwidth.</p>
<p>The second pillar addresses the privacy-utility tension that has haunted differentially private training for years. Conventional approaches apply a uniform amount of Gaussian noise to every client&#8217;s gradient, calibrated to a single privacy budget. The result is that clients with rich, informative data are perturbed just as heavily as clients with trivial updates, and the global model suffers. FedEntGate replaces this blunt instrument with an entropy-guided adaptive noise-injection mechanism that establishes a value-aware mapping between data utility and differential privacy budgets. Clients whose entropy signals indicate higher contribution receive less aggressive perturbation, while noisier or less informative participants absorb more, so the total privacy guarantee remains rigorous but the accuracy penalty is distributed more intelligently.</p>
<p>Crucially, the gating decision and the final aggregation are jointly driven by the same differentially private entropy values, transmitted as lightweight real-time metadata. The gate determines whether gradients are uploaded at all, while the entropy values themselves form the aggregation weights through a Softmax function. This design ensures mathematical consistency between who is heard and how loudly they are counted, and it achieves what the authors describe as rigorous privacy-communication decoupling: the communication savings come from suppression at the source, while the privacy accounting proceeds along separate, formally composed channels.</p>
<p>The privacy argument is not hand-waved. In an appendix, the authors provide a formal proof under Rényi differential privacy, decomposing each client&#8217;s randomized mechanism into two channels. The gradient channel applies the Gaussian mechanism to clipped gradients, whose sensitivity under substitution adjacency is bounded at twice the clipping norm, yielding a per-round Rényi cost proportional to the inverse squared noise multiplier. The metadata channel, which reveals the binary gate state and conditionally the sanitized entropy, has its own bounded cost derived from the sensitivity of normalized entropy, capped at one over the natural logarithm of the number of classes. Because both channels draw on the same underlying dataset, the sequential composition theorem combines their costs into a single, provable guarantee for every round.</p>
<p>The empirical evaluation, conducted on CIFAR-10 under strict privacy constraints, delivers some of the framework&#8217;s most eye-catching numbers. Against the strongest baseline, a participant-selection method called FedEx, FedEntGate improved test accuracy by 6.6 percent, cut communication overhead by approximately 75 percent, and suppressed backdoor attack success rates to below 9.7 percent. That last figure deserves emphasis. Backdoor attacks are among the most insidious threats in federated learning: a malicious participant embeds hidden triggers in the shared model that cause it to misbehave on attacker-chosen inputs while appearing accurate on ordinary data. By weighting aggregation toward genuinely informative, high-entropy updates and filtering out suspicious or redundant contributors, the framework raises the bar for such poisoning attempts without resorting to heavyweight cryptographic defenses.</p>
<p>The authors frame these combined results as pushing forward the practical Pareto frontier, the boundary of achievable trade-offs among three competing objectives that have usually been pursued in isolation: model accuracy, privacy assurance, and communication efficiency. Previous systems typically optimized one axis while quietly sacrificing another, accepting slower convergence for stronger privacy or leaking a little more information for better accuracy. FedEntGate&#8217;s claim is that entropy, measured locally and shared in sanitized form, provides a common currency that lets a single mechanism manage all three at once. Experiments also drew on publicly available medical and financial datasets, including Medical-MNIST and a credit card fraud dataset, underscoring the framework&#8217;s targeting of privacy-sensitive domains.</p>
<p>The implications extend well beyond a single benchmark. In healthcare, where patient records are legally protected and siloed across institutions, federated learning could unlock diagnostic models trained on populations no single hospital could assemble, provided that privacy guarantees are mathematically airtight and communication costs are bearable. In finance, where fraud patterns shift across regions and customer bases, selectively aggregating the most informative local updates could accelerate detection while keeping transaction data at home. The release of the implementation code and trained models on the Gitee repository, alongside the public datasets used in the study, lowers the barrier for other teams to stress-test the approach on their own heterogeneous data.</p>
<p>Caveats remain, as they always do in fast-moving research. The headline results were obtained on CIFAR-10 under particular privacy settings, and scaling to very large client populations, adversarial entropy fabrication, or domains with different data structures will demand further validation. An adversary might, in principle, inflate its reported entropy to win attention, though the differential privacy noise on the metadata channel complicates such manipulation. Still, the core idea, that a cheap information-theoretic statistic computed on-device can orchestrate who speaks, how much noise they carry, and how much they count, is an elegant piece of systems design. If entropy truly is the common currency of heterogeneous learning, FedEntGate suggests that spending it wisely can buy accuracy, privacy, and bandwidth at the same time, moving privacy-preserving collaborative intelligence closer to everyday deployment.</p>
<p><strong>Subject of Research:</strong> Entropy-aware dynamic gating and adaptive differential privacy for heterogeneous federated learning</p>
<p><strong>Article Title:</strong> FedEntGate: synergistic attention optimization of entropy-aware dynamic gating and differential privacy in heterogeneous federated learning</p>
<p><strong>Article References:</strong> FedEntGate: synergistic attention optimization of entropy-aware dynamic gating and differential privacy in heterogeneous federated learning. (n.d.). <a href="https://doi.org/10.1007/s10586-026-06539-2" rel="noopener noreferrer">https://doi.org/10.1007/s10586-026-06539-2</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s10586-026-06539-2" rel="noopener noreferrer">10.1007/s10586-026-06539-2</a></p>
<p><strong>Keywords:</strong> federated learning, differential privacy, Non-IID data, entropy, dynamic gating, backdoor attack, communication efficiency, attention aggregation, data privacy, machine learning, Rényi differential privacy, cluster computing</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">198848</post-id>	</item>
	</channel>
</rss>
