Papers
Topics
Authors
Recent
Search
2000 character limit reached

AdeptHEQ-FL: Hybrid Fed Learning Framework

Updated 6 July 2026
  • AdeptHEQ-FL is a hybrid federated learning framework that integrates classical CNNs with parameterized quantum circuits using adaptive aggregation, selective homomorphic encryption, and dynamic layer-wise freezing.
  • It employs a Laplace-perturbed, accuracy-weighted aggregation mechanism to ensure differential privacy while effectively combining local client updates in non-IID settings.
  • Dynamic layer-wise adaptive freezing and selective encryption of the final classification layer reduce communication overhead by up to 40–50% without compromising the expressivity of quantum components.

Searching arXiv for the specified paper to ground the article in the cited source. AdeptHEQ-FL is a federated learning framework for hybrid classical-quantum models that combines a hybrid CNNPQC architecture, adaptive accuracy-weighted aggregation based on differentially private validation accuracies, selective homomorphic encryption of sensitive model layers, and dynamic layer-wise adaptive freezing. It is introduced for decentralized, non-IID settings in which model performance, privacy preservation, and communication efficiency must be balanced simultaneously. The framework is reported on CIFAR-10, SVHN, and Fashion-MNIST, with formal privacy guarantees, a convergence analysis, and experimental comparisons against Standard-FedQNN and FHE-FedQNN (Jahin et al., 9 Jul 2025).

1. Definition and architectural composition

AdeptHEQ-FL is defined as a unified hybrid classical-quantum federated learning framework whose components are explicitly organized around four mechanisms: a hybrid CNN-PQC model, adaptive accuracy-weighted aggregation, selective homomorphic encryption, and dynamic layer-wise adaptive freezing (Jahin et al., 9 Jul 2025). In the paper’s formulation, the input xRH×W×Cx \in \mathbb{R}^{H \times W \times C} is first processed by a classical CNN feature extractor gC(x;θc)g_C(x; \theta^c), producing a flattened representation in R2n\mathbb{R}^{2^n}. This representation is then amplitude-embedded into an nn-qubit quantum state ψx|\psi_x\rangle, passed through a parameterized quantum circuit gQ(;θq)g_Q(\cdot; \theta^q) with 2 strongly-entangling layers, measured to obtain fPQCRnf_{PQC} \in \mathbb{R}^n, and finally mapped by a classical fully connected layer fFC4(fPQC;θFC4)Rmf_{FC4}(f_{PQC}; \theta^{FC4}) \in \mathbb{R}^m, where m=#classesm = \#\text{classes}, before the softmax or cross-entropy stage (Jahin et al., 9 Jul 2025).

The mathematical form given in the paper specifies

gC(x;θc)=Flatten(CNN3blocks(x;θc))R2n,g_C(x; \theta^c) = \mathrm{Flatten}(\mathrm{CNN}_{3\text{blocks}}(x; \theta^c)) \in \mathbb{R}^{2^n},

gC(x;θc)g_C(x; \theta^c)0

and

gC(x;θc)g_C(x; \theta^c)1

The quantum feature vector is then

gC(x;θc)g_C(x; \theta^c)2

and the final model output is

gC(x;θc)g_C(x; \theta^c)3

Within this design, the PQC is not an auxiliary module but part of the end-to-end prediction pipeline. The explicit exemption of quantum layers from freezing, discussed later, indicates that the framework treats quantum parameters as adaptively important throughout training. A plausible implication is that the method is intended to preserve quantum-side expressivity even when communication constraints require aggressive sparsity or staleness on classical layers.

2. Adaptive accuracy-weighted aggregation

The aggregation mechanism in AdeptHEQ-FL uses local validation accuracy, privatized by a Laplace mechanism, to compute per-client aggregation weights (Jahin et al., 9 Jul 2025). For each client gC(x;θc)g_C(x; \theta^c)4 at round gC(x;θc)g_C(x; \theta^c)5, the local validation accuracy is

gC(x;θc)g_C(x; \theta^c)6

This quantity is privatized as

gC(x;θc)g_C(x; \theta^c)7

The aggregation weights are computed by a temperature-scaled softmax: gC(x;θc)g_C(x; \theta^c)8 with temperature gC(x;θc)g_C(x; \theta^c)9. The global parameter update is then

R2n\mathbb{R}^{2^n}0

This weighting scheme differs from uniform or purely sample-size-based federated aggregation because it conditions the aggregation coefficients on validation performance while still imposing differential privacy on the performance signal. The paper presents this as part of the formal privacy-preserving design (Jahin et al., 9 Jul 2025). This suggests that the framework attempts to use client quality information without directly exposing exact validation statistics, a point that is especially relevant in decentralized non-IID regimes where client updates can differ substantially in utility.

A common misconception in federated weighting schemes is that performance-sensitive aggregation necessarily compromises privacy. In AdeptHEQ-FL, that interpretation does not hold in its literal form, because the validation accuracies are perturbed with the Laplace mechanism before being transformed into weights. The remaining issue is not the absence of privacy protection, but rather the trade-off between aggregation fidelity and the noise induced by differential privacy.

3. Selective homomorphic encryption and secure aggregation

AdeptHEQ-FL applies selective homomorphic encryption rather than encrypting the entire parameter set (Jahin et al., 9 Jul 2025). The paper partitions the parameters into R2n\mathbb{R}^{2^n}1, the parameters of the final fully connected layer FC4, and R2n\mathbb{R}^{2^n}2, all other layers’ parameters. Only R2n\mathbb{R}^{2^n}3 is encrypted, whereas R2n\mathbb{R}^{2^n}4 remains in plaintext. The selective aspect is therefore layer-specific and tied directly to the model’s final classical classification stage.

The homomorphic encryption implementation uses CKKS via TenSEAL. The setup includes R2n\mathbb{R}^{2^n}5 and Galois keys for rotations. The encrypted pipeline is stated as follows: encode R2n\mathbb{R}^{2^n}6 into plaintext polynomials with scale R2n\mathbb{R}^{2^n}7, compute R2n\mathbb{R}^{2^n}8, aggregate homomorphically using

R2n\mathbb{R}^{2^n}9

and recover the aggregated sensitive parameters by

nn0

The CKKS parameterization reported in the paper is specific: poly-modulus degree 8192; coefficient moduli bit-sizes nn1 bits; approximately 128-bit security; maximum multiplicative depth approximately 3, described as sufficient for one weighted sum; and bounded noise growth obtained by choosing a large initial scale and moderate depths (Jahin et al., 9 Jul 2025).

The framework’s privacy posture is therefore structurally asymmetric. It does not claim full-model homomorphic protection; instead, it protects the final FC4 layer while leaving all other layers unencrypted. The paper explicitly identifies “Extending HE beyond the final FC4 layer for full-model privacy” as an open challenge (Jahin et al., 9 Jul 2025). This makes clear that AdeptHEQ-FL should not be interpreted as an end-to-end fully encrypted federated learning protocol. Its contribution lies in selective protection calibrated to overhead constraints.

4. Dynamic layer-wise adaptive freezing

Communication reduction in AdeptHEQ-FL is implemented through dynamic layer-wise adaptive freezing (Jahin et al., 9 Jul 2025). The layer importance metric at round nn2 is

nn3

together with an exponential moving average

nn4

A layer nn5 is frozen when

nn6

with nn7, in which case nn8. Quantum layers are exempt and are never frozen.

The pseudocode reported in the paper is organized per selected client. Each client computes the importance nn9, updates the EMA ψx|\psi_x\rangle0, defines

ψx|\psi_x\rangle1

and sends updates only for

ψx|\psi_x\rangle2

The communication reduction metric is

ψx|\psi_x\rangle3

The paper states that, in practice, this yields approximately ψx|\psi_x\rangle4–ψx|\psi_x\rangle5 reduction in bytes transmitted per round (Jahin et al., 9 Jul 2025). In the experimental summary, the baseline round-trip is reported as approximately ψx|\psi_x\rangle6 per client, and with dynamic freezing approximately ψx|\psi_x\rangle7 per client, corresponding to approximately ψx|\psi_x\rangle8 reduction (Jahin et al., 9 Jul 2025).

This mechanism is notable for its explicit exclusion of quantum layers from the freezing set. The design choice indicates that the framework treats quantum adaptability as a quantity to preserve even when classical communication is compressed. A plausible implication is that the method assumes representational or optimization sensitivity in the PQC component that would be disproportionately harmed by stale updates.

5. Privacy guarantees and convergence analysis

The paper states a per-round differential privacy guarantee for the Laplace mechanism applied to the local validation accuracy ψx|\psi_x\rangle9 (Jahin et al., 9 Jul 2025). Theorem 1 asserts that with sensitivity

gQ(;θq)g_Q(\cdot; \theta^q)0

the mechanism ensures gQ(;θq)g_Q(\cdot; \theta^q)1-DP per round. Under advanced composition over gQ(;θq)g_Q(\cdot; \theta^q)2 rounds,

gQ(;θq)g_Q(\cdot; \theta^q)3

with gQ(;θq)g_Q(\cdot; \theta^q)4 and gQ(;θq)g_Q(\cdot; \theta^q)5, yielding gQ(;θq)g_Q(\cdot; \theta^q)6 (Jahin et al., 9 Jul 2025).

The convergence theorem is stated under gQ(;θq)g_Q(\cdot; \theta^q)7-smoothness, bounded gradient variance gQ(;θq)g_Q(\cdot; \theta^q)8, and learning rate

gQ(;θq)g_Q(\cdot; \theta^q)9

The resulting bound is

fPQCRnf_{PQC} \in \mathbb{R}^n0

which the paper interprets as sublinear fPQCRnf_{PQC} \in \mathbb{R}^n1 convergence plus small biases from differential privacy through the fPQCRnf_{PQC} \in \mathbb{R}^n2 term and from freezing perturbations (Jahin et al., 9 Jul 2025).

These formal results delimit the privacy and optimization claims carefully. The privacy theorem applies to the accuracy-sharing mechanism rather than to all data-dependent computations in the training pipeline. Likewise, the convergence claim is asymptotic and assumption-dependent, not a statement of uniform performance dominance across all data regimes. The framework therefore combines theorem-backed components with empirically evaluated systems design choices, rather than reducing all of its properties to a single formal guarantee.

6. Empirical results and computational trade-offs

The experimental summary reports average loss and accuracy over 5 runs on CIFAR-10, SVHN, and Fashion-MNIST (Jahin et al., 9 Jul 2025). The comparative accuracy values are shown below.

Model CIFAR-10 Acc. SVHN Acc. Fashion-MNIST Acc.
Standard-FedQNN fPQCRnf_{PQC} \in \mathbb{R}^n3 fPQCRnf_{PQC} \in \mathbb{R}^n4 fPQCRnf_{PQC} \in \mathbb{R}^n5
FHE-FedQNN fPQCRnf_{PQC} \in \mathbb{R}^n6 fPQCRnf_{PQC} \in \mathbb{R}^n7 fPQCRnf_{PQC} \in \mathbb{R}^n8
AdeptHEQ-FL (4,2) fPQCRnf_{PQC} \in \mathbb{R}^n9 fFC4(fPQC;θFC4)Rmf_{FC4}(f_{PQC}; \theta^{FC4}) \in \mathbb{R}^m0 fFC4(fPQC;θFC4)Rmf_{FC4}(f_{PQC}; \theta^{FC4}) \in \mathbb{R}^m1

On CIFAR-10, the paper reports a fFC4(fPQC;θFC4)Rmf_{FC4}(f_{PQC}; \theta^{FC4}) \in \mathbb{R}^m2 relative improvement over Standard-FedQNN and a fFC4(fPQC;θFC4)Rmf_{FC4}(f_{PQC}; \theta^{FC4}) \in \mathbb{R}^m3 relative improvement over FHE-FedQNN (Jahin et al., 9 Jul 2025). The hybrid model listed for AdeptHEQ-FL in the summary table is “(4,2),” corresponding to 4 qubits and 2 layers, whereas the baselines are reported with 6 qubits and 6 layers. The data block does not provide an interpretive ablation of this architectural difference, so any causal attribution beyond the reported results would be speculative.

The computational trade-offs are also quantified. CKKS adds approximately fFC4(fPQC;θFC4)Rmf_{FC4}(f_{PQC}; \theta^{FC4}) \in \mathbb{R}^m4 server-side compute, and the quantum simulator or training adds approximately fFC4(fPQC;θFC4)Rmf_{FC4}(f_{PQC}; \theta^{FC4}) \in \mathbb{R}^m5 wall-clock relative to a purely classical setting; the paper states that selective per-layer encryption limits the homomorphic encryption cost, and freezing reduces rounds’ parameter traffic (Jahin et al., 9 Jul 2025). Adaptive freezing is further said to cut device-to-server bandwidth by approximately fFC4(fPQC;θFC4)Rmf_{FC4}(f_{PQC}; \theta^{FC4}) \in \mathbb{R}^m6, thereby mitigating both network and compute load.

These results position AdeptHEQ-FL as a framework that improves measured accuracy while controlling two common systems bottlenecks: encrypted aggregation overhead and federated communication volume. At the same time, the reported gains are tied to the specific datasets, baselines, and design choices in the paper, and the method’s generalization beyond those settings remains an empirical question rather than an established theorem.

7. Scope, limitations, and future directions

The paper identifies several open challenges: extending homomorphic encryption beyond the final FC4 layer for full-model privacy, deployment on actual noisy quantum hardware, scaling to larger datasets and deeper quantum ansätze, and joint tuning of the freezing threshold and the differential privacy budget for optimal trade-off (Jahin et al., 9 Jul 2025). These limitations are structurally informative because they correspond directly to the framework’s current design boundaries.

One possible misconception is to read AdeptHEQ-FL as either a purely privacy-maximal protocol or a purely quantum-centered one. The formulation in the paper does not support either extreme. Privacy is concentrated in the differentially private validation-accuracy mechanism and selective encryption of FC4, while the quantum component is embedded in a broader hybrid classical-quantum architecture rather than treated as the sole source of performance. Similarly, the communication-efficiency claim is not derived from generic compression but from a specific criterion based on the EMA-smoothed fFC4(fPQC;θFC4)Rmf_{FC4}(f_{PQC}; \theta^{FC4}) \in \mathbb{R}^m7 change of each layer.

A plausible implication of the framework’s design is that it is best understood as a resource-aware synthesis of multiple constrained objectives: predictive performance, partial cryptographic protection, formal privacy accounting for aggregation signals, and communication reduction through layer sparing. In that sense, AdeptHEQ-FL occupies a specific point in the design space of federated hybrid classical-quantum learning systems, defined not by maximality on any single axis but by the coordinated use of adaptive aggregation, selective HE, and freezing policies within a single end-to-end pipeline (Jahin et al., 9 Jul 2025).

Definition Search Book Streamline Icon: https://streamlinehq.com
References (1)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to AdeptHEQ-FL.