Pith. sign in

REVIEW 3 major objections 6 minor 82 references

GeFL: Model-Agnostic Federated Learning with Generative Models

T0 review · 3 major / 6 minor · reviewed 2026-08-11 · deepseek-v4-flash

Pith's one-line read A federated generative model lets clients with different architectures train together without sharing data.

desk verdict Solid framework with thorough experiments, but the central claim about federated aggregation is not isolated from plain synthetic augmentation. read the letter →

arxiv 2412.18460 v2 pith:IJSMFV4P submitted 2024-12-24 cs.LG cs.AI

classification cs.LGcs.AI
keywords federatedlearningmodelheterogeneitygenerativefeature-generativedataaugmentationprivacyscalabilitynon-IID
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper proposes GeFL, a federated learning framework in which clients collaboratively train a generative model on their local data and then use its synthetic samples to train their own locally chosen target networks. The aim is to make federated learning work when clients have different model architectures and no public dataset is available, two conditions that standard FL and distillation-based alternatives do not handle together. The paper argues that a federated generative model gathers the global data semantics and can transfer them to any architecture through generated, class-conditioned samples. A second variant, GeFL-F, shifts generation from raw images to features produced by a warmed-up common feature extractor, which the paper reports improves scalability to larger client populations, reduces communication and computation cost, and lowers memorization-based privacy risk. Across MNIST, FMNIST, CIFAR10, SVHN, and CelebA, both variants report accuracy gains over the comparison methods in heterogeneous settings.

What carries the argument

The load-bearing object is the federated generative model: a conditional GAN, VAE, or DDPM whose weights are trained by federated averaging of client updates and whose class-conditioned outputs serve as training data for every client's target network. In GeFL-F the object is the feature-generative model, a generative model trained on representations from a warmed-up common feature extractor, so the synthesized objects are low-dimensional features instead of images. This single shared generative object is what transfers knowledge across heterogeneous architectures without any client exposing raw data or another client's model parameters.

What would settle it

Train GeFL-F on a dataset with a deliberately weak or poorly warmed-up feature extractor and compare the mean-nearest-neighbor distance of reconstructed images with the image-level GeFL version; if the MND ratio rises above 1 or accuracy no longer beats grouped FedAvg, the privacy and scalability claims fail. For GeFL itself, run 100 clients with pathological label skew and check whether the federated generator collapses into low-diversity samples; collapse would falsify the claim that naive averaging of generator weights is sufficient.

Watch

Extended reading notes

Core claim

On the paper's own terms, the central discovery is that cross-client knowledge in model-heterogeneous federated learning can be carried by a generative model trained federatively. In GeFL, each client trains the same generator backbone on private local data; the server simply averages the generator parameters and returns the aggregate, and the resulting conditional generator produces class-labeled synthetic samples. Each client trains its target network on those synthetic samples and then refines on real local data, while target-network parameters are averaged only within groups sharing the same architecture. The paper states that 'the trained generative model effectively gathers global knowledge from every client, enabling the training of target networks despite the different model architectures among clients.' GeFL-F repeats the idea at the feature level: clients warm up a shared feature extractor, train a feature-generative model on its outputs, and then train heterogeneous classifier headers on the generated features, which the paper reports as more scalable, cheaper, and less prone to memorization. The model-agnosticism claim is thereby qualified, because GeFL-F clients must share the feature-extractor architecture.

Load-bearing premise

The framework depends on a shared generator, trained by simple averaging of client updates, producing synthetic samples that are at the same time high-quality, diverse, and private enough to train every client's differently built network; the feature-based variant adds the requirement that all clients use the same feature-extractor architecture.

Editorial extensions

If this is right

  • Clients with entirely different CNN architectures can take part in one federated learning round and each improve its own model, removing the need for a shared global model or public data.
  • GeFL-F maintains or improves accuracy as the client count grows from 10 to 100, while image-level GeFL degrades, making the feature-level variant the scalable option for large federations.
  • Switching from raw-image generation to feature generation reduces total parameters, training and sampling cost, and the mean-nearest-neighbor distance ratio used to measure memorization (roughly 0.1 versus above 0.6 on MNIST), meaning the privacy risk from generative memorization is reduced.
  • Synthetic samples from the federated generator can be mixed with local real data and with standard data-augmentation methods such as MixUp, CutMix, AugMix, and AutoAugment, with gains that appear additive.
  • The accuracy advantage over grouped FedAvg widens as the amount of real data per client shrinks, so the method is most valuable in data-limited federated deployments.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Beyond the paper: GeFL-F's privacy claim is measured by memorization of reconstructed images, so a stronger test would be a white-box gradient-based inversion attack on the shared feature extractor; if reconstructed images remain recognizable there, the privacy margin would shrink.
  • Beyond the paper: the homogeneity-level sweep shows a peak at intermediate sharing (HL 1), which suggests the feature-extractor size is a tunable knob; one could test whether the optimal sharing level shifts with dataset difficulty or client count and use that as deployment guidance.
  • Beyond the paper: the observation that five times more synthetic samples did not improve accuracy suggests a saturation effect, implying that synthetic diversity rather than synthetic volume drives the gain; varying generator guidance or truncation would test this directly.
  • Beyond the paper: GeFL aggregates the generator by naive parameter averaging, so on highly skewed label distributions the 100-client regime may benefit from clustered generator aggregation or server-side model interpolation, neither of which the paper explores.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 6 minor

Summary. The paper proposes GeFL and GeFL-F, two frameworks for model-heterogeneous federated learning. GeFL trains a conditional generative model in a federated manner on client data and uses its synthetic samples to augment the local training of heterogeneous target networks, without requiring shared model architectures or public data. GeFL-F extends this idea by training feature-level generative models on outputs of a shared feature extractor, claiming improved scalability, lower communication/computation cost, and reduced privacy risk. The empirical evaluation spans MNIST, Fashion-MNIST, CIFAR-10, SVHN, and CelebA with three generative model families (GAN, VAE, DDPM), reporting accuracy gains over several FL baselines, together with analyses of memorization, data scale, guidance score, and homogeneity level.

Significance. If the central claim holds, GeFL provides a practical method for knowledge sharing across clients with fully heterogeneous model architectures without public data, which is an important open problem in federated learning. The paper ships code, reports confidence intervals, and evaluates three generative families across four datasets, which is a solid empirical contribution. The paper is also honest in disclosing limitations of GeFL (memorization, scalability, resource cost) and motivates GeFL-F. However, the key attribution of the gains to federated aggregation of the generator is not experimentally isolated from the synthetic-augmentation effect, and the privacy claim for GeFL-F rests on a metric whose interpretation is questionable in the feature-reconstruction setting. These issues need to be addressed before the central claims can be accepted.

major comments (3)
  1. [Section III-B-b, Table II and Algorithm 1] The experimental design does not isolate federated generator aggregation from synthetic-data augmentation. In Table II, the 10-client FedAvg baseline is explicitly described as 'each client uses a unique model and trains independently without FL' (Section III-B-a), so GeFL's gains over FedAvg bundle the effect of augmentation with synthetic samples and the effect of federated aggregation of the generator. Table IV compares GeFL only against FedAvg with standard DA methods, and Table VII compares Syn vs. Real+Syn using the same federated FedDCGAN; neither includes a control where each client trains a generator only on its own local data and uses it for the same augmentation scheme. Since Algorithm 1 couples generator aggregation (lines 4-10) with target-network training on synthetic samples (lines 14-22), the central claim in Section III-A that the federated generator 'gathers global knowledge from every client' is not directly supported by the current experiments. Please add a control with locally trained generators (one per client, trained on each client's partition) and compare the resulting accuracy against GeFL; if the local-generator control matches GeFL's performance, the central contribution would need to be reframed as synthetic-augmentation rather than federated knowledge sharing.
  2. [Section IV-A and Algorithm 3] The abstract and introduction claim 'model-agnostic federated learning' for GeFL-F, but Algorithm 3 stage (i) requires a common feature extractor that is aggregated across all clients, and Section IV-A states that each target network consists of 'a common feature extractor and a unique heterogeneous header.' Thus GeFL-F supports heterogeneity only in the classification header, not in the full model architecture. The statement in the introduction that the framework enables 'FL with heterogeneous client models' is therefore overstated for GeFL-F. Please qualify the model-agnosticism claim for GeFL-F, and clarify in the discussion of Figure 7 that homogeneity level 0 (where no common feature extractor exists) falls outside GeFL-F's assumptions and corresponds to GeFL rather than GeFL-F.
  3. [Section IV-B-b, Table VI] The privacy claim for GeFL-F relies on MND ratios computed between original images and images reconstructed from generated features via model inversion, as described in Section IV-B-b and Figure 5. Because model inversion of low-dimensional features typically yields blurry or unrecognizable images, the low MND values for GeFL-F (0.101-0.120) may reflect reconstruction error rather than absence of memorization or membership-inference risk. Moreover, Eq. (1) defines MND between a training sample and sets of synthetic and validation images; applying this ratio to reconstructed images changes its meaning, and the paper does not specify how the sets S and V are constructed in the feature case. Please validate the privacy claim with a direct membership-inference attack on the feature generator or with MND computed in feature space, and state explicitly what privacy property (if any) the feature-level approach provides.
minor comments (6)
  1. [Section V-A] There is a typo in 'experminets' (should be 'experiments'), and the paper inconsistently uses both 'GeFL' and 'G EFL' throughout; please standardize the notation.
  2. [Table II] The FedALA row shows '80.03±0. 51.63±7.05', which appears to be a formatting or OCR error; the confidence interval entry is malformed and should be corrected.
  3. [Section III-B-a] The sentence 'the accuracy rapidly decreases thereafter due the significant heterogeneity' is missing the word 'to' after 'due'.
  4. [Equation (1)] The notation 'min x ∈ S' should be typeset as 'min_{x \in S}' with proper spacing, and the sets S and V should be defined immediately before the equation rather than only in the surrounding text.
  5. [Figure 7 caption] The caption 'GEFL-F shows the same trend across the homogeneity regardless of the number of clients' is grammatically unclear; consider rewording to 'GEFL-F exhibits the same trend across homogeneity levels for each number of clients'.
  6. [References] Reference [1] is given only as a URL; since it serves as the code repository, please format it as a proper code/repository entry (e.g., with an accessed date and repository name) rather than leaving it as a bare arXiv-style hyperlink.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the paper's claims are empirical and its generative-model mechanism is not derived from the accuracy numbers it predicts.

full rationale

This is an empirical systems paper rather than a derivation chain. The central mechanism—Algorithm 1's federated parameter averaging of the generator (w_g <- Agg({w_k})) followed by target-network training on synthetic samples—is hypothesized and tested against FedAvg, FedProx, FedALA, AvgKD, FedDF, and LG-FedAvg on MNIST, FMNIST, CIFAR10, and SVHN. The generator's parameters are not fitted to the accuracy numbers; the accuracy numbers are downstream measurements. The claim in Section III-A that 'the trained generative model effectively gathers global knowledge from every client' is a design assertion supported by experiments, not an equation that reduces to its own output. GeFL-F's stages in Algorithm 3 similarly separate warming up the common feature extractor, training a feature-generative model on the resulting features, and then training headers; no quantity in stage (iii) is defined in terms of the header accuracy it is said to predict. Self-citations appear (e.g., [3] NeFL in Section II-B, and code/repository [1]), but NeFL is cited only to distinguish submodel-based multi-model FL from the proposed approach; no uniqueness theorem or load-bearing result is imported from the authors' prior work. The missing local-only-generator control (a generator trained on one client's data) and the fact that the 10-client FedAvg baseline is 'each client uses a unique model and trains independently without FL' (Section III-B-a) are experimental gaps that could weaken the attribution of gains to federated aggregation, but they are not circular reductions: the paper's claims are empirical, and the absence of a control does not make the prediction equal to its input by construction. Overall circularity score 0.

Assumptions & free parameters 4 free parameters · 4 assumptions · 0 invented entities

No new physical or mathematical entities are introduced. The framework relies on standard generative models and a standard FL averaging rule; the listed assumptions are the load-bearing premises that the empirical evaluation is designed to validate. The main free parameters are standard training hyperparameters, though the data fraction and DDPM guidance/time-step choices do influence the magnitude of the reported gains.

free parameters (4)
  • Federated communication rounds (TKA, TTN, TFE) = TKA=100 or 200, TTN=50 or 100, TFE=20, 50, 60, or 70
    Chosen by hand per dataset in Tables XIV and XV; standard training hyperparameters, not fitted to a specific result.
  • Latent dimensions of generative models (dg, dd, l) = (128,128) for MNIST/FMNIST, (256,64) for CIFAR10; latent size l=16 or 50
    Architectural choices for FedDCGAN, FedCVAE, and their feature variants; they affect model capacity and communication cost but not the qualitative comparison.
  • DDPM guidance score w and number of time steps T = w=0 and w=2; T=100 for MNIST/FMNIST and 400/500 for CIFAR10
    The paper shows performance flips with guidance and time steps (Table XXVII), so the choice of these hyperparameters influences the reported gains.
  • Data fraction used for training = 0.1 for MNIST and FMNIST, 0.5 for CIFAR10, 0.1 for SVHN
    Hand-chosen experimental condition; Figure 10 shows the gains grow as data becomes scarcer, so the data fraction is not neutral.
assumptions (4)
  • domain assumption A single generative model trained by FedAvg-style parameter averaging can capture a coherent global data distribution from non-IID clients.
    Algorithm 1 directly averages generator weights; Section III-C-b acknowledges quality degrades as client count grows, so the whole method rests on this averaging being good enough.
  • domain assumption Synthetic samples from the federated generator improve heterogeneous target network training beyond local real data.
    Core mechanism of GeFL; supported empirically by Tables II and IV, but assumed without a theoretical justification.
  • domain assumption All clients in GeFL-F must share a common feature extractor architecture; only headers are heterogeneous.
    Algorithm 3 stage (i) multicasts theta_f_g and aggregates it across all clients, which is a real architectural constraint that limits the model-agnostic claim.
  • domain assumption The LPIPS-based MND ratio is a valid proxy for privacy leakage via memorization.
    Section III-C-a defines MND and uses it to compare GeFL and GeFL-F; it is a memorization proxy, not a direct membership inference attack.

how reviews work

0 comments
Cite this review

Pith. "Pith review of GeFL: Model-Agnostic Federated Learning with Generative Models." pith.science (2026). https://pith.science/paper/IJSMFV4P

@misc{pith2026241218460,
  author       = {Pith},
  title        = {Pith review of: GeFL: Model-Agnostic Federated Learning with Generative Models},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/IJSMFV4P}},
  note         = {Machine review of arXiv:2412.18460}
}
read the original abstract

Federated learning (FL) is a distributed training paradigm that enables collaborative learning across clients without sharing local data, thereby preserving privacy. However, the increasing scale and complexity of modern deep models often exceed the computational or memory capabilities of edge devices. Furthermore, clients may be constrained to use heterogeneous model architectures due to hardware variability (e.g., ASICs, FPGAs) or proprietary requirements that prevent the disclosure or modification of local model structures. These practical considerations motivate the need for model-heterogeneous FL, where clients participate using distinct model architectures. In this work, we propose Generative Model-Aided Federated Learning (GeFL), a framework that enables cross-client knowledge sharing via a generative model trained in a federated manner. This generative model captures global data semantics and facilitates local training without requiring model homogeneity across clients. While GeFL achieves strong performance, empirical analysis reveals limitations in scalability and potential privacy leakage due to generative sample memorization. To address these concerns, we propose GeFL-F, which utilizes feature-level generative modeling. This approach enhances scalability to large client populations and mitigates privacy risks. Extensive experiments across image classification tasks demonstrate that both GeFL and GeFL-F offer competitive performance in heterogeneous settings. Code is available at [1].

Figures

Figures reproduced from arXiv: 2412.18460 by the authors.

Figure 1
Figure 1. Illustration of GEFL. We propose a model-agnostic FL framework under model-heterogeneity, GEFL, consisting of (i) generative knowledge aggregation which trains a genera￾tive model in a federated manner, and (ii) heterogeneous target network training augmented by trained generative models. a single model [33], [34]. In previous studies, generative models could not be effectively trained when client models were hetero… view at source ↗
Figure 2
Figure 2. Generated images from FedCVAE (top two rows) and [PITH_FULL_IMAGE:figures/full_fig_p006_2.png] view at source ↗
Figure 3
Figure 3. Illustration of GEFL-F algorithm. Each target network is decoupled into a common feature extractor and a heterogeneous header. There are three main stages in GEFL-F including (i) warming-up phase for training a common feature extractor, and (ii) generative knowledge aggregation which trains feature-generative models using warmed-up feature extractor, and (iii) target network training, especially the heterogeneous he… view at source ↗
Figures from the paper (12 more)
Figure 4
Figure 4. Figure 4: Scalability in client numbers of GEFL and GEFL-F. GEFL-F exhibits less performance degradation in a large number of clients compared to GEFL. (a) Real samples (b) FedDCGAN-F (c) FedCVAE-F (d) FedDDPM-F (w = 0) (e) FedDDPM-F (w = 2) [PITH_FULL_IMAGE:figures/full_fig_p0…
Figure 5
Figure 5. Figure 5: Reconstructed samples generated by feature￾generative models by model-inversion observed in large-scale federated settings. Among the genera￾tive models, GEFL-F with FedCVAE-F demonstrates superior effectiveness, particularly due to the reduced impact of image blurrine…
Figure 6
Figure 6. Figure 6: Comparison of privacy, communication and computational costs in GEFL and GEFL-F. Lower values indicate better conditions for each component. Exact values are provided in Table III, Table V, and Table VI. 0 1 2 3 4 5 6 Homogeneity 90 91 92 93 94 95 96 97 98 Mean Acc (%)…
Figure 7
Figure 7. Figure 7: Mean classification accuracy of GEFL-F depending on the homogeneity of model architectures on MNIST dataset. GEFL-F shows the same trend across the homogeneity regardless of the number of clients. 0 1 2 3 4 5 6 Homogeneity 0.0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 Privacy (M…
Figure 8
Figure 8. Figure 8: Privacy and the number of parameters of generative model of GEFL-F across the homogeneity level of model architectures on MNIST dataset reconstructed ones by measuring the MND ratio, as we did in GEFL. Referring to MND ratio in Table VI and Table III, it is observed th…
Figure 9
Figure 9. Figure 9: t-SNE visualization of learned representation of CIFAR10 synthetic images generated by FedDDPM with guidance scores w = 0 and w = 2 Dataset Train Update Freeze MNIST Syn 83.49±0.38 81.70±3.79 Real+Syn 95.32±0.15 94.98±0.13 FMNIST Syn 81.83±0.47 68.27±7.11 Real+Syn 83.1…
Figure 10
Figure 10. Figure 10: Performance of GEFL with FedDCGAN across varying dataset scales demonstrates its effectiveness in sce￾narios where the amount of real dataset is extremely limited. Dataset Train FedDCGAN FedCVAE FedDDPM w=0 FedDDPM w=2 MNIST Syn 85.18 91.13 91.76 92.56 Real+Syn 95.32 …
Figure 11
Figure 11. Figure 11: Memorization analysis of generative models and feature-generative models in GEFL and GEFL-F, respectively, assessed through the MND ratio on MNIST dataset. Here, the x-axis and y-axis represent the nearest neighbor distance ratio and the distribution over training set…
Figure 12
Figure 12. Figure 12: Generated samples of FMNIST by federated generative models with 10 clients in GEFL. (a) FedDCGAN (b) FedCVAE (c) FedDDPMw=0 (d) FedDDPMw=2 [PITH_FULL_IMAGE:figures/full_fig_p024_12.png]
Figure 13
Figure 13. Figure 13: Generated samples of CIFAR10 by federated generative models with 10 clients in GEFL [PITH_FULL_IMAGE:figures/full_fig_p024_13.png]
Figure 14
Figure 14. Figure 14: Generated samples of MNIST by federated generative models in GEFL across the different number of users. (a) FedDCGAN (10 clients) (b) FedDCGAN (50 clients) (c) FedDCGAN (100 clients) (d) FedCVAE (10 clients) (e) FedCVAE (50 clients) (f) FedCVAE (100 clients) (g) FedDD…
Figure 15
Figure 15. Figure 15: Feature samples of MNIST generated by feature-generative models in GEFL-F across the different number of users [PITH_FULL_IMAGE:figures/full_fig_p025_15.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

82 extracted references · 59 canonical work pages

  1. [1]

    Kang and S

    H. Kang and S. Cha. [Online]. Available: https://honggkang.github.io/gefl

  2. [2]

    McMahan, E

    B. McMahan, E. Moore, D. Ramage, S. Hampson, and B. A. y. Arcas, ``Communication-efficient learning of deep networks from decentralized data,'' in International Conference on Artificial Intelligence and Statistics (AISTATS), 2017

  3. [3]

    H. Kang, S. Cha, J. Shin, J. Lee, and J. Kang, `` NeFL : Nested federated learning for heterogeneous clients,'' arXiv preprint arXiv:2308.07761, 2023

  4. [4]

    Afonin and S

    A. Afonin and S. P. Karimireddy, ``Towards model agnostic federated learning using knowledge distillation,'' in International Conference on Learning Representations (ICLR), 2022

  5. [5]

    Gemini Team , ``Gemini: A family of highly capable multimodal models,'' arXiv preprint arXiv:2312.11805, 2023

  6. [6]

    Brown, B

    T. Brown, B. Mann, N. Ryder, M. Subbiah, J. D. Kaplan, P. Dhariwal, A. Neelakantan, P. Shyam, G. Sastry, A. Askell, S. Agarwal, A. Herbert-Voss, G. Krueger, T. Henighan, R. Child, A. Ramesh, D. Ziegler, J. Wu, C. Winter, C. Hesse, M. Chen, E. Sigler, M. Litwin, S. Gray, B. Chess, J. Clark, C. Berner, S. McCandlish, A. Radford, I. Sutskever, and D. Amodei,...

  7. [7]

    Villalobos, J

    P. Villalobos, J. Sevilla, T. Besiroglu, L. Heim, A. Ho, and M. Hobbhahn, ``Machine learning model sizes and the parameter gap,'' arXiv preprint arXiv:2207.02852, 2022

  8. [8]

    Pfeiffer, M

    K. Pfeiffer, M. Rapp, R. Khalili, and J. Henkel, ``Federated learning for computationally constrained heterogeneous devices: A survey,'' ACM Computing Surveys, vol. 55, no. 14s, p. 1–27, Jul 2023

Show all 82 references
  1. [9]

    D. C. Nguyen, M. Ding, P. N. Pathirana, A. Seneviratne, J. Li, and H. Vincent Poor, ``Federated learning for internet of things: A comprehensive survey,'' IEEE Communications Surveys & Tutorials, vol. 23, no. 3, pp. 1622--1658, 2021

  2. [10]

    T. Li, A. K. Sahu, M. Zaheer, M. Sanjabi, A. Talwalkar, and V. Smith, ``Federated optimization in heterogeneous networks,'' in Machine Learning and Systems (MLSys), 2020

  3. [11]

    Horv\' a th, S

    S. Horv\' a th, S. Laskaridis, M. Almeida, I. Leontiadis, S. Venieris, and N. Lane, `` FjORD : Fair and accurate federated learning under heterogeneous targets with ordered dropout,'' in Advances in Neural Information Processing Systems (NeurIPS), 2021

  4. [12]

    M. Kim, S. Yu, S. Kim, and S.-M. Moon, ``Depth FL : Depthwise federated learning for heterogeneous clients,'' in International Conference on Learning Representations (ICLR), 2023

  5. [13]

    T. Lin, L. Kong, S. U. Stich, and M. Jaggi, ``Ensemble distillation for robust model fusion in federated learning,'' in Advances in Neural Information Processing Systems (NeurIPS), 2020

  6. [14]

    Huang, M

    W. Huang, M. Ye, and B. Du, ``Learn from others and be yourself in heterogeneous federated learning,'' in IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2022

  7. [15]

    Li and J

    D. Li and J. Wang, ``Fedmd: Heterogenous federated learning via model distillation,'' arXiv preprint arXiv:1910.03581, 2019

  8. [16]

    L. Yi, G. Wang, X. Liu, Z. Shi, and H. Yu, `` FedGH : Heterogeneous federated learning with generalized global header,'' arXiv preprint arXiv:2303.13137, 2023

  9. [17]

    I. J. Goodfellow, J. Pouget-Abadie, M. Mirza, B. Xu, D. Warde-Farley, S. Ozair, A. Courville, and Y. Bengio, ``Generative adversarial networks,'' in Advances in Neural Information Processing Systems (NeurIPS), 2014

  10. [18]

    D. P. Kingma and M. Welling, ``Auto-encoding variational bayes,'' arXiv preprint arXiv:1312.6114, 2022

  11. [19]

    Sohl-Dickstein, E

    J. Sohl-Dickstein, E. Weiss, N. Maheswaranathan, and S. Ganguli, ``Deep unsupervised learning using nonequilibrium thermodynamics,'' in International Conference on Machine Learning (ICML), 2015

  12. [20]

    S. P. Karimireddy, S. Kale, M. Mohri, S. Reddi, S. Stich, and A. T. Suresh, ``Scaffold: Stochastic controlled averaging for federated learning,'' in International Conference on Machine Learning (ICML), 2020

  13. [21]

    Hinton, O

    G. Hinton, O. Vinyals, and J. Dean, ``Distilling the knowledge in a neural network,'' arXiv preprint arXiv:1503.02531, 2015

  14. [22]

    H. Seo, J. Park, S. Oh, M. Bennis, and S.-L. Kim, ``Federated knowledge distillation,'' arXiv preprint arXiv:2011.02367, 2020

  15. [23]

    C. Wu, F. Wu, L. Lyu, Y. Huang, and X. Xie, ``Communication-efficient federated learning via knowledge distillation,'' Nature Communications, vol. 13, no. 1, Apr. 2022

  16. [24]

    X. Li, B. Chen, and W. Lu, `` FedDKD : Federated learning with decentralized knowledge distillation,'' Applied Intelligence, vol. 53, no. 15, p. 18547–18563, Feb. 2023

  17. [25]

    E. Diao, J. Ding, and V. Tarokh, ``Hetero FL : Computation and communication efficient federated learning for heterogeneous clients,'' in International Conference on Learning Representations (ICLR), 2021

  18. [26]

    P. P. Liang, T. Liu, L. Ziyin, R. Salakhutdinov, and L.-P. Morency, ``Think locally, act globally: Federated learning with local and global representations,'' arXiv preprint arXiv:2001.01523, 2020

  19. [27]

    T. Shen, J. Zhang, X. Jia, F. Zhang, G. Huang, P. Zhou, K. Kuang, F. Wu, and C. Wu, ``Federated mutual learning,'' arXiv preprint arXiv:2006.16765, 2020

  20. [28]

    J. Wang, X. Yang, S. Cui, L. Che, L. Lyu, D. Xu, and F. Ma, ``Towards personalized federated learning via heterogeneous model reassembly,'' arXiv preprint arXiv:2308.08643, 2023

  21. [29]

    H. Wen, Y. Wu, J. Li, and H. Duan, ``Communication-efficient federated data augmentation on non-iid data,'' in IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops (CVPRW), 2022

  22. [30]

    Jeong, S

    E. Jeong, S. Oh, H. Kim, J. Park, M. Bennis, and S.-L. Kim, ``Communication-efficient on-device machine learning: Federated distillation and augmentation under non-iid private data,'' arxiv preprint arXiv:1811.11479, 2023

  23. [31]

    Y. Wu, Y. Kang, J. Luo, Y. He, and Q. Yang, `` FedCG : Leverage conditional gan for protecting privacy and maintaining competitive performance in federated learning,'' arXiv preprint arXiv:2111.08211, 2021

  24. [32]

    Rasouli, T

    M. Rasouli, T. Sun, and R. Rajagopal, `` FedGAN : Federated generative adversarial networks for distributed data,'' arXiv preprint arXiv:2006.07228, 2020

  25. [33]

    Z. Zhu, J. Hong, and J. Zhou, ``Data-free knowledge distillation for heterogeneous federated learning,'' in International Conference on Machine Learning (ICML), 2021

  26. [34]

    Zhang, L

    L. Zhang, L. Shen, L. Ding, D. Tao, and L. Duan, ``Fine-tuning global model via data-free knowledge distillation for non-iid federated learning,'' in IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2022

  27. [35]

    K. He, X. Zhang, S. Ren, and J. Sun, ``Deep residual learning for image recognition,'' in IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2016

  28. [36]

    Tan and Q

    M. Tan and Q. Le, `` EfficientNet : Rethinking model scaling for convolutional neural networks,'' in International Conference on Machine Learning (ICML), 2019

  29. [37]

    A. G. Howard, M. Zhu, B. Chen, D. Kalenichenko, W. Wang, T. Weyand, M. Andreetto, and H. Adam, ``Mobilenets: Efficient convolutional neural networks for mobile vision applications,'' arXiv preprint arXiv:1704.04861, 2017

  30. [38]

    LeCun, L

    Y. LeCun, L. Bottou, Y. Bengio, and P. Haffner, ``Gradient-based learning applied to document recognition,'' Proceedings of the IEEE, vol. 86, no. 11, pp. 2278--2324, 1998

  31. [39]

    H. Xiao, K. Rasul, and R. Vollgraf, ``Fashion-mnist: a novel image dataset for benchmarking machine learning algorithms,'' arXiv preprint arXiv:1708.07747, 2017

  32. [40]

    Krizhevsky et al., ``Learning multiple layers of features from tiny images,'' Master's thesis, Department of Computer Science, University of Toronto, 2009

    A. Krizhevsky et al., ``Learning multiple layers of features from tiny images,'' Master's thesis, Department of Computer Science, University of Toronto, 2009

  33. [41]

    Zhang, Y

    J. Zhang, Y. Hua, H. Wang, T. Song, Z. Xue, R. Ma, and H. Guan, ``Fed ALA : A daptive local aggregation for personalized federated learning,'' AAAI Conference on Artificial Intelligence (AAAI), 2023

  34. [42]

    Radford, L

    A. Radford, L. Metz, and S. Chintala, ``Unsupervised representation learning with deep convolutional generative adversarial networks,'' in International Conference on Learning Representations (ICLR), 2016

  35. [43]

    Y. Pu, Z. Gan, R. Henao, X. Yuan, C. Li, A. Stevens, and L. Carin, ``Variational autoencoder for deep learning of images, labels and captions,'' in Advances in Neural Information Processing Systems (NeurIPS), 2016

  36. [44]

    J. Ho, A. Jain, and P. Abbeel, ``Denoising diffusion probabilistic models,'' in Advances in Neural Information Processing Systems (NeurIPS), 2020

  37. [45]

    Ho and T

    J. Ho and T. Salimans, ``Classifier-free diffusion guidance,'' in NeurIPS 2021 Workshop on Deep Generative Models and Downstream Applications, 2021

  38. [46]

    Heusel, H

    M. Heusel, H. Ramsauer, T. Unterthiner, B. Nessler, and S. Hochreiter, ``Gans trained by a two time-scale update rule converge to a local nash equilibrium,'' in Advances in Neural Information Processing Systems (NeurIPS), 2017

  39. [47]

    Ravuri and O

    S. Ravuri and O. Vinyals, ``Classification accuracy score for conditional generative models,'' in Advances in Neural Information Processing Systems (NeurIPS), 2019

  40. [48]

    Zhang, M

    H. Zhang, M. Cisse, Y. N. Dauphin, and D. Lopez-Paz, ``mixup: Beyond empirical risk minimization,'' in International Conference on Learning Representations (ICLR), 2018

  41. [49]

    S. Yun, D. Han, S. J. Oh, S. Chun, J. Choe, and Y. Yoo, ``Cutmix: Regularization strategy to train strong classifiers with localizable features,'' in IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2019

  42. [50]

    Hendrycks, N

    D. Hendrycks, N. Mu, E. D. Cubuk, B. Zoph, J. Gilmer, and B. Lakshminarayanan, ``Augmix: A simple data processing method to improve robustness and uncertainty,'' in International Conference on Learning Representations (ICLR), 2019

  43. [51]

    E. D. Cubuk, B. Zoph, D. Mane, V. Vasudevan, and Q. V. Le, ``Autoaugment: Learning augmentation policies from data,'' arXiv preprint arXiv:1805.09501, 2018

  44. [52]

    M. D. Zeiler and R. Fergus, ``Visualizing and understanding convolutional networks,'' in European Conference on Computer Vision (ECCV), 2014

  45. [53]

    Geiping, H

    J. Geiping, H. Bauermeister, H. Dr \"o ge, and M. Moeller, ``Inverting gradients-how easy is it to break privacy in federated learning?'' Advances in Neural Information Processing Systems (NeurIPS), 2020

  46. [54]

    van den Burg and C

    G. van den Burg and C. Williams, ``On memorization in probabilistic deep generative models,'' in Advances in Neural Information Processing Systems (NeurIPS), 2021

  47. [55]

    Somepalli, V

    G. Somepalli, V. Singla, M. Goldblum, J. Geiping, and T. Goldstein, ``Diffusion art or digital forgery? investigating data replication in diffusion models,'' in IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2023

  48. [56]

    Webster, J

    R. Webster, J. Rabin, L. Simon, and F. Jurie, ``Detecting overfitting of deep generative networks via latent recovery,'' in IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2019

  49. [57]

    X. Sun, N. Gazagnadou, V. Sharma, L. Lyu, H. Li, and L. Zheng, ``Privacy assessment on reconstructed images: Are existing evaluation metrics faithful to human perception?'' in Advances in Neural Information Processing Systems (NeurIPS), 2023

  50. [58]

    Hilprecht, M

    B. Hilprecht, M. H \"a rterich, and D. Bernau, `` Monte Carlo and reconstruction membership inference attacks against generative models,'' in Proc. on Privacy Enhancing Technologies, 2019, pp. 232--249

  51. [59]

    Abadi, A

    M. Abadi, A. Chu, I. Goodfellow, H. B. McMahan, I. Mironov, K. Talwar, and L. Zhang, ``Deep learning with differential privacy,'' in Proceedings of the 2016 ACM SIGSAC conference on computer and communications security, 2016, pp. 308--318

  52. [60]

    L. Xie, K. Lin, S. Wang, F. Wang, and J. Zhou, ``Differentially private generative adversarial network,'' arXiv preprint arXiv:1802.06739, 2018

  53. [61]

    Zhang, P

    R. Zhang, P. Isola, A. A. Efros, E. Shechtman, and O. Wang, ``The unreasonable effectiveness of deep features as a perceptual metric,'' in IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2018

  54. [62]

    Y. Zhao, M. Li, L. Lai, N. Suda, D. Civin, and V. Chandra, ``Federated learning with non-iid data,'' arXiv preprint arXiv:1806.00582, 2018

  55. [63]

    Mahendran and A

    A. Mahendran and A. Vedaldi, ``Understanding deep image representations by inverting them,'' in IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2015

  56. [64]

    Dosovitskiy and T

    A. Dosovitskiy and T. Brox, ``Inverting visual representations with convolutional networks,'' in IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2016

  57. [65]

    Brock, J

    A. Brock, J. Donahue, and K. Simonyan, ``Large scale GAN training for high fidelity natural image synthesis,'' arXiv preprint arXiv:1809.11096, 2018

  58. [66]

    L. A. Gatys, A. S. Ecker, and M. Bethge, ``Image style transfer using convolutional neural networks,'' in IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2016

  59. [67]

    J. Jang, H. Ha, D. Jung, and S. Yoon, ``Fedclassavg: Local representation learning for personalized federated learning on heterogeneous neural networks,'' in Proceedings of the 51st International Conference on Parallel Processing, 2022, pp. 1--10

  60. [68]

    J. Mori, I. Teranishi, and R. Furukawa, ``Continual horizontal federated learning for heterogeneous data,'' in 2022 International Joint Conference on Neural Networks (IJCNN), 2022, pp. 1--8

  61. [69]

    Netzer, T

    Y. Netzer, T. Wang, A. Coates, A. Bissacco, B. Wu, and A. Y. Ng, ``Reading digits in natural images with unsupervised feature learning,'' in NIPS Workshop on Deep Learning and Unsupervised Feature Learning, 2011

  62. [70]

    Krizhevsky, V

    A. Krizhevsky, V. Nair, and G. Hinton, `` CIFAR -10 ( Canadian Institute for Advanced Research ),'' http://www.cs.toronto.edu/ kriz/cifar.html

  63. [71]

    L. Fan, K. Chen, D. Krishnan, D. Katabi, P. Isola, and Y. Tian, ``Scaling laws of synthetic images for model training... for now,'' arXiv preprint arXiv:2312.04567, 2023

  64. [72]

    Y. Tian, L. Fan, P. Isola, H. Chang, and D. Krishnan, ``Stablerep: Synthetic images from text-to-image models make strong visual representation learners,'' in Advances in Neural Information Processing Systems (NeurIPS), 2023

  65. [73]

    Azizi, S

    S. Azizi, S. Kornblith, C. Saharia, M. Norouzi, and D. J. Fleet, ``Synthetic data from diffusion models improves imagenet classification,'' Transactions on Machine Learning Research, 2023

  66. [74]

    Shmelkov, C

    K. Shmelkov, C. Schmid, and K. Alahari, ``How good is my GAN ?'' in Proceedings of the European conference on computer vision (ECCV), 2018, pp. 213--229

  67. [75]

    Yamaguchi, D

    S. Yamaguchi, D. Chijiwa, S. Kanai, A. Kumagai, and H. Kashima, ``Regularizing neural networks with meta-learning generative models,'' in Thirty-seventh Conference on Neural Information Processing Systems, 2023

  68. [76]

    J. Li, Y. Shao, K. Wei, M. Ding, C. Ma, L. Shi, Z. Han, and H. V. Poor, ``Blockchain assisted decentralized federated learning (BLADE-FL) : Performance analysis and resource allocation,'' IEEE Transactions on Parallel and Distributed Systems, vol. 33, no. 10, pp. 2401--2415, 2022

  69. [77]

    ``Pytorch models and pre-trained weights,'' 2025, https://pytorch.org/vision/stable/models.html [Accessed: (2025/5/10)]

  70. [78]

    Ronneberger, P

    O. Ronneberger, P. Fischer, and T. Brox, ``U-Net: Convolutional networks for biomedical image segmentation,'' in International Conference on on Medical Image Computing and Computer-Assisted Intervention, 2015

  71. [79]

    Pearce, H

    T. Pearce, H. H. Tan, M. Zeraatkar, and X. Zhao, [Online]. Available: https://github.com/TeaPearce/Conditional\_Diffusion\_MNIST

  72. [80]

    Ioffe and C

    S. Ioffe and C. Szegedy, ``Batch normalization: accelerating deep network training by reducing internal covariate shift,'' in International Conference on Machine Learning (ICML), 2015

  73. [81]

    A. F. Agarap, ``Deep learning using rectified linear units (relu),'' arXiv preprint arXiv:1803.08375, 2018

  74. [82]

    Meehan, K

    C. Meehan, K. Chaudhuri, and S. Dasgupta, ``A non-parametric test to detect data-copying in generative models,'' in International Conference on Artificial Intelligence and Statistics (AISTATS), 2020

Pith tools

Reviewed August 11, 2026 · model on record in the stance chip above.