Feature Scaling

In this lesson, we'll uncover the details surrounding Feature Scaling, which is an important step before training the models because it speeds up the computations while building the model.

We'll cover the following...

Feature scaling

Feature scaling comes under Feature Engineering. Feature scaling refers to the process of normalizing the features, or columns, or dimensions. Many Machine Learning algorithms are sensitive to the scale or magnitude of the features.

Benefits

It has the following benefits

  • It helps in gradient descent based algorithms to converge faster.

  • It helps in distance-based algorithms to give equal weight to each feature while computing the similarity.

  • It helps to compare the Feature Importance. ...