Pairwise distance
Computes the batchwise pairwise distance between vectors ,
using the p-norm:
nn_pairwise_distance(p = 2, eps = 1e-06, keepdim = FALSE)
p
: (real): the norm degree. Default: 2eps
: (float, optional): Small value to avoid division by zero. Default: 1e-6keepdim
: (bool, optional): Determines whether or not to keep the vector dimension. Default: FALSED = vector dimension
keepdim
is TRUE
, then .if (torch_is_installed()) { pdist <- nn_pairwise_distance(p = 2) input1 <- torch_randn(100, 128) input2 <- torch_randn(100, 128) output <- pdist(input1, input2) }
Useful links