---
title: 'Hybrid-FQNN: Quantum-Classical Dense Architectures'
url: https://www.emergentmind.com/topics/hybrid-fully-connected-quantum-neural-network-h-fqnn
type: topic
---

# Hybrid-FQNN: Quantum-Classical Dense Architectures

Searching arXiv for recent and relevant papers on Hybrid-Fully Connected Quantum Neural Network (H-FQNN).
Hybrid-Fully Connected Quantum Neural Network (H-FQNN) denotes a family of hybrid quantum-classical neural architectures that combine classical fully connected processing with parameterized quantum circuits, typically in an end-to-end trainable pipeline. In the cited literature, the term is used in two closely related senses: first, for models in which a variational quantum circuit replaces or augments a classical dense hidden layer inside an otherwise classical network; second, for hybrid models whose quantum component itself has increased or fully entangling connectivity, approaching an all-to-all or highly connected quantum layer. Representative instances include ADS-B anomaly detection, dementia detection from MRI, continuous-variable regression, binary classification with variational-circuit neurons, and fully entangling quantum-neural ansätze for many-body simulation [2509.15991; 2301.12505; 2212.04209; 2501.12130].

## 1. Terminology and conceptual scope

A common H-FQNN pattern is a classical-quantum-classical stack in which classical features are first transformed by dense layers, then processed by a variational quantum circuit (VQC), and finally mapped by a classical output layer. In the ADS-B anomaly-detection formulation, the network contains an input layer, a classical dense hidden layer with ReLU, a quantum layer implemented as a VQC, and a 2-neuron output layer for binary classification; the quantum layer replaces a classical dense layer that would otherwise appear in a fully connected neural network (FNN) baseline [2509.15991]. In a regression setting on the Boston Housing dataset, the architecture is described as `[Input Layer] → [Quantum Layer] → [Output Layer]`, with the quantum layer wrapped as a `KerasLayer` inside TensorFlow/Keras, again functioning as a non-classical hidden transformation within a classical network [2212.04209].

A second usage emphasizes the connectivity of the quantum subnetwork. In the quantum many-body literature, the hybrid ansatz couples a neural network with a hardware-efficient parameterized quantum circuit (PQC), and the fully connected variant is characterized by entanglement in which every qubit can be connected to every other qubit [2501.12130]. The architecture-search literature makes this interpretation explicit by treating entanglement topology, gate composition, measurement design, and classical-quantum coupling as search dimensions of a broader HQNN design space [2605.18345].

This suggests that H-FQNN is better understood as an architectural class than as a single canonical model. What remains stable across these formulations is the hybridization principle: a quantum layer supplies a trainable nonlinear map or expressive quantum feature transformation, while classical dense modules handle preprocessing, postprocessing, or both.

## 2. Architectural motifs and coupling patterns

The dominant coupling pattern is sequential. A general HQNN workflow is described as **input → classical pre-processing → classical layers → quantum layer (PQC) → measurement → classical post-processing**, with classical and quantum parameters trained end-to-end [2605.18345]. The ADS-B H-FQNN instantiates this directly as `Classical features → Dense1 → ReLU → Dense2 → ReLU → Quantum layer (VQC) → Final Dense (output) → Loss`, and the dementia-detection QCCNN inserts a VQC bottleneck between a ResNet-18 feature extractor and a final fully connected classifier, summarized as
$$
QCNN = L_{4 \rightarrow 2} \cdot Q_{512 \rightarrow 4} \cdot L_{512}.
$$
In that model, the VQC reduces a 512-dimensional classical representation to 4 expectation values before classical classification [2509.15991; 2301.12505].

A parallel coupling pattern also appears. The Parallel Hybrid Network (PHN) passes the same input simultaneously to a classical multilayer perceptron (MLP) and a VQC, then linearly combines their outputs:
$$
o_m = s^c_m c_m + s^q_m q_m.
$$
The stated motivation is that the quantum branch learns a smooth sinusoidal foundation, while the classical branch fills non-harmonic gaps in the landscape [2303.03227]. Although PHN is not labeled H-FQNN in the source paper, it formalizes an important variant of hybrid fully connected design: dense classical and quantum pathways can be combined without forcing a strictly serial bottleneck.

Related photonic hybrids extend the same logic to continuous-variable (CV) quantum hardware. Austin et al. replace classical hidden layers in a photonic neural network with a trainable CV quantum neural network, leaving classical fully connected input and output layers in place [2407.02366]. Across these cases, the architectural question is not whether classical and quantum modules should be combined, but where the quantum layer should sit, how strongly it should be coupled to dense classical components, and whether serial or parallel composition is preferable.

## 3. Quantum layer construction, encoding, and measurement

Feature encoding is one of the principal determinants of H-FQNN behavior. The architecture-search literature treats **angle encoding** and **amplitude encoding** as explicit search-space choices [2605.18345]. In the ADS-B H-FQNN, the quantum layer uses angle embedding via \(R_X\) rotations, followed by a strongly entangling variational circuit in PennyLane; in the Boston Housing model, classical inputs are mapped to qubits with `AngleEmbedding`, typically using \(R_y(x_i)\) rotations [2509.15991; 2212.04209]. A different compression strategy is used in QuClassi, where two classical features are encoded per qubit by sequential \(RY\) and \(RZ\) rotations, reducing qubit requirements for classification [2103.11307].

Ansatz design varies substantially across H-FQNN-related systems. The ADS-B model uses strongly entangling circuits with learnable rotations around the \(Z\), \(Y\), and \(Z\) axes together with CNOT entanglement [2509.15991]. The binary-classification HNN based on Qiskit uses the `RealAmplitudes` ansatz with one repetition and full entanglement, with each hidden-layer “neuron” realized by an independent VQC [2201.01820]. In the many-body setting, the PQC component is a hardware-efficient ansatz,
$$
U(\theta) = \prod_{l=1}^{N_l} \left[ \prod_{(m,n)} \text{CNOT}_{m,n} \prod_{j=1}^{N_q} R_Z(\theta^Z_{l,j}) R_X(\theta^X_{l,j}) \right] \prod_{k=1}^{N_q} H_k,
$$
and the fully connected case permits every qubit pair to be entangled [2501.12130]. In CV photonic hybrids, the quantum layer is constructed from displacement, squeezing, non-Gaussian Kerr gates, and linear interferometers, with homodyne readout [2407.02366].

Readout mechanisms are equally heterogeneous. A broad template for hybrid models is
$$
\hat{y} = f(x; \theta) = \langle \psi_{x,\theta} | \hat{O} | \psi_{x,\theta} \rangle,
$$
with \(\hat{O}\) commonly taken to be a Pauli observable [2212.04209]. The ADS-B H-FQNN measures Pauli-\(Z\) expectation values; the dementia-detection QCCNN measures qubits in the \(Z\)-basis to obtain a 4-dimensional classical vector; QuClassi instead uses a SWAP test to compute quantum state fidelity as the similarity signal for classification [2509.15991; 2301.12505; 2103.11307].

The phrase “fully connected” therefore admits two concrete technical readings in this literature: dense classical coupling around a quantum layer, and dense or all-to-all entangling connectivity within the quantum layer itself. The architecture-search and genetic-search papers both treat this as a design variable rather than a fixed property [2605.18345; 2604.15048].

## 4. Training and optimization strategies

Most H-FQNNs are trained with hybrid gradient-based optimization. The ADS-B model uses Adam with \(\alpha=0.02\), 150 epochs, and either `BCEWithLogitsLoss` or `CrossEntropyLoss`; gradients of the variational parameters are computed as part of the overall hybrid workflow [2509.15991]. The Boston Housing model uses mean squared error,
$$
L(\boldsymbol{\theta}) = \frac{1}{N} \sum_{i=1}^N (\hat{y}_i - y_i)^2,
$$
and trains end-to-end with classical optimization after embedding the quantum circuit as a `KerasLayer` [2212.04209]. The binary-classification HNN with VQC neurons uses negative log-likelihood with gradients estimated by the parameter-shift rule and classical stochastic or batch gradient descent [2201.01820].

Software frameworks make these training loops practical. PennyLane appears repeatedly as the interface for implementing VQCs and coupling them to PyTorch or TensorFlow/Keras [2509.15991; 2212.04209]. For CV photonic hybrids, the cited implementation uses TensorFlow/Keras for classical layers and PennyLane/Strawberry Fields for quantum layers [2407.02366]. VQNet formalizes the general pattern by treating a VQC as a quantum operator in a symbolic computational graph, with `qop` and `qop_pmeasure` providing differentiable quantum nodes inside hybrid models [1901.09133].

Beyond backpropagation, two additional optimization directions are prominent. First, the GAT-QNN framework introduces a two-stage genetic algorithm in which a macroCircuit defines the search space, microCircuits are sampled and trained with parameter sharing, and a second genetic stage performs backend-aware inference-time architecture selection without retraining [2604.15048]. The paper explicitly states that this methodology is extensible to H-FQNNs by adding genes for entanglement or connectivity options such as all-to-all, nearest-neighbor, or arbitrary patterns. Second, FLOPs-aware neural architecture search formulates HQNN design as a multi-objective problem over encoding, variational structure, measurement, and postprocessing,
$$
a^* = \arg\min_{a \in \mathcal{A}} \mathcal{J}(a),
$$
with Pareto selection over accuracy and total FLOPs [2605.18345]. A separate quantized-network line frames training as QBO/QCBO and uses Quantum Conditional Gradient Descent (QCGD), with the paper presenting this as relevant to hybrid fully connected quantum neural networks because it permits arbitrary activation and loss functions through spline interpolation [2506.18240].

## 5. Empirical performance and application domains

Reported H-FQNN performance is application-dependent and should be interpreted in the context of backend assumptions, network scale, and baseline choice. The published results span anomaly detection, medical imaging, regression, binary classification, photonic classification, and quantum many-body simulation.

| Domain | Representative configuration | Reported result |
|---|---|---|
| ADS-B anomaly detection | Dense + VQC + dense output | Accuracy 90.17%–94.05%; best F1 93.99% [2509.15991] |
| MRI dementia detection | ResNet-18 + VQC bottleneck + FC | 97.5% testing and 95.1% validation accuracy [2301.12505] |
| Binary classification with VQC neurons | Hidden-layer VQCs + output VQC | Roughly 10% higher accuracy than an individual VQC in simulation [2201.01820] |
| Photonic hybrid classification | FC input/output + CVQNN middle layer | 0.85 ± 0.03 vs 0.79 ± 0.03 for equal-size classical baseline [2407.02366] |

In ADS-B anomaly detection, the H-FQNN is reported to achieve accuracies ranging from 90.17% to 94.05%, comparable to a traditional FNN at 91.50% to 93.37%, with the best H-FQNN result reaching 94.05% accuracy and 93.99% F1 score at 10,000 attack samples, `BCEWithLogitsLoss`, and 6 qubits [2509.15991]. This is one of the clearest examples in which the H-FQNN is explicitly benchmarked against a classical FNN with matched preprocessing and task definition.

In MRI dementia detection, the hybrid QCCNN uses a ResNet-18 feature extractor, a 4-qubit variational bottleneck, and a final dense classifier. The paper reports 97.5% and 95.1% testing and validation accuracies, respectively, compared with 91.5% and 89.2% for the classical neural network baseline; on a testing set of 100 normal and 100 dementia MRI images, the hybrid model detected normal and demented images correctly 95% and 98% of the time, compared to 89% and 91% for the CNN [2301.12505].

For shallow feedforward HNNs whose neurons are themselves VQCs, simulation results show that the hybrid neural network achieves roughly 10% higher classification accuracy and 20% better minimization of cost than an individual VQC, but real-hardware performance remains strong only when qubit and gate counts are sufficiently small [2201.01820]. In CV photonic hybrids, small hybrid networks achieved 0.85 ± 0.03 accuracy versus 0.79 ± 0.03 for a matched classical network, and the classical network required approximately twice as many parameters to match hybrid performance [2407.02366].

The many-body literature evaluates an H-FQNN-like fully entangling hybrid ansatz under a different objective: relative energy rather than classification accuracy. There, the hybrid method achieves notably lower relative energy than standalone neural quantum states, and for LiH the stated error drops from \(\sim 5.8 \times 10^{-2}\) Ha for a modest standalone NQS to \(\sim 6.0 \times 10^{-5}\) Ha for the hybrid method with a 4-layer PQC [2501.12130]. This widens the scope of H-FQNN from conventional supervised learning to variational scientific computing.

## 6. Limitations, misconceptions, and current directions

A recurrent misconception is that any insertion of a quantum layer into a dense network yields a decisive accuracy advantage. The ADS-B anomaly-detection study instead reports competitive performance: the H-FQNN is comparable to the classical FNN, sometimes slightly better and sometimes marginally worse depending on the experimental condition [2509.15991]. The binary-classification HNN paper likewise shows that simulated improvements do not automatically transfer to present-day hardware; on quantum hardware, both the hybrid network and the individual VQC only perform well when the qubit and gate count is sufficiently small [2201.01820].

Another limitation concerns inductive bias. The PHN paper argues that angle-embedded quantum neural networks tend to approximate functions with a truncated Fourier-series character and may therefore struggle with non-harmonic features; its solution is to place the VQC in parallel with an MLP rather than in strict series [2303.03227]. This suggests that some H-FQNN failures may reflect a mismatch between task structure and the spectral bias of the chosen quantum encoding or ansatz, rather than an inherent weakness of hybridization itself.

Noise, compilation variability, and backend heterogeneity remain central concerns. GAT-QNN addresses this by separating parameter optimization from deployment-time architecture selection and reports consistent 22–23% test accuracy gains for GA-driven inference across multiple backends in MNIST classification, while also allowing smaller deployed microCircuits with lower gate count [2604.15048]. FLOPs-aware NAS treats computational efficiency as a first-class objective, using Pareto search over accuracy and cost to avoid over-complex quantum circuits [2605.18345]. These studies do not define a single H-FQNN architecture, but they supply concrete mechanisms for making H-FQNN design backend-aware and resource-aware.

Terminology is also unsettled. “HQFNN” in the fuzzy-neural literature may denote a **Hierarchical Fused Quantum Fuzzy Neural Network** [2403.09318] or a **Highly Quantized Fuzzy Neural Network** [2506.11146], not a Hybrid-Fully Connected Quantum Neural Network. At the same time, both fuzzy models share the broader hybrid design principle of coupling quantum subcircuits to classical feature extractors or fusion layers. A plausible implication is that future H-FQNN taxonomies will need to distinguish more carefully between dense classical-quantum coupling, fully entangling quantum connectivity, and task-specific hybrids such as fuzzy or photonic variants.

Current research directions therefore converge on three problems: enlarging the architecture space without losing trainability, selecting architectures under explicit hardware constraints, and determining when quantum layers contribute genuine task-relevant expressivity rather than merely additional parameters. Within that agenda, H-FQNN remains less a finalized model than a technically active template for hybrid dense-quantum learning.

Source: https://www.emergentmind.com/topics/hybrid-fully-connected-quantum-neural-network-h-fqnn