In Scikit-learn, the ____ class is used for feature scaling.

  • DecisionTree
  • KMeans
  • LinearRegression
  • StandardScaler
In Scikit-learn, the StandardScaler class is used for feature scaling. Feature scaling is crucial in machine learning to ensure that all features have the same scale, preventing some features from dominating others during model training. StandardScaler standardizes features by removing the mean and scaling to unit variance.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *