torch.nn.functional.cosine_similarity¶
- 
torch.nn.functional.cosine_similarity(x1, x2, dim=1, eps=1e-08) → Tensor¶ Returns cosine similarity between
x1andx2, computed along dim.x1andx2must be broadcastable to a common shape.dimrefers to the dimension in this common shape. Dimensiondimof the output is squeezed (seetorch.squeeze()), resulting in the output tensor having 1 fewer dimension.Supports type promotion.
- Parameters
 
Example:
>>> input1 = torch.randn(100, 128) >>> input2 = torch.randn(100, 128) >>> output = F.cosine_similarity(input1, input2) >>> print(output)