Input
ExecutionExecution trigger that begins fitting the scaler
AI/ML/Preprocessing
Learn per-feature offsets and scales from a training table. Distance- and gradient-based models (Logistic Regression, Elastic Net, SVM, KNN, Gaussian Mixture) only behave when their features share a scale.
Scores range from 0 to 10. Higher values mean more impact, exposure, or operational weight.
Execution trigger that begins fitting the scaler
Choose which backend supplies the training data
Standard centers each feature and divides it by its standard deviation. MinMax squeezes each feature into the Min..Max range. MaxAbs divides each feature by its largest absolute value, keeping zeros at zero.
Lower bound of the target range. Only read when Method is MinMax.
Upper bound of the target range. Only read when Method is MinMax.
Activated once the scaler is fitted
Thread-safe handle to the fitted scaler. Feed it to Apply Transform to scale any table with these statistics.
Value subtracted from each feature before scaling: the mean for Standard, the minimum for MinMax, zero for MaxAbs
Multiplier applied to each feature. linfa stores the reciprocal, so this is 1/std for Standard and 1/(max-min) for MinMax, and it stays 1 for constant features.