Skip to main content
deleted 18 characters in body
Source Link
Brian Spiering
  • 23.9k
  • 2
  • 30
  • 120

Yes - You can use the same the same algorithm for both feature selection and prediction. The most commonCommon examples are L1 regression and tree-based algorithms. Those algorithms both find the most important features and predict targets using the same fitting mechanism.

The difference between those algorithms and your examples is that those algorithms do both steps concurrently and your examples are sequential.

There is no single best algorithm for feature selection that can also be used with other models for prediction. Different algorithms will perform better on different datasets.

Yes - You can use the same the same algorithm for both feature selection and prediction. The most common examples are L1 regression and tree-based algorithms. Those algorithms both find the most important features and predict targets using the same fitting mechanism.

The difference between those algorithms and your examples is that those algorithms do both steps concurrently and your examples are sequential.

There is no single best algorithm for feature selection that can also be used with other models for prediction. Different algorithms will perform better on different datasets.

Yes - You can use the same algorithm for both feature selection and prediction. Common examples are L1 regression and tree-based algorithms. Those algorithms both find the most important features and predict targets using the same fitting mechanism.

The difference between those algorithms and your examples is that those algorithms do both steps concurrently and your examples are sequential.

There is no single best algorithm for feature selection that can also be used with other models for prediction. Different algorithms will perform better on different datasets.

Source Link
Brian Spiering
  • 23.9k
  • 2
  • 30
  • 120

Yes - You can use the same the same algorithm for both feature selection and prediction. The most common examples are L1 regression and tree-based algorithms. Those algorithms both find the most important features and predict targets using the same fitting mechanism.

The difference between those algorithms and your examples is that those algorithms do both steps concurrently and your examples are sequential.

There is no single best algorithm for feature selection that can also be used with other models for prediction. Different algorithms will perform better on different datasets.