Papers › DapperFL: Domain Adaptive Federated Learning with Model Fusion Pruning for Edge Devices

DapperFL: Domain Adaptive Federated Learning with Model Fusion Pruning for Edge Devices

8 Dec 2024arXiv:2412.05823archive 2025-07-28

Yongzhe Jia, Xuyun Zhang, Hongsheng Hu, Kim-Kwang Raymond Choo, Lianyong Qi, Xiaolong Xu, Amin Beheshti, Wanchun Dou

Federated learning (FL) has emerged as a prominent machine learning paradigm in edge computing environments, enabling edge devices to collaboratively optimize a global model without sharing their private data. However, existing FL frameworks suffer from efficacy deterioration due to the system heterogeneity inherent in edge computing, especially in the presence of domain shifts across local data. In this paper, we propose a heterogeneous FL framework DapperFL, to enhance model performance across multiple domains. In DapperFL, we introduce a dedicated Model Fusion Pruning (MFP) module to produce personalized compact local models for clients to address the system heterogeneity challenges. The MFP module prunes local models with fused knowledge obtained from both local and remaining domains, ensuring robustness to domain shifts. Additionally, we design a Domain Adaptive Regularization (DAR) module to further improve the overall performance of DapperFL. The DAR module employs regularization generated by the pruned model, aiming to learn robust representations across domains. Furthermore, we introduce a specific aggregation algorithm for aggregating heterogeneous local models with tailored architectures and weights. We implement DapperFL on a realworld FL platform with heterogeneous clients. Experimental results on benchmark datasets with multiple domains demonstrate that DapperFL outperforms several state-of-the-art FL frameworks by up to 2.28%, while significantly achieving model volume reductions ranging from 20% to 80%. Our code is available at: https://github.com/jyzgh/DapperFL.

PaperPDFCodeCode Syntology ran

In Syntology View this paper on Syntology: its repositories, every harvested function with whether it ran, its licence and the call to fetch it.

Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2412.05823")

Code

Syntology Ran 8 of 14 code samples harvested from 1 repository linked to this paper; 6 have no recorded run. Of those that ran: 1 ran · our draft was wrong; 7 ran with no contract checked.

By repository: official repository: 14 samples from 1 repository, 8 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

jyzgh/dapperfl officialmentioned in paperpytorchApache-2.0 report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

14 samples harvested; 8 ran; 0 honoured the contract we drafted; 6 have no recorded run. Read from Syntology's graph 2026-09-25; that is when this build read the record, not when the samples ran.

1ran · our draft was wrong
7ran
6unverified

Licence: 0 of the 14 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from jyzgh/DapperFL. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

EfficientNetB0 jyzgh/DapperFL/fedml_api/standalone/domain_generalization/backbone/efficientnet.py official repository ran Apache-2.0 (permissive) · 2180c5c9d20d008c · report
checkpoint_path jyzgh/dapperfl/fedml_api/standalone/domain_generalization/models/dapperfl.py official repository ran Apache-2.0 (permissive) · ec4b6401ff6c8b58 · report
conv3x3 jyzgh/DapperFL/fedml_api/standalone/domain_generalization/backbone/ResNet.py official repository ran Apache-2.0 (permissive) · 4c2989ace7c5c0da · report
drop_connect jyzgh/DapperFL/fedml_api/standalone/domain_generalization/backbone/efficientnet.py official repository ran fingerprinted Apache-2.0 (permissive) · 4304a326c593f8db · report
get_device jyzgh/dapperfl/fedml_api/standalone/domain_generalization/models/dapperfl.py official repository ran · our draft was wrong Apache-2.0 (permissive) · 2cdbf21475a4d35c · report
resnet10 jyzgh/DapperFL/fedml_api/standalone/domain_generalization/backbone/ResNet.py official repository ran Apache-2.0 (permissive) · 69eda881263de4b4 · report
resnet12 jyzgh/DapperFL/fedml_api/standalone/domain_generalization/backbone/ResNet.py official repository ran Apache-2.0 (permissive) · d74ecd8345a7fed8 · report
swish jyzgh/DapperFL/fedml_api/standalone/domain_generalization/backbone/efficientnet.py official repository ran fingerprinted Apache-2.0 (permissive) · 8737c82de631cffc · report
DapperFL jyzgh/dapperfl/fedml_api/standalone/domain_generalization/models/dapperfl.py official repository unverified Apache-2.0 (permissive) · 702c73ddfe6744bb · report
FederatedModel jyzgh/dapperfl/fedml_api/standalone/domain_generalization/models/dapperfl.py official repository unverified Apache-2.0 (permissive) · 202288818dfda260 · report
create_if_not_exists jyzgh/dapperfl/fedml_api/standalone/domain_generalization/models/dapperfl.py official repository unverified Apache-2.0 (permissive) · 016750df9eb6080e · report
resnet110 jyzgh/DapperFL/fedml_api/standalone/domain_generalization/backbone/resnet_nefl.py official repository unverified Apache-2.0 (permissive) · 7b51202d456f9285 · report
resnet18 jyzgh/DapperFL/fedml_api/standalone/domain_generalization/backbone/resnet_nefl.py official repository unverified Apache-2.0 (permissive) · 472a51cf544d9693 · report
resnet56 jyzgh/DapperFL/fedml_api/standalone/domain_generalization/backbone/resnet_nefl.py official repository unverified Apache-2.0 (permissive) · b030f88b1f067614 · report

Tasks

Edge-computingFederated Learning

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Methods

Pruning

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections