Closed CallMeDek closed 3 days ago
Hello @CallMeDek ,
The core feature of Stabl is precisely to select the right number of features using the synthetic features. If you want to do this because no features are selected, you can use the parameter explore=True
that will select n_explore
top features when no features are selected.
If you still want to select the top k
features, you can set artificial_type=None
(so no artificial features are added) and change the function _get_support_mask
Thank you @xavdurand,
It helps me a lot. I had to deal with the problem the you mentioned. I will try the solution you told me.
Thanks.
Hi,
Thank you for your work! I really enjoy applying it for my research.
I wonder if I am able to set the number of features to be extracted by command option.
Just like it would take at least 10, 20, 30 and so on.
Otherwise, could you tell me the section of codes related to the function?
Thank you