specific_transformers
accepting 2 formats in TableVectorizer
#781
Closed
jeromedockes
started this conversation in
General
Replies: 2 comments 1 reply
-
WDYT about allowing only the first format (ie the same as ColumnTransformer)?
No. The ColumnTransformer's API is really clunky to use
|
Beta Was this translation helpful? Give feedback.
0 replies
-
No. The ColumnTransformer's API is really clunky to use
only the first format then?
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
in TableVectorizer, for
specific_transformers
we can pass a list of (name, transformer, columns) tuples OR a list of (transformer, columns) tuples (but not a list mixing both). this adds complexity in the docstring and parameter validation code, and makes it different from scikit-learn's ColumnTransformer which only accepts the first format.WDYT about allowing only the first format (ie the same as ColumnTransformer)?
Beta Was this translation helpful? Give feedback.
All reactions