L1Loss#
- class L1Loss[source]#
Bases:
Loss
This class computes the L1 loss (i.e. absolute error) for each sample as:
\[\text{L1Loss}(predict, target) = \sum_{i=0}^{N_{\text{elements}}} \left| predict_i - target_i \right|.\]Methods
- evaluate(predict, target)[source]#
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.- প্যারামিটার:
- রিটার্নস:
An array with values of the loss function of the shape
(N, 1)
.- রেইজেস:
QiskitMachineLearningError -- shapes of predict and target do not match
- রিটার্ন টাইপ:
- gradient(predict, target)[source]#
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.- প্যারামিটার:
- রিটার্নস:
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.
- রিটার্ন টাইপ: