mindspore.nn.CosineEmbeddingLoss
- class mindspore.nn.CosineEmbeddingLoss(margin=0.0, reduction="mean")[source]
CosineEmbeddingLoss creates a criterion to measure the similarity between two tensors using cosine distance.
Given two tensors
, , and a Tensor label with values 1 or -1:- Parameters
- Inputs:
logits_x1 (Tensor) - Tensor of shape
where means, any number of additional dimensions.logits_x2 (Tensor) - Tensor of shape
, same shape and dtype as logits_x1.labels (Tensor) - Contains value 1 or -1. Suppose the shape of logits_x1 is
, then the shape of labels must be .
- Outputs:
Tensor or Scalar, if reduction is “none”, its shape is the same as labels. Otherwise, a scalar value will be returned.
- Raises
TypeError – If margin is not a float.
ValueError – If reduction is not one of ‘none’, ‘mean’, ‘sum’.
ValueError – If margin is not in range [-1, 1].
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> logits_x1 = Tensor(np.array([[0.3, 0.8], [0.4, 0.3]]), mindspore.float32) >>> logits_x2 = Tensor(np.array([[0.4, 1.2], [-0.4, -0.9]]), mindspore.float32) >>> labels = Tensor(np.array([1, -1]), mindspore.int32) >>> cosine_embedding_loss = nn.CosineEmbeddingLoss() >>> output = cosine_embedding_loss(logits_x1, logits_x2, labels) >>> print(output) 0.0003425479