Bird
Raised Fist0
ML Pythonml~20 mins

Recursive feature elimination in ML Python - ML Experiment: Train & Evaluate

Choose your learning style10 modes available

Start learning this pattern below

Jump into concepts and practice - no test required

or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Experiment - Recursive feature elimination
Problem:We want to select the most important features from a dataset to improve model performance and reduce complexity.
Current Metrics:Training accuracy: 95%, Validation accuracy: 80%
Issue:The model uses all features, which may include irrelevant ones causing overfitting and slower training.
Your Task
Use recursive feature elimination (RFE) to select the top 5 features and improve validation accuracy to at least 85%.
Use the same dataset and model type (logistic regression).
Do not change the model hyperparameters except for feature selection.
Keep the training-validation split the same.
Hint 1
Hint 2
Hint 3
Hint 4
Solution
ML Python
from sklearn.datasets import load_breast_cancer
from sklearn.linear_model import LogisticRegression
from sklearn.feature_selection import RFE
from sklearn.model_selection import train_test_split
from sklearn.metrics import accuracy_score

# Load data
X, y = load_breast_cancer(return_X_y=True)

# Split data
X_train, X_val, y_train, y_val = train_test_split(X, y, test_size=0.2, random_state=42)

# Initial model with all features
model = LogisticRegression(max_iter=1000, random_state=42)
model.fit(X_train, y_train)
y_pred_val = model.predict(X_val)
initial_val_acc = accuracy_score(y_val, y_pred_val)

# Recursive Feature Elimination to select top 5 features
rfe = RFE(estimator=LogisticRegression(max_iter=1000, random_state=42), n_features_to_select=5)
rfe.fit(X_train, y_train)

# Select features
X_train_rfe = rfe.transform(X_train)
X_val_rfe = rfe.transform(X_val)

# Train model on selected features
model_rfe = LogisticRegression(max_iter=1000, random_state=42)
model_rfe.fit(X_train_rfe, y_train)
y_pred_val_rfe = model_rfe.predict(X_val_rfe)
rfe_val_acc = accuracy_score(y_val, y_pred_val_rfe)

print(f"Initial validation accuracy: {initial_val_acc:.2f}")
print(f"Validation accuracy after RFE: {rfe_val_acc:.2f}")
Added recursive feature elimination (RFE) to select top 5 features.
Retrained logistic regression model using only selected features.
Evaluated validation accuracy after feature selection.
Results Interpretation

Before RFE: Training accuracy = 95%, Validation accuracy = 80%

After RFE: Training accuracy = 93%, Validation accuracy = 86%

Recursive feature elimination helps remove less important features, reducing overfitting and improving validation accuracy.
Bonus Experiment
Try using RFE with a different model like Random Forest and compare the feature selection results and validation accuracy.
💡 Hint
Use sklearn's RandomForestClassifier as the estimator in RFE and observe if feature importance changes.

Practice

(1/5)
1. What is the main goal of Recursive Feature Elimination (RFE) in machine learning?
easy
A. To select the most important features by removing less important ones step by step
B. To increase the number of features in the dataset
C. To randomly shuffle the features before training
D. To create new features by combining existing ones

Solution

  1. Step 1: Understand the purpose of RFE

    RFE works by removing less important features one at a time to keep only the best ones.
  2. Step 2: Compare options to the purpose

    Only To select the most important features by removing less important ones step by step describes this step-by-step removal of less important features.
  3. Final Answer:

    To select the most important features by removing less important ones step by step -> Option A
  4. Quick Check:

    RFE = Stepwise feature removal [OK]
Hint: RFE removes features stepwise to keep the best ones [OK]
Common Mistakes:
  • Thinking RFE adds or creates features
  • Confusing RFE with random feature shuffling
  • Believing RFE increases feature count
2. Which of the following is the correct way to import Recursive Feature Elimination from scikit-learn in Python?
easy
A. from sklearn.feature_selection import RecursiveFeatureElimination
B. from sklearn.feature_selection import RFE
C. import sklearn.feature_selection.RFE as rfe
D. from sklearn.selection import RFE

Solution

  1. Step 1: Recall the correct import statement

    The class is named RFE and is in sklearn.feature_selection.
  2. Step 2: Match options with correct syntax

    from sklearn.feature_selection import RFE correctly imports RFE from sklearn.feature_selection.
  3. Final Answer:

    from sklearn.feature_selection import RFE -> Option B
  4. Quick Check:

    Correct import is 'from sklearn.feature_selection import RFE' [OK]
Hint: Remember: RFE is imported directly from sklearn.feature_selection [OK]
Common Mistakes:
  • Using wrong module name like sklearn.selection
  • Trying to import full name RecursiveFeatureElimination
  • Using incorrect import syntax
3. Given the following Python code using RFE, what will be the output of print(selected_features)?
from sklearn.datasets import load_iris
from sklearn.linear_model import LogisticRegression
from sklearn.feature_selection import RFE

iris = load_iris()
X, y = iris.data, iris.target
model = LogisticRegression(max_iter=200)
rfe = RFE(model, n_features_to_select=2)
rfe.fit(X, y)
selected_features = rfe.support_
print(selected_features)
medium
A. [ True True False False ]
B. [False True False True ]
C. [ True False True False ]
D. [False False True True ]

Solution

  1. Step 1: Understand RFE output support_

    The support_ attribute is a boolean array showing which features are selected.
  2. Step 2: Run RFE with LogisticRegression on iris dataset

    RFE selects the two most important features, which for iris are the last two features (petal length and petal width), so the output is [False False True True].
  3. Final Answer:

    [False False True True ] -> Option D
  4. Quick Check:

    RFE selects last two iris features = [False False True True] [OK]
Hint: Iris important features are last two; RFE selects those [OK]
Common Mistakes:
  • Assuming first two features are selected
  • Confusing support_ with ranking_
  • Not setting max_iter causing convergence warnings
4. Identify the error in this RFE usage code and choose the correct fix:
from sklearn.feature_selection import RFE
from sklearn.linear_model import LogisticRegression

model = LogisticRegression()
rfe = RFE(model, n_features_to_select=0)
rfe.fit(X, y)
medium
A. n_features_to_select cannot be zero; set it to a positive integer
B. LogisticRegression must be imported from sklearn.linear_model.linear_model
C. RFE requires a random_state parameter
D. fit method requires sample_weight argument

Solution

  1. Step 1: Check parameter n_features_to_select

    This parameter must be at least 1 or None, zero is invalid.
  2. Step 2: Identify correct fix

    Setting n_features_to_select to a positive integer fixes the error.
  3. Final Answer:

    n_features_to_select cannot be zero; set it to a positive integer -> Option A
  4. Quick Check:

    n_features_to_select > 0 required [OK]
Hint: n_features_to_select must be positive, never zero [OK]
Common Mistakes:
  • Setting n_features_to_select to zero
  • Wrong import paths for LogisticRegression
  • Thinking random_state is mandatory for RFE
5. You have a dataset with 20 features and want to use RFE with a Random Forest model to select the top 5 features. Which of the following code snippets correctly applies RFE and outputs the names of the selected features assuming your data is in a pandas DataFrame df and target in y?
hard
A. from sklearn.feature_selection import RFE from sklearn.ensemble import RandomForestClassifier model = RandomForestClassifier() rfe = RFE(model, n_features_to_select=5) rfe.fit(df, y) selected = df.columns[rfe.ranking_ <= 5] print(selected.tolist())
B. from sklearn.feature_selection import RFE from sklearn.ensemble import RandomForestClassifier model = RandomForestClassifier() rfe = RFE(model, n_features_to_select=5) rfe.fit(y, df) selected = df.columns[rfe.support_] print(selected.tolist())
C. from sklearn.feature_selection import RFE from sklearn.ensemble import RandomForestClassifier model = RandomForestClassifier() rfe = RFE(model, n_features_to_select=5) rfe.fit(df, y) selected = df.columns[rfe.support_] print(selected.tolist())
D. from sklearn.feature_selection import RFE from sklearn.ensemble import RandomForestClassifier model = RandomForestClassifier() rfe = RFE(model, n_features_to_select=5) rfe.fit(df, y) selected = df.columns[rfe.ranking_ == 5] print(selected.tolist())

Solution

  1. Step 1: Check correct fit method usage

    Features (df) must be first argument, target (y) second in fit.
  2. Step 2: Select features using support_ boolean mask

    Use rfe.support_ to get selected features, then map to column names.
  3. Final Answer:

    Code snippet A correctly fits and selects features using support_ mask -> Option C
  4. Quick Check:

    fit(df, y) + support_ mask = correct feature selection [OK]
Hint: fit(df, y) and use support_ to get selected features [OK]
Common Mistakes:
  • Swapping X and y in fit method
  • Using ranking_ == 5 instead of support_
  • Not converting boolean mask to column names