torch.nn.functional.cosine_similarity#
- torch.nn.functional.cosine_similarity(x1, x2, dim=1, eps=1e-8) Tensor#
- Returns cosine similarity between - x1and- x2, computed along dim.- x1and- x2must be broadcastable to a common shape.- dimrefers to the dimension in this common shape. Dimension- dimof the output is squeezed (see- torch.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)