Normalize
Performs normalization of inputs over specified dimension.
nnf_normalize(input, p = 2, dim = 2, eps = 1e-12, out = NULL)
input
: input tensor of any shapep
: (float) the exponent value in the norm formulation. Default: 2dim
: (int) the dimension to reduce. Default: 1eps
: (float) small value to avoid division by zero. Default: 1e-12out
: (Tensor, optional) the output tensor. If out
is used, this operation won't be differentiable.For a tensor input
of sizes , each -element vector along dimension dim
is transformed as
With the default arguments it uses the Euclidean norm over vectors along dimension for normalization.
Useful links