PairwiseDistance
-
class torch.nn.PairwiseDistance(p=2.0, eps=1e-06, keepdim=False)
[source] -
Computes the batchwise pairwise distance between vectors , using the p-norm:
- Parameters
- Shape:
-
- Input1: where
D = vector dimension
- Input2: , same shape as the Input1
- Output: . If
keepdim
isTrue
, then .
- Input1: where
- Examples::
-
>>> pdist = nn.PairwiseDistance(p=2) >>> input1 = torch.randn(100, 128) >>> input2 = torch.randn(100, 128) >>> output = pdist(input1, input2)
© 2019 Torch Contributors
Licensed under the 3-clause BSD License.
https://pytorch.org/docs/1.8.0/generated/torch.nn.PairwiseDistance.html