logo

Normalization of Data 📂Data Science

Normalization of Data

Terminology

Normalization

Normalization refers to transforming given data to a value between 00 and 11. It is commonly achieved through a transformation TT using the data’s maximum value xmaxx_{\text{max}} and minimum value xminx_{\text{min}}. T(x)=xxminxmaxxmin T (x) = {{ x - x_{\text{min}}} \over { x_{\text{max}} - x_{\text{min}}}} Sometimes, it’s simply called Scaling.

Description

Note that in linear algebra, the term normalized vector refers to a vector that has been orthonormalized, which is a distinct concept from normalization.

Regularization, although similar in wording and context, refers to techniques related to loss in training rather than altering the data itself, marking a clear distinction.

See Also