| Algorithm 1: Feature Selection using RFE |
| Input: Feature matrix , target vector y, desired number of features Output: Selected feature subset 1. Initialize feature set all features in 2. While the number of features in : a. Train model M on to predict b. Compute feature importance scores for each feature in c. Identify feature with the lowest importance d. Remove from 3. Return = |