Table of Contents

Enum NormType

Namespace
AiDotNet.Preprocessing.Scalers
Assembly
AiDotNet.dll

Specifies the norm to use for sample normalization.

public enum NormType

Fields

L1 = 0

L1 norm (Manhattan distance) - sum of absolute values.

L2 = 1

L2 norm (Euclidean distance) - square root of sum of squares.

Max = 2

Max norm (Chebyshev distance) - maximum absolute value.