Feature Selection

Sometimes more is not better, especially in the case of machine learning if we give a lot of unnecessary features, then there is a good chance then the model can overfit with the features. Also, it will take more time to converge as the model has to learn which are the important features and which are not.

Feature Selection algorithms:

Pros:

  1. Improved model performance
  2. Reduced overfitting
  3. Increased interpretability

Cons:

  1. Increased computational complexity
TODO:

Related Notes