Add a feature filter before feature selection#394
Add a feature filter before feature selection#394gvling wants to merge 5 commits intomarcotcr:masterfrom
Conversation
|
What is the use case for this? The model is using features 1-10, but you are only interested in explanations for features 1-5? |
|
When I use LIME to explain some instances, the result of explanations is changed randomly.
In the above cases, selectable features may useful. |
|
I don't think I am convinced that this is a feature we need - would anyone be interested in excluding certain features, even if they are important to the model? |
|
Interested. This would be very useful in situations where each example only depends on a small subset of the features in a dataframe and considering all of the features takes a while. |
I just add a filter before selection features.
When I use LIME to get an explanation with a model, I wouldn't get some features are come out in explanation result.
So I implement a filter before the feature selection.
That also can decrease the feature selection's search space to speed up the feature selection.