L2Loss#

class L2Loss[स्रोत]#

आधार: Loss

This class computes the L2 loss (i.e. squared error) for each sample as:

\[\text{L2Loss}(predict, target) = \sum_{i=0}^{N_{\text{elements}}} (predict_i - target_i)^2.\]

Methods

evaluate(predict, target)[स्रोत]#

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.

मापदण्ड:
  • predict (ndarray) -- an array of predicted values using the model.

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

प्रदत्त :

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

उभारता है :

QiskitMachineLearningError -- shapes of predict and target do not match

प्रदत्त प्रकार :

ndarray

gradient(predict, target)[स्रोत]#

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.

मापदण्ड:
  • predict (ndarray) -- an array of predicted values using the model.

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

प्रदत्त :

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

उभारता है :

QiskitMachineLearningError -- shapes of predict and target do not match.

प्रदत्त प्रकार :

ndarray