As highlighted in the chapter introduction, translating classical data into the language of quantum mechanics is a necessary first step for quantum machine learning. This translation is formalized through quantum feature maps, functions that embed classical data points into quantum states within a Hilbert space. Understanding the mathematical structure of these maps is fundamental to designing effective QML algorithms.
Let's consider a classical dataset where each data point x belongs to some data space X. Often, X is a subset of Rd, representing d-dimensional feature vectors. A quantum feature map, denoted by ϕ, is a function that maps each classical data point x∈X to a quantum state ∣ϕ(x)⟩ in a Hilbert space H:
ϕ:X→HTypically, the Hilbert space H is the state space of n qubits, so H≅(C2)⊗n, which has a dimension of 2n. The state ∣ϕ(x)⟩ is often called a quantum feature state.
In practice, this mapping is usually implemented via a parameterized quantum circuit, represented by a unitary operator Uϕ(x). This unitary acts on a fixed initial state, commonly the all-zero state ∣0⟩⊗n:
∣ϕ(x)⟩=Uϕ(x)∣0⟩⊗nHere, the structure of the unitary operator Uϕ(x) depends on the classical input data x. The components of x control the parameters of the quantum gates within the circuit Uϕ(x). For example, components of x might determine the rotation angles of single-qubit gates or the strength of multi-qubit interactions.
The feature map ϕ effectively embeds the classical data space X into the high-dimensional quantum state space H. The arrangement and relationships between the quantum feature states {∣ϕ(x)⟩}x∈X define the geometry of the quantum feature space. This geometry plays a significant role in the performance of QML algorithms.
A primary way to quantify the relationship between two feature states ∣ϕ(x)⟩ and ∣ϕ(x′)⟩ is through their inner product ⟨ϕ(x′)∣ϕ(x)⟩. The squared absolute value of this inner product,
K(x,x′)=∣⟨ϕ(x′)∣ϕ(x)⟩∣2has a special significance. It corresponds to the probability of measuring the state ∣ϕ(x′)⟩ if the system is prepared in state ∣ϕ(x)⟩ (or vice versa). This quantity also defines a positive semi-definite kernel function K(x,x′), known as the quantum kernel. This kernel effectively measures the similarity between data points x and x′ in the quantum feature space. We will examine quantum kernels in detail in Chapter 3. For now, the important point is that the mathematical structure of the feature map ϕ directly dictates the resulting kernel K.
Several properties characterize quantum feature maps:
A commonly used example is the ZZ feature map. For input data x∈Rd and an n-qubit system (typically n=d), one popular form is:
Uϕ(x)=UentH⊗nUP(x)H⊗nWhere:
The circuit applies layers of single-qubit rotations dependent on x interleaved with entangling gates. The exact form of UP(x) and Uent can vary. For instance, the circuit might be repeated multiple times (L layers) to increase complexity:
Uϕ(x)=(UentUP(x)H⊗n)L∣0⟩⊗nHere's a conceptual circuit diagram for a 2-qubit ZZ feature map with one layer (L=1) and interaction ϕ(x1,x2)=(π−x1)(π−x2):
A 2-qubit ZZ Feature Map circuit. Input data x=(x1,x2) controls the rotation angles of RZ gates and the strength of the ZZ interaction term (implemented using CNOTs and an RZ gate). H represents the Hadamard gate.
This example shows how classical data x directly parameterizes the unitary evolution Uϕ(x), creating a specific quantum state ∣ϕ(x)⟩ for each input x.
While we often discuss feature maps generating pure states ∣ϕ(x)⟩, the framework can be extended to map classical data to mixed states, represented by density matrices ρ(x). This might occur naturally when considering noise effects during the state preparation Uϕ(x) or if the encoding strategy itself is designed to produce mixed states. Recalling the formalism from Chapter 1, the feature map becomes ϕ:X→D(H), where D(H) is the space of density operators on H. The kernel definition can also be adapted for density matrices using metrics like the Hilbert-Schmidt inner product or fidelity.
In summary, the mathematical foundation of quantum feature maps lies in the definition of a mapping ϕ from a classical data space X to a quantum Hilbert space H, typically implemented by a data-dependent unitary Uϕ(x). This mapping embeds classical data into a high-dimensional quantum state space, defining a geometry characterized by inner products (kernels). The properties of this map, such as its non-linearity and entangling capability, are determined by the structure of Uϕ(x) and are central to the potential advantages of QML models. The subsequent sections will build upon this foundation to explore specific types of feature maps and methods for analyzing their capabilities.
© 2025 ApX Machine Learning