QSVM¶
- class QSVM(feature_map, training_dataset=None, test_dataset=None, datapoints=None, multiclass_extension=None, quantum_instance=None)[source]¶
Quantum SVM algorithm.
A key concept in classification methods is that of a kernel. Data cannot typically be separated by a hyperplane in its original space. A common technique used to find such a hyperplane consists on applying a non-linear transformation function to the data. This function is called a feature map, as it transforms the raw features, or measurable properties, of the phenomenon or subject under study. Classifying in this new feature space – and, as a matter of fact, also in any other space, including the raw original one – is nothing more than seeing how close data points are to each other. This is the same as computing the inner product for each pair of data in the set. In fact we do not need to compute the non-linear feature map for each datum, but only the inner product of each pair of data points in the new feature space. This collection of inner products is called the kernel and it is perfectly possible to have feature maps that are hard to compute but whose kernels are not.
The QSVM algorithm applies to classification problems that require a feature map for which computing the kernel is not efficient classically. This means that the required computational resources are expected to scale exponentially with the size of the problem. QSVM uses a Quantum processor to solve this problem by a direct estimation of the kernel in the feature space. The method used falls in the category of what is called supervised learning, consisting of a training phase (where the kernel is calculated and the support vectors obtained) and a test or classification phase (where new data without labels is classified according to the solution found in the training phase).
Internally, QSVM will run the binary classification or multiclass classification based on how many classes the data has. If the data has more than 2 classes then a multiclass_extension is required to be supplied. Aqua provides several
multiclass_extensions
.See also https://arxiv.org/abs/1804.11326
- Parameters
feature_map (
Union
[QuantumCircuit
,FeatureMap
]) – Feature map module, used to transform datatraining_dataset (
Optional
[Dict
[str
,ndarray
]]) – Training dataset.test_dataset (
Optional
[Dict
[str
,ndarray
]]) – Testing dataset.datapoints (
Optional
[ndarray
]) – Prediction dataset.multiclass_extension (
Optional
[MulticlassExtension
]) – If number of classes is greater than 2 then a multiclass scheme must be supplied, in the form of a multiclass extension.quantum_instance (
Union
[QuantumInstance
,BaseBackend
,None
]) – Quantum Instance or Backend
- Raises
AquaError – Multiclass extension not supplied when number of classes > 2
Attributes
Returns backend.
Returns quantum instance.
Return a numpy random.
returns result
Methods
QSVM.construct_circuit
(x1, x2[, measurement])Generate inner product of x1 and x2 with the given feature map.
QSVM.construct_kernel_matrix
(x1_vec[, …])Construct kernel matrix, if x2_vec is None, self-innerproduct is conducted.
QSVM.get_kernel_matrix
(quantum_instance, …)Construct kernel matrix, if x2_vec is None, self-innerproduct is conducted.
QSVM.load_model
(file_path)Load a model from a file path.
QSVM.predict
(data[, quantum_instance])Predict using the svm.
QSVM.run
([quantum_instance])Execute the algorithm with selected backend.
QSVM.save_model
(file_path)Save the model to a file path.
QSVM.set_backend
(backend, **kwargs)Sets backend with configuration.
QSVM.setup_datapoint
(datapoints)Setup data points, if the data were there, they would be overwritten.
QSVM.setup_test_data
(test_dataset)Setup test data, if the data were there, they would be overwritten.
QSVM.setup_training_data
(training_dataset)Setup training data, if the data were there, they would be overwritten.
QSVM.test
(data, labels[, quantum_instance])Test the svm.
QSVM.train
(data, labels[, quantum_instance])Train the svm.