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 data N = # samples, M = dimension of data

  • labels (ndarray) – A length-N array containing the truth labels

戻り値:

A loss value

戻り値の型:

float