NeFut Logo NeFut
Admin Login

[CS.AI] Revolutionary Knowledge Transfer in Federated Learning: Collaborative Synthetic Data Generation

Published at: 2026-07-10 22:00 Last updated: 2026-07-13 08:31
#AI #Machine Learning #Federated Learning

Abstract

One-shot federated learning (OSFL) addresses the communication overhead of federated learning by limiting training to a single round, but doing so without sacrificing model quality is non-trivial, particularly when client data distributions diverge.

Recent work has addressed this challenge by aggregating client knowledge on the server through the construction of transferable synthetic datasets or distillates. However, most of these methods lack formal privacy guarantees, leaving a gap in jointly achieving low communication, robustness to heterogeneity, and rigorous privacy.

We propose FedKT-CSD (Federated Knowledge Transfer via Collaborative Synthetic Data), a framework inspired by neural image compression that closes this gap by leveraging publicly pretrained autoencoders as a shared latent space.

Each client encodes its private data in a single forward pass, computes class-conditional latent statistics, and transmits these to the server. The server aggregates these statistics via secure aggregation, adds calibrated differential privacy noise, and decodes a synthetic dataset for training a global model and further downstream tasks.

This design provides formal $(\varepsilon, \delta)$-differential privacy by construction, while keeping client-side computation and communication lightweight. Despite operating under privacy constraints, FedKT-CSD is competitive with and even outperforms non-private baselines across diverse datasets and heterogeneity settings, and scales to a large number of clients.

Our code is available at: FedKT-CSD GitHub

Blogger's Review: The FedKT-CSD framework effectively resolves the contradiction between privacy and performance in federated learning. By leveraging collaborative synthetic data generation, it not only enhances model training quality but also ensures stringent data privacy. This innovative approach sets a clear direction for future federated learning research and holds significant application potential.

Original Source: https://arxiv.org/abs/2607.07565

[h] Back to Home