Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

recursive feature elimination #6698

Open
osuom2014 opened this issue Jan 8, 2024 · 0 comments
Open

recursive feature elimination #6698

osuom2014 opened this issue Jan 8, 2024 · 0 comments
Labels
feast This may require a few weeks of work wish

Comments

@osuom2014
Copy link

What's your use case?

HI,

Recursive Feature Elimination (RFE) is a technique used in machine learning to enhance the performance and accuracy of a model by eliminating less important features. it will prevent:
Overfitting: Overfitting occurs when a model is too complex, having too many features relative to the number of observations. This can cause the model to perform well on the training data but poorly on unseen data. RFE helps by removing features that do not contribute much to the predictive power of the model, thus reducing the model's complexity.
Reduced Model Performance: Too many irrelevant or less important features can distract the model from focusing on features that are actually predictive. By eliminating these features, RFE helps in improving the model's performance.
Increased Training Time: The more features a model has, the longer it takes to train. By using RFE to remove unnecessary features, the training process becomes more efficient.
Difficulties in Interpretation: A model with fewer features is often easier to understand and interpret. RFE aids in simplifying the model, making it easier for humans to understand how it makes predictions.
Multicollinearity: This is a situation where two or more features are highly correlated. In such cases, it can be hard for the model to differentiate the effect of each feature. RFE can help by removing redundant features.

I know you might have RFE in multiple different places, it would be great if you could have it as a widget that users could use instead of looking for it in multiple places. Can you please add RFE as a widget?

Aidin

What's your proposed solution?

Are there any alternative solutions?

@janezd janezd added wish feast This may require a few weeks of work labels Jan 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feast This may require a few weeks of work wish
Projects
None yet
Development

No branches or pull requests

2 participants