Integrating with a ColumnTransformer #416
dcbrien
started this conversation in
Show and tell
Replies: 1 comment 5 replies
-
I don't get 1. Currently all |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I thought I would explain how I implemented the skfda tools into my pipeline. For a classification based task I wanted to mix fda outputs with numerical data to create a feature vector. This isn't straight forward in sklearn. What I ended up doing was:
That was the simplest way I found, but nicely avoids data leakage in the fda data. I have multiple functional data as well, so each one can go to a custom pipeline with custom basis / smoothing.
I wonder if something like multivariate fPCA could be considered for future versions to add to this?
Beta Was this translation helpful? Give feedback.
All reactions