April 2017
Intermediate to advanced
532 pages
12h 39m
English
Standard scalar standardizes features of the data set by scaling to unit variance and removing the mean (optionally) using column summary statistics on the samples in the training set.
This process is a very common pre-processing step.
Standardization improves the convergence rate during the optimization process. It also prevents features with large variances from exerting an overly large influence during model training.
StandardScaler class has the following parameters in the constructor:
new StandardScaler(withMean: Boolean, withStd: Boolean)
Read now
Unlock full access