Loss#

class Loss[fuente]#

Bases: ABC

Abstract base class for computing Loss.

Methods

abstract evaluate(predict, target)[fuente]#

An abstract method for evaluating the loss function. Inputs are expected in a shape of (N, *). Where N is a number of samples. Loss is computed for each sample individually.

Parámetros:
  • predict (ndarray) – an array of predicted values using the model.

  • target (ndarray) – an array of the true values.

Devuelve:

An array with values of the loss function of the shape (N, 1).

Muestra:

QiskitMachineLearningError – shapes of predict and target do not match

Tipo del valor devuelto:

ndarray

abstract gradient(predict, target)[fuente]#

An abstract method for computing the gradient. Inputs are expected in a shape of (N, *). Where N is a number of samples. Gradient is computed for each sample individually.

Parámetros:
  • predict (ndarray) – an array of predicted values using the model.

  • target (ndarray) – an array of the true values.

Devuelve:

An array with gradient values of the shape (N, *). The output shape depends on the loss function.

Muestra:

QiskitMachineLearningError – shapes of predict and target do not match.

Tipo del valor devuelto:

ndarray