File tree 1 file changed +2
-2
lines changed
Filter options
1 file changed +2
-2
lines changed
Original file line number Diff line number Diff line change @@ -119,12 +119,12 @@ Recursive feature elimination
119
119
=============================
120
120
121
121
Given 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 `)
123
123
is to select features by recursively considering smaller and smaller sets of
124
124
features. First, the estimator is trained on the initial set of features and
125
125
the importance of each feature is obtained either through any specific attribute
126
126
(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
128
128
repeated on the pruned set until the desired number of features to select is
129
129
eventually reached.
130
130
You can’t perform that action at this time.
0 commit comments