Module linalg
Expand description
The linalg module.
Enums§
- Norm
- Specifies the type of norm to compute.
Constants§
- DEFAULT_
EPSILON - Default epsilon value to avoid division by zero
Functions§
- cosine_
similarity - Computes the cosine similarity between two tensors along a specified dimension.
- l0_norm
- Computes the L0 norm of a tensor along a specified dimension.
- l1_norm
- Computes the L1 norm of a tensor along a specified dimension.
- l2_norm
- Computes the L2 norm of a tensor along a specified dimension.
- lp_norm
- Computes the general
L(p)
norm of a tensor along a specified dimension. - max_
abs_ norm - Computes the L:INFINITY norm of a tensor along a specified dimension.
- min_
abs_ norm - Computes the L:NEG_INFINITY norm of a tensor along a specified dimension.
- vector_
norm - Computes the vector norm of a tensor along a specified dimension.
- vector_
normalize - Normalize a tensor versus its
vector_norm
.