File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -119,12 +119,12 @@ Recursive feature elimination
119119=============================
120120
121121Given an external estimator that assigns weights to features (e.g., the
122- coefficients of a linear model), recursive feature elimination (:class: `RFE `)
122+ coefficients of a linear model), the goal of recursive feature elimination (:class: `RFE `)
123123is to select features by recursively considering smaller and smaller sets of
124124features. First, the estimator is trained on the initial set of features and
125125the importance of each feature is obtained either through any specific attribute
126126(such as ``coef_ ``, ``feature_importances_ ``) or callable. Then, the least important
127- features are pruned from current set of features.That procedure is recursively
127+ features are pruned from current set of features. That procedure is recursively
128128repeated on the pruned set until the desired number of features to select is
129129eventually reached.
130130
You can’t perform that action at this time.
0 commit comments