Source code for minerva.losses.negative_cossine_similatiry

import torch
from torch.nn.functional import cosine_similarity

# --- Loss ---------------------------------------------------------

# Borrowed from https://github.com/lightly-ai/lightly/blob/master/lightly/loss/negative_cosine_similarity.py

[docs] class NegativeCosineSimilarity(torch.nn.Module): """Implementation of the Negative Cosine Simililarity used in the SimSiam[0] paper. [0] SimSiam, 2020, https://arxiv.org/abs/2011.10566""" def __init__(self, dim: int = 1, eps: float = 1e-8) -> None: """Same parameters as in torch.nn.CosineSimilarity Args: dim (int, optional): Dimension where cosine similarity is computed. Default: 1 eps (float, optional): Small value to avoid division by zero. Default: 1e-8 """ super().__init__() self.dim = dim self.eps = eps
[docs] def forward(self, x0: torch.Tensor, x1: torch.Tensor) -> torch.Tensor: return -cosine_similarity(x0, x1, self.dim, self.eps).mean()