Recursive feature selection may not yield higher performance?

后端 未结 1 1213
广开言路
广开言路 2021-01-25 08:09

I\'m tring to analyze below data, modeled it with logistic regression first and then did the prediction, calculated the accuracy & auc; then performed recursive feature sele

相关标签:
1条回答
  • 2021-01-25 08:23

    There is simply no guarantee that any kind of feature selection (backward, forward, recursive - you name it) will actually lead to better performance in general. None at all. Such tools are there for convenience only - they may work, or they may not. Best guide and ultimate judge is always the experiment.

    Apart from some very specific cases in linear or logistic regression, most notably the Lasso (which, no coincidence, actually comes from statistics), or somewhat extreme cases with too many features (aka The curse of dimensionality), even when it works (or doesn't), there is not necessarily much to explain as to why (or why not).

    0 讨论(0)
提交回复
热议问题