QrFidelityQuantumKernel module
- class QrFidelityQuantumKernel(*, feature_map, fidelity, enforce_psd, evaluate_duplicates, max_circuits_per_job)
An implementation of the quantum kernel interface based on the
BaseStateFidelity
algorithm.This class is a derivative of the Qiskit Machine Learning Package
FidelityQuantumKernel
. Please refer to the class for more documentation.Here, the kernel function is defined as the overlap of two quantum states defined by a parametrized quantum circuit (called feature map):
\[K(x,y) = |\langle \phi(x) | \phi(y) \rangle|^2\]
- __init__(self, *, feature_map, fidelity, enforce_psd, evaluate_duplicates, max_circuits_per_job)
- Args:
- feature_map: Parameterized circuit to be used as the feature map. If
None
is given,ZZFeatureMap
is used with two qubits. If there’sa mismatch in the number of qubits of the feature map and the number of featuresin the dataset, then the kernel will try to adjust the feature map to reflect thenumber of features.fidelity: An instance of theBaseStateFidelity
primitive to be usedto compute fidelity between states. Default isComputeUncompute
which is created ontop of the reference sampler defined bySampler
.enforce_psd: Project to the closest positive semidefinite matrix ifx = y
.DefaultTrue
.evaluate_duplicates: Defines a strategy how kernel matrix elements are evaluated ifduplicate samples are found. Possible values are:-all
means that all kernel matrix elements are evaluated, even the diagonalones when training. This may introduce additional noise in the matrix.-off_diagonal
when training the matrix diagonal is set to 1, the restelements are fully evaluated, e.g., for two identical samples in thedataset. When inferring, all elements are evaluated. This is the defaultvalue.-none
when training the diagonal is set to 1 and if two identical samplesare found in the dataset the corresponding matrix element is set to 1.When inferring, matrix elements for identical samples are set to 1.max_circuits_per_job: Maximum number of circuits per job for the backend. Pleasecheck the backend specifications. UseNone
for all entries per job. DefaultNone
.