Wednesday, September 9, 2026
Science
No Result
View All Result
  • Login
  • HOME
  • SCIENCE NEWS
  • CONTACT US
  • HOME
  • SCIENCE NEWS
  • CONTACT US
No Result
View All Result
Scienmag
No Result
View All Result
Home Science News Technology and Engineering

Fisher-guided personalized federated learning using efficient packed homomorphic aggregation

September 9, 2026
in Technology and Engineering
Veronica Carney
By Veronica Carney Scienmag Editorial Profile - Federated Learning
Reading Time: 6 mins read
0
Fisher-guided personalized federated learning using efficient packed homomorphic aggregation

Fisher-guided personalized federated learning using efficient packed homomorphic aggregation

65
SHARES
587
VIEWS
Share on FacebookShare on Twitter
ADVERTISEMENT

Artificial intelligence systems are increasingly trained on data that never leaves the devices where it is created—hospital servers holding sensitive patient scans, smartphones carrying private photos, and industrial sensors capturing proprietary information. This approach, known as federated learning, promises collaboration without exposure: a central server coordinates a shared model while each participant keeps its raw data at home. But researchers have long known that the guarantee is weaker than it sounds. An “honest-but-curious” server that inspects the model updates flowing toward it can often reconstruct glimpses of the underlying private data. A new study published in Complex & Intelligent Systems tackles this privacy gap head-on, presenting a framework called FedFIHE that pairs a mathematically principled method for deciding what to share with an encryption scheme efficient enough to run in practice.

The work, led by Zijian Yao of Hangzhou Normal University together with collaborators at Westlake University, including Qiqi Liu and corresponding author Xiumei Li, addresses a tension that has stymied privacy-preserving federated learning for years. Personalized federated learning, or PFL, allows each client to adapt a model to its own local data distribution—for example, a hospital whose patients differ demographically from those of every other hospital. Typical PFL methods split the model into two parts: a subset of parameters that is sent to the server for global aggregation, and the rest that stays local for personalization. The trouble is that the choice of what to share is usually made heuristically, and the shared portion can still leak private information. Moreover, if one tries to hide the shared parameters using homomorphic encryption—a cryptographic technique that allows computation directly on encrypted values—the communication and computation costs can balloon to the point of being unusable, particularly when different clients choose to share different parts of the model.

FedFIHE attacks both problems simultaneously, and the first half of its solution draws on a classical concept from information theory and statistical learning: Fisher information. The Fisher information matrix measures how sensitive a model’s likelihood is to changes in each of its parameters. In practical terms, a parameter with high Fisher information is one the model relies on heavily to fit the data; disturbing it would sharply change performance. Conversely, parameters with low Fisher information contribute less to the model’s fit on any particular client’s data. The researchers exploit this by having each client compute Fisher-information scores across its network and use them to adaptively partition the model. Parameters deemed most informative in a global sense become candidates for sharing and aggregation, while the remainder are retained locally for personalization. Because the partitioning is guided by the data’s actual statistical structure rather than arbitrary rules, the shared subset tends to carry the generalizable knowledge that benefits all clients while the private, idiosyncratic details stay behind.

This Fisher-guided partitioning does more than improve accuracy under heterogeneous data—it also reduces the surface area for privacy attacks. Since the parameters most strongly tied to any individual client’s private data distribution are preferentially kept local, an inquisitive server sees a filtered version of each model that carries less identifying signal. The team reports that this design effectively mitigates privacy leakage compared with approaches in which clients share large or arbitrarily chosen portions of their models, while still delivering personalized performance that is better than or comparable to strong baseline methods.

The second half of the framework confronts the encryption bottleneck directly. Homomorphic encryption schemes, such as the lattice-based methods commonly used in privacy-preserving machine learning, allow a server to add ciphertexts together—which is exactly what federated averaging requires—without ever decrypting them. The catch is that encrypted values are bulky and expensive to process. If clients could agree on a single shared set of parameters, encrypting just that subset would be manageable. But in personalized federated learning, each client’s Fisher-guided selection may differ, and the union of many clients’ selections can approach the whole model. Naively, the server would have to encrypt and aggregate nearly everything, destroying the efficiency gains the partitioning was supposed to provide.

FedFIHE’s answer is a packet-level selective encrypted aggregation scheme with a clever twist of voting. Each client first packs its model parameters into fixed-size packets—containers that bundle many individual weights together. The client then applies a binary mask indicating which packets contain parameters selected for sharing, ranks the packets, and uploads only the top-κ packets by its selection score, along with those binary masks. When the packets arrive, the server performs what the authors call mask voting: it tallies, across all clients, which packet positions were most frequently selected. Only those consensus positions—the packets that a sufficient number of clients chose—are aggregated in ciphertext and broadcast back. The rest are simply never touched by the encrypted pipeline.

The elegance of this design lies in how it handles disagreement. In previous selective-sharing approaches, inconsistent sparse selections across clients meant that the union of selected positions grew with the number of participants, and the server’s encrypted workload grew with it. Mask voting caps this cost by construction: no matter how differently the clients choose, only the most popular packet positions enter the encrypted aggregation, so the server’s workload stays bounded and predictable. The binary masks themselves are lightweight to transmit, and packing many parameters per packet amortizes the overhead of ciphertext expansion over hundreds or thousands of individual weights. The result, according to the authors, is encrypted training that remains efficient even under high sparsity—situations where clients share only a small fraction of their model—precisely the regime where naive schemes become prohibitively expensive.

The research team validated FedFIHE through extensive experiments on both natural image benchmarks and medical datasets, a deliberate choice reflecting the framework’s target use cases. Healthcare is arguably the most compelling arena for federated learning: hospitals cannot pool patient records, yet diagnostic models would benefit enormously from learning across institutions. The medical data experiments showed that FedFIHE preserves its privacy and efficiency advantages on realistic clinical distributions, where data heterogeneity between clients is typically severe. Across the evaluation suite, the method mitigated privacy leakage while achieving personalized accuracy that matched or exceeded strong baselines, and it retained its robustness even when the degree of selective sharing was pushed to high sparsity levels.

The significance of the work extends beyond any single benchmark. Federated learning has been deployed at scale by major technology companies for mobile keyboard prediction and other on-device applications, and national health initiatives have explored cross-institutional model training for rare-disease detection. In all of these settings, the honest-but-curious threat model is not hypothetical: gradient-inversion attacks have demonstrated that raw training data can sometimes be reconstructed from shared updates with startling fidelity. Privacy researchers have responded with a toolbox of defenses—differential privacy adds calibrated noise, secure multi-party computation distributes trust, and homomorphic encryption hides values entirely—but each carries costs in accuracy, coordination complexity, or computational overhead. FedFIHE’s contribution is to show that a statistically principled sharing policy can shrink the encrypted workload enough to make homomorphic encryption practical for personalized models, rather than treating privacy and utility as a simple trade-off.

The technical machinery is worth appreciating in its own right. Fisher information has historically served as the foundation for natural gradient optimization and for understanding which weights matter most when pruning neural networks. Repurposing it as a privacy-aware routing mechanism—deciding which parameters travel to the server and which stay home—is a novel application of a decades-old tool. Meanwhile, the mask-voting protocol echoes ideas from consensus systems: instead of forcing clients to agree in advance on what to share, the system tolerates disagreement and resolves it after the fact, cheaply, in the clear. Only the agreed-upon ciphertext positions incur the heavy cost of homomorphic computation. The combination means the strongest cryptographic protection is applied where the most clients have converged, and the sparser, more personal corners of each model remain local by design.

The authors are candid that the framework is aimed at privacy-sensitive applications such as healthcare, and the experimental evidence on medical datasets supports that positioning. Because FedFIHE is compatible with heterogeneous data—each client personalizes its own model after receiving the aggregated global portion—it does not require the unrealistic assumption that all participants draw from the same distribution. That flexibility, combined with bounded communication costs, makes the approach a candidate for real deployments where hospitals, research consortia, or mobile networks must cooperate without exposing patient or user data to the coordinating server.

The study was supported in part by the China-Croatia bilateral science and technology cooperation project, the Hangzhou Joint Fund of the Zhejiang Provincial Natural Science Foundation of China, and the Xinmiao Talent Program of Zhejiang Province. Published open access, the research is available to any institution weighing whether privacy-preserving collaborative learning is ready to leave the laboratory. For a field that has spent a decade watching the gap between cryptographic promises and practical constraints, FedFIHE offers evidence that the gap can be narrowed—parameter by parameter, packet by packet, and vote by vote.

Subject of Research: Privacy-preserving personalized federated learning, combining Fisher-information-guided adaptive parameter partitioning with an efficient packed homomorphic encryption aggregation scheme to prevent privacy leakage under an honest-but-curious server.

Subject of Research: Technology and Engineering

Article Title: Fisher-guided personalized federated learning with efficient packed homomorphic aggregation

Article References: Yao, Z., Liu, Q., Li, X., Zhang, H., Sun, J., & Jin, Y. (2026). Fisher-guided personalized federated learning with efficient packed homomorphic aggregation. Complex & Intelligent Systems. https://doi.org/10.1007/s40747-026-02473-3

Image Credits: AI Generated

DOI: 10.1007/s40747-026-02473-3

Keywords: Personalized federated learning, Privacy preservation, Fisher information, Homomorphic encryption, Selective encrypted aggregation, Mask voting, Data heterogeneity, Healthcare machine learning, Encrypted aggregation, Communication efficiency

Cite Scienmag News

Veronica Carney. (September 9, 2026). Fisher-guided personalized federated learning using efficient packed homomorphic aggregation. Scienmag. https://scienmag.com/fisher-guided-personalized-federated-learning-using-efficient-packed-homomorphic-aggregation/

Veronica Carney. "Fisher-guided personalized federated learning using efficient packed homomorphic aggregation." Scienmag, 9 September 2026, https://scienmag.com/fisher-guided-personalized-federated-learning-using-efficient-packed-homomorphic-aggregation/. Accessed 9 September 2026.

Veronica Carney. "Fisher-guided personalized federated learning using efficient packed homomorphic aggregation." Scienmag. September 9, 2026. https://scienmag.com/fisher-guided-personalized-federated-learning-using-efficient-packed-homomorphic-aggregation/

Tags: collaborative AI on sensitive dataefficient cryptographic protocols for AIefficient packed homomorphic encryptionencrypted data sharing in AIencrypted model aggregationfederated learningfederated learning for healthcare datafederated learning privacy challengesfederated learning with sensitive industrial dataFedFIHE frameworkFisher-guided federated learning methodshomomorphic encryption for federated learninghomomorphic encryption in federated learningmodel personalization in federated learningmodel update privacy in federated learningpersonalized federated learningprivacy gap in federated systemsprivacy-preserving federated learningprivacy-preserving machine learningsecure model aggregationsecure model update sharing
Share26Tweet16
Previous Post

FastGTDLP: New algorithm tackles small-exponent discrete logarithms in group GT

Next Post

New indicator framework links climate adaptation to human security in Thailand

Related Posts

New deep learning model screens autism from facial features during attention tasks
Technology and Engineering

New deep learning model screens autism from facial features during attention tasks

September 9, 2026
WaveLab Studio: Lightweight software for interactive 2D wave propagation experiments
Technology and Engineering

WaveLab Studio: Lightweight software for interactive 2D wave propagation experiments

September 9, 2026
FastGTDLP: New algorithm tackles small-exponent discrete logarithms in group GT
Technology and Engineering

FastGTDLP: New algorithm tackles small-exponent discrete logarithms in group GT

September 9, 2026
New multi-scale cross-modal method improves water surface scene registration
Technology and Engineering

New multi-scale cross-modal method improves water surface scene registration

September 9, 2026
Improved differential evolution using fitness-guided mutation and diversity enhancement
Technology and Engineering

Improved differential evolution using fitness-guided mutation and diversity enhancement

September 9, 2026
Predictors of Loan Success and Default in Chinese Microfinance Portfolio
Technology and Engineering

Predictors of Loan Success and Default in Chinese Microfinance Portfolio

September 9, 2026
Next Post
New indicator framework links climate adaptation to human security in Thailand

New indicator framework links climate adaptation to human security in Thailand

  • Mothers who receive childcare support from maternal grandparents show more optimized

    Mothers who receive childcare support from maternal grandparents show more parental warmth, finds NTU Singapore study

    27656 shares
    Share 11059 Tweet 6912
  • University of Seville Breaks 120-Year-Old Mystery, Revises a Key Einstein Concept

    1061 shares
    Share 424 Tweet 265
  • Bee body mass, pathogens and local climate influence heat tolerance

    682 shares
    Share 273 Tweet 171
  • Researchers record first-ever images and data of a shark experiencing a boat strike

    546 shares
    Share 218 Tweet 137
  • Groundbreaking Clinical Trial Reveals Lubiprostone Enhances Kidney Function

    531 shares
    Share 212 Tweet 133
Science

Embark on a thrilling journey of discovery with Scienmag.com—your ultimate source for cutting-edge breakthroughs. Immerse yourself in a world where curiosity knows no limits and tomorrow’s possibilities become today’s reality!

RECENT NEWS

  • Microplastics in Food Systems: Sources, Exposure Routes, and Gut Health Impacts
  • Machine learning optimizes Dendrobium officinale fermentation for enhanced antioxidant activity
  • Cloud AI platform links rice grain traits to genes for crop improvement
  • New deep learning model screens autism from facial features during attention tasks

Categories

  • Agriculture
  • Anthropology
  • Archaeology
  • Athmospheric
  • Biology
  • Biotechnology
  • Blog
  • Bussines
  • Cancer
  • Chemistry
  • Climate
  • Earth Science
  • Editorial Policy
  • Marine
  • Mathematics
  • Medicine
  • Pediatry
  • Policy
  • Psychology & Psychiatry
  • Science Education
  • Social Science
  • Space
  • Technology and Engineering

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 5,151 other subscribers

© 2025 Scienmag - Science Magazine

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • HOME
  • SCIENCE NEWS
  • CONTACT US

© 2025 Scienmag - Science Magazine

Discover more from Science

Subscribe now to keep reading and get access to the full archive.

Continue reading