Recall & Review
beginner
What is Recursive Feature Elimination (RFE)?
RFE is a method to select important features by repeatedly training a model, ranking features by importance, and removing the least important ones until the best set remains.
Click to reveal answer
beginner
Why do we use Recursive Feature Elimination?
We use RFE to improve model performance and reduce complexity by keeping only the most useful features and removing irrelevant or noisy ones.
Click to reveal answer
intermediate
How does RFE decide which features to remove?
RFE trains a model and ranks features by their importance scores (like coefficients or feature importances). It removes the least important features in each step.
Click to reveal answer
intermediate
What types of models can be used with RFE?
RFE works with models that provide feature importance, such as linear models with coefficients or tree-based models with feature importance scores.
Click to reveal answer
intermediate
What is a common stopping criterion in RFE?
RFE stops when a desired number of features is reached or when removing more features hurts model performance.
Click to reveal answer
What does Recursive Feature Elimination do?
✗ Incorrect
RFE removes the least important features step-by-step based on model importance scores.
Which model type is suitable for RFE?
✗ Incorrect
RFE requires models that can rank features by importance, like linear or tree-based models.
When does RFE usually stop removing features?
✗ Incorrect
RFE stops when it reaches the target number of features or performance worsens.
What is the main goal of using RFE?
✗ Incorrect
RFE aims to keep only the most useful features for better model performance.
Which of these is NOT a step in RFE?
✗ Incorrect
RFE does not add noise; it removes features based on importance.
Explain how Recursive Feature Elimination works step-by-step.
Think about training, ranking, removing, and repeating.
You got /4 concepts.
Why is feature selection important and how does RFE help with it?
Consider benefits of fewer features and how RFE chooses them.
You got /4 concepts.