On this page
PairwiseDistance
class torch.nn.PairwiseDistance(p=2.0, eps=1e-06, keepdim=False)[source]-
Computes the pairwise distance between input vectors, or between columns of input matrices.
Distances are computed using
p-norm, with constantepsadded to avoid division by zero ifpis negative, i.e.:where is the vector of ones and the
p-norm is given by.- Parameters
- Shape:
-
- Input1:
or
where
N = batch dimensionandD = vector dimension - Input2: or , same shape as the Input1
- Output:
or
based on input dimension. If
keepdimisTrue, then or based on input dimension.
- Input1:
or
where
- Examples::
-
>>> pdist = nn.PairwiseDistance(p=2) >>> input1 = torch.randn(100, 128) >>> input2 = torch.randn(100, 128) >>> output = pdist(input1, input2)
© 2024, PyTorch Contributors
PyTorch has a BSD-style license, as found in the LICENSE file.
https://pytorch.org/docs/2.1/generated/torch.nn.PairwiseDistance.html