Embedded methods integrate feature selection directly into the learning algorithm. This technique embeds the selection process within the training of a predictive model. You know filter and wrapper techniques are discrete processes.

  1. Combines the benefits of filter and wrapper methods
  2. Train only one machine learning model for feature selection
  3. Computational cost is not severe since it is embedded within the training

Methods available

  1. Decision tree or Random Forest Classifier
  2. Lasso (L1 regularization)
  3. Ridge(L2 regularization)