Loss.gradient¶
- abstract Loss.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.- Parameters:
- Return type:
- Returns:
An array with gradient values of the shape
(N, *)
. The output shape depends on the loss function.- Raises:
QiskitMachineLearningError -- shapes of predict and target do not match.