mlx.nn.losses.hinge_loss

目录

mlx.nn.losses.hinge_loss#

class hinge_loss(inputs: array, targets: array, reduction: Literal['none', 'mean', 'sum'] = 'none')#

Computes the hinge loss between inputs and targets.

\[\text{hinge}(y, y_{\text{pred}}) = \max(0, 1 - y \cdot y_{\text{pred}})\]
参数:
  • inputs (array) -- The predicted values.

  • targets (array) -- The target values. They should be -1 or 1.

  • reduction (str, optional) -- Specifies the reduction to apply to the output: 'none' | 'mean' | 'sum'. Default: 'none'.

返回:

The computed hinge loss.

返回类型:

array