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
|
0 replies
|
No. The ColumnTransformer's API is really clunky to use
only the first format then?
|
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
in TableVectorizer, for
specific_transformerswe 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)?
All reactions