As we established in the chapter introduction, building effective Quantum Machine Learning (QML) models requires a firm understanding of the computational framework. Quantum circuits, composed of quantum gates, are the fundamental structures used to define and execute quantum algorithms, including those central to QML. This section revisits these concepts, emphasizing aspects particularly relevant for designing and implementing advanced QML techniques.
Recall that a quantum circuit operates on a register of qubits. It describes a sequence of quantum gate operations applied to these qubits, potentially followed by measurements. Each qubit is typically represented as a horizontal line, and time flows from left to right. Gates act on one or more qubits at specific time steps.
The evolution of the quantum state ∣ψ⟩ under a sequence of gates U1,U2,…,Uk is described by the application of unitary operators: ∣ψfinal⟩=Uk…U2U1∣ψinitial⟩ The overall operation U=Uk…U2U1 is itself a unitary transformation, satisfying UU†=U†U=I, where I is the identity operator. This unitarity preserves the norm of the quantum state, reflecting the conservation of probability inherent in quantum mechanics (excluding measurement).
Consider a basic example involving a Hadamard gate (H) on qubit 0 and a Controlled-NOT (CNOT) gate with qubit 0 as control and qubit 1 as target:
A simple 2-qubit circuit applying a Hadamard gate to the first qubit, followed by a CNOT gate targeting the second qubit. This circuit generates the Bell state (∣00⟩+∣11⟩)/2.
Multi-qubit gates like the CNOT are essential for creating entanglement between qubits. Entanglement is a non-classical correlation that is believed to be a resource providing computational advantages in certain quantum algorithms, potentially including QML models. Gates like CNOT, SWAP, and the three-qubit Toffoli gate form the building blocks for constructing the more complex parameterized quantum circuits (PQCs) used extensively in Variational Quantum Algorithms (VQAs) and Quantum Neural Networks (QNNs).
A significant result in quantum computation is the existence of universal gate sets. A set of quantum gates is considered universal if any unitary operation on any number of qubits can be approximated to arbitrary accuracy by a quantum circuit composed solely of gates from that set.
Common examples of universal gate sets include:
The existence of finite universal gate sets is powerful. It means that any quantum algorithm, no matter how complex its target unitary transformation, can be broken down into a sequence of elementary, physically realizable operations. The Solovay-Kitaev theorem provides theoretical backing, showing that this approximation can often be done efficiently, meaning the number of gates required grows polynomially with log(1/ϵ), where ϵ is the desired approximation accuracy.
From a QML perspective, universality is related to the expressivity of a model. A PQC built using gates from a universal set can, in principle, approximate any target unitary transformation or generate any target quantum state, given sufficient depth and appropriate parameters. This capacity is fundamental for learning complex patterns or functions from data.
When designing quantum circuits, particularly for near-term quantum hardware, two primary resource metrics are:
Current Noisy Intermediate-Scale Quantum (NISQ) devices are limited in both width (tens to hundreds of qubits) and depth (due to finite coherence times, gates accumulate errors). This necessitates the development of QML algorithms and circuit designs (ansätze) that are hardware-efficient, minimizing depth and width while still providing sufficient computational capability.
Quantum computing frameworks like Qiskit, Pennylane, Cirq, and others provide programmatic interfaces to define, manipulate, and execute quantum circuits. Circuits are typically constructed by instantiating a circuit object and sequentially appending gate operations targeting specific qubits.
# Example pseudo-code (syntax varies by library)
from quantum_framework import QuantumCircuit
# Create a circuit with 2 qubits
circuit = QuantumCircuit(2)
# Apply gates
circuit.h(0) # Hadamard on qubit 0
circuit.cx(0, 1) # CNOT with control qubit 0, target qubit 1
# Add measurements (optional, depends on algorithm)
circuit.measure_all()
# Execute on a simulator or quantum device
# results = backend.run(circuit)
This programmatic approach is essential for implementing QML algorithms, where circuit structures might be dynamically generated or parameterized, and their execution is part of a larger hybrid quantum-classical workflow (especially for VQAs).
Understanding quantum circuits and gate sets is indispensable for the advanced QML topics covered later in this course:
In summary, quantum circuits are the executable programs of quantum computers. A thorough grasp of their construction, the properties of universal gate sets, and resource considerations like depth and width provides the necessary foundation for developing and analyzing the sophisticated QML algorithms that are the focus of this course.
© 2025 ApX Machine Learning