PairwiseDistance¶
-
class
torch.nn.
PairwiseDistance
(p=2.0, eps=1e-06, keepdim=False)[source]¶ Computes the pairwise distance between vectors , using the p-norm:
- Parameters
- Shape:
Input1: or where N = batch dimension and D = vector dimension
Input2: or , same shape as the Input1
Output: or based on input dimension. If
keepdim
isTrue
, then or based on input dimension.
- Examples::
>>> pdist = nn.PairwiseDistance(p=2) >>> input1 = torch.randn(100, 128) >>> input2 = torch.randn(100, 128) >>> output = pdist(input1, input2)