StandardScaler

E426669

StandardScaler is a preprocessing tool in machine learning that normalizes numerical features by removing the mean and scaling to unit variance.

All labels observed (1)

Label Occurrences
StandardScaler canonical 2

How this entity was disambiguated

Statements (30)

Predicate Object
instanceOf data preprocessing tool ⓘ
feature scaling method ⓘ
normalization technique ⓘ
appliedTo continuous numerical variables ⓘ
assumption features are approximately normally distributed ⓘ
benefit centers features around zero ⓘ
ensures features have comparable scale ⓘ
improves convergence of gradient-based optimizers ⓘ
reduces bias toward features with larger numeric ranges ⓘ
category data normalization method ⓘ
feature engineering technique ⓘ
commonFormula (x - mean) / standard_deviation ⓘ
helpsWith distance-based algorithms ⓘ
gradient-based algorithms ⓘ
regularized linear models ⓘ
normalizationType standardization ⓘ
notTypicallyAppliedTo categorical variables ⓘ
operation removes mean from each feature ⓘ
scales features to unit variance ⓘ
parameterEstimatedFrom training data ⓘ
parameterReusedOn test data ⓘ
relatedConcept z-score normalization ⓘ
relatedTo MinMaxScaler ⓘ
RobustScaler ⓘ
supports fitting on training set ⓘ
transforming new data with learned parameters ⓘ
usedFor data preprocessing ⓘ
feature scaling ⓘ
normalizing numerical features ⓘ
usedIn machine learning ⓘ

How these facts were elicited

Referenced by (2)

Full triples — surface form annotated when it differs from this entity's canonical label.

ColumnTransformer → commonlyUsedWith → StandardScaler ⓘ
Pipeline (scikit-learn) → usedWith → StandardScaler ⓘ
subject linked to: Pipeline