Generation of prepared transforms after feature selection #481
d-a-bunin
started this conversation in
Improvements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Description
After fit in feature selection transforms we get a list of features to be filtered during transform. The problem is that during inference we don't really need the transforms that aren't passing the filter, but we are still computing them and wasting resources.
In theory, we could somehow regenerate the list of transforms after feature selection in a way that only necessary transforms are present.
Thoughts
Even if the pipeline should be refit after such regeneration it is still a useful feature.
Related
Beta Was this translation helpful? Give feedback.
All reactions