I applied a feature selector (with this great python package) in my dataset. This package uses the wrapper approach, where you define a classification model that runs on your data and find the best $k$ features and return the score (e.g. accuracy).
My question is: for my experiments, can i consider this accuracy obtained with the wrapper or should i train a new model with the $k$ features with the wrapper?
Thanks,