<?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>bandwidth-efficient federated model training &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/bandwidth-efficient-federated-model-training/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Sat, 26 Sep 2026 00:24:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1.2</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>bandwidth-efficient federated model training &#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>Smarter Client Selection Cuts Federated Learning Costs and Thwarts Privacy Attacks</title>
		<link>https://scienmag.com/smarter-client-selection-cuts-federated-learning-costs-and-thwarts-privacy-attacks/</link>
		
		<dc:creator><![CDATA[Veronica Carney]]></dc:creator>
		<pubDate>Sat, 26 Sep 2026 00:24:41 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[adaptive participant selection methods]]></category>
		<category><![CDATA[addressing data heterogeneity in collaborative AI]]></category>
		<category><![CDATA[Applied Intelligence]]></category>
		<category><![CDATA[bandwidth-efficient federated model training]]></category>
		<category><![CDATA[client selection]]></category>
		<category><![CDATA[client selection strategies in federated learning]]></category>
		<category><![CDATA[combating privacy attacks in federated systems]]></category>
		<category><![CDATA[communication efficiency]]></category>
		<category><![CDATA[convergence analysis]]></category>
		<category><![CDATA[deep neural networks]]></category>
		<category><![CDATA[distributed optimization]]></category>
		<category><![CDATA[enhancing privacy security in decentralized AI]]></category>
		<category><![CDATA[federated learning]]></category>
		<category><![CDATA[federated learning optimization]]></category>
		<category><![CDATA[improving convergence speed in federated learning]]></category>
		<category><![CDATA[Machine learning]]></category>
		<category><![CDATA[membership inference attacks]]></category>
		<category><![CDATA[non-IID data]]></category>
		<category><![CDATA[phased client selection in machine learning]]></category>
		<category><![CDATA[POCS]]></category>
		<category><![CDATA[POCS client selection algorithm]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[privacy-preserving AI training]]></category>
		<category><![CDATA[reducing bandwidth in distributed AI]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=215603</guid>

					<description><![CDATA[A new phased client selection method for federated learning improves accuracy, cuts training time and communication costs, and strengthens defenses against membership inference attacks.]]></description>
										<content:encoded><![CDATA[<p>Federated learning has become one of the most important tools for training artificial intelligence systems without centralizing sensitive data, allowing millions of smartphones, hospitals, and other devices to build a shared model while their raw information never leaves the device. But the technique has persistent weaknesses: it hogs bandwidth with round after round of model exchanges, converges slowly when data is spread unevenly across participants, and remains vulnerable to attacks that can leak private information from the updates themselves. A new study published in Applied Intelligence by Xuerui Li and Chunming Qiao of the University at Buffalo and Yangming Zhao of the University of Science and Technology of China argues that a surprising amount of these problems can be solved with one deceptively simple idea: choose different clients to train on at different stages of the learning process.</p>
<p>The researchers call their method POCS, short for Phased Optimal Client Selection. Rather than selecting participants randomly, or applying the same selection rule in every training round, POCS tailors its selection strategy to the phase the model is in. Early on, when the model is most impressionable, it recruits a carefully chosen representative set. In the middle of training, it filters out low-value updates. Near convergence, it deliberately seeks out clients whose updates are as diverse as possible, squeezing out the last improvements to accuracy.</p>
<p>The motivation comes from an observation made in earlier work on what researchers call critical learning phases. Deep neural networks, it turns out, are acutely sensitive to what happens during their first few training rounds. If the model learns from low-quality or unrepresentative data at the start, that damage can never fully be repaired later. One prior approach, CriticalFL, tried to exploit this by enrolling more clients in the first twenty rounds and fewer afterward. But flooding the server with participants early creates uplink congestion, and clients that fail to finish their local training or fall prey to adversaries can poison the whole global model. Conversely, shrinking participation too aggressively near the end starves the model of the varied information it still needs.</p>
<p>POCS attacks the early phase with a combination of clustering and median-gradient selection. Before training begins, the server groups clients according to their data distributions, and it re-clusters whenever clients join or leave. Within each cluster, it identifies a representative client whose gradients sit close to the median of the group, on the mathematical logic that a single well-chosen device can approximate the collective contribution of its entire cluster. The method builds on a formal bound showing that the difference between the full gradient of all clients and the weighted gradient of a selected subset can be controlled by minimizing, for every client, the distance to the nearest selected one. This turns client selection into a constrained maximization problem that a sub-modular optimization approach can solve efficiently. The framework also incorporates the team&#8217;s earlier robust client selection and replacement technique, RCSR, which identifies problematic clients that drop out or misbehave and substitutes normal clients with similar data distributions to avoid biasing the model.</p>
<p>After the critical first rounds, the challenge shifts. Gradient norms shrink as the model improves, so many updates carry little useful signal while still costing bandwidth. POCS therefore applies an adaptive threshold to decide which clients should upload at all. Rather than a fixed cutoff, the threshold follows an Ornstein-Uhlenbeck process, a Gauss-Markov model from stochastic physics that naturally decays toward a mean, mirroring how stochastic gradient descent itself drifts toward a minimum. Parameters of this process are tuned with a multi-armed bandit algorithm, so the system learns in real time which cutoffs capture meaningful updates without discarding information the model still needs.</p>
<p>A notable strength of the work is that the authors prove their algorithm converges, a step that fewer than ten percent of client selection papers in the field take. Under the assumptions that each objective function is smooth and strongly convex, that gradient variances are bounded, and that the selected subset approximates the full population&#8217;s gradients within a bounded error, they show the expected distance to the optimal model shrinks on the order of one over the number of rounds, plus a term governed by the approximation error. In other words, being selective does not break the mathematics of federated learning; it merely shifts the fixed point by a controlled amount.</p>
<p>To test the method empirically, the team ran experiments on CIFAR-10, Fashion-MNIST, and the Shakespeare text dataset, using ResNet-18, AlexNet, VGG-11, and LSTM architectures. Crucially, they simulated the non-I.I.D. conditions of real federated deployments by partitioning data across clients according to a Dirichlet distribution, with skewness parameters ranging from 0.1 to 0.3. Each configuration was run five times on GeForce RTX Titan GPUs and the results averaged. The experiments confirmed that twenty critical training rounds strike the best balance, so that number anchors the method&#8217;s first phase.</p>
<p>Against five state-of-the-art competitors, including FedPod, DynamicFL, FedHD, DPFL-BCS, and BSFL, POCS came out ahead on every metric tested. It achieved higher final accuracy on all three datasets and at all levels of data heterogeneity, and the advantage grew as the data became more skewed across clients. It also reached target accuracies in fewer training rounds and accumulated lower communication costs by the time the model converged, a direct consequence of sending fewer, better-chosen updates over the network. In settings where bandwidth and battery life are the limiting resources, those savings translate into meaningfully cheaper deployments.</p>
<p>Perhaps the most striking result concerns privacy. Membership inference attacks attempt to determine whether a particular data record was used in training, exploiting traces left in model updates. Because federated learning servers aggregate updates from many clients, a single compromised or vulnerable participant can expose information about everyone&#8217;s data. The researchers tested POCS against this threat in a deliberately harsh worst-case scenario, telling the attackers exactly which clients were invulnerable and which defense was in place. Even so, POCS reduced the success rate of membership inference attacks compared with FedPod on both image datasets. The mechanism is straightforward: because the server selects clients judiciously and filters the updates it accepts, updates from vulnerable devices simply never reach the aggregate. The team also found that attack accuracy barely changed whether measured at round twenty or at the end of training, suggesting the protection holds throughout the process.</p>
<p>The work does not claim to have solved federated learning&#8217;s every problem. The authors note that performance under severe non-I.I.D. conditions remains a target for future improvement, and the theoretical guarantees apply to the strongly convex setting rather than the fully general deep learning case. Still, the core insight is likely to influence how the field thinks about training orchestration: the composition of participants should evolve with the model, not stay fixed. As federated learning scales toward the massive, heterogeneous fleets of devices envisioned for next-generation privacy-preserving AI, techniques like POCS suggest that the biggest gains may come not from smarter models, but from smarter decisions about who gets to teach them.</p>
<p><strong>Subject of Research:</strong> Phased client selection strategies to improve efficiency and privacy in federated learning</p>
<p><strong>Article Title:</strong> POCS: phased optimal client selection for federated learning</p>
<p><strong>Article References:</strong> Li, X., Zhao, Y., &amp; Qiao, C. (2026). POCS: phased optimal client selection for federated learning. <em>Applied Intelligence, 56</em>(15), Article 448. <a href="https://doi.org/10.1007/s10489-026-07462-0" rel="noopener noreferrer">https://doi.org/10.1007/s10489-026-07462-0</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s10489-026-07462-0" rel="noopener noreferrer">10.1007/s10489-026-07462-0</a></p>
<p><strong>Keywords:</strong> federated learning, client selection, POCS, machine learning, communication efficiency, membership inference attacks, non-IID data, convergence analysis, privacy, distributed optimization, deep neural networks, Applied Intelligence</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">215603</post-id>	</item>
	</channel>
</rss>
