jactorch.functional.linalg#

Linear algebra functions.

Functions

normalize(tensor[, p, dim, eps])

Normalize the input along a specific dimension.

Functions

normalize(tensor, p=2, dim=-1, eps=1e-8)[source]#

Normalize the input along a specific dimension.

tensor=tensormax(tensorp,ϵ)
Parameters:
  • tensor (Tensor) – input.

  • p (int) – the exponent value in the norm formulation. Default: 2.

  • dim (int) – the dimension of the normalization.

  • eps (float) – eps for numerical stability.

Returns:

normalized input.

Return type:

Tensor