KernelLoss#
- class KernelLoss[소스]#
기반 클래스:
ABC
Abstract base class for computing the loss of a kernel function. Unlike many loss functions, which only take into account the labels and predictions of a model, kernel loss functions may be a function of internal model parameters or quantities that are generated during training.
Methods
- abstract evaluate(parameter_values, quantum_kernel, data, labels)[소스]#
An abstract method for evaluating the loss of a kernel function on a labeled dataset.
- 매개변수:
parameter_values (Sequence[float]) – An array of values to assign to the user params
quantum_kernel (TrainableKernel) – A trainable quantum kernel object to evaluate
data (ndarray) – An
(N, M)
matrix containing the dataN = # samples, M = dimension of data
labels (ndarray) – A length-N array containing the truth labels
- 반환:
A loss value
- 반환 형식: