Loss#
- class Loss[kaynak]#
Bases:
ABC
Abstract base class for computing Loss.
Methods
- abstract evaluate(predict, target)[kaynak]#
An abstract method for evaluating the loss function. Inputs are expected in a shape of
(N, *)
. WhereN
is a number of samples. Loss is computed for each sample individually.- Parametreler:
- Dönüşler:
An array with values of the loss function of the shape
(N, 1)
.- Harekete geçirir:
QiskitMachineLearningError – shapes of predict and target do not match
- Dönüş türü:
- abstract gradient(predict, target)[kaynak]#
An abstract method for computing the gradient. Inputs are expected in a shape of
(N, *)
. WhereN
is a number of samples. Gradient is computed for each sample individually.- Parametreler:
- Dönüşler:
An array with gradient values of the shape
(N, *)
. The output shape depends on the loss function.- Harekete geçirir:
QiskitMachineLearningError – shapes of predict and target do not match.
- Dönüş türü: