Overview of Normalization algorithms in oneDAL
mainNormalization in oneDAL provides algorithms to transform data before it is used by other machine learning models, such as classifiers. This process can improve both computational accuracy and efficiency.
Currently, oneDAL implements two primary normalization techniques:
- z-score: Scales data based on the mean and standard deviation.
- min-max: Scales data to a specific range (typically [0, 1]) based on the minimum and maximum values.