You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A known bug introduced by #583 is that the TableVectorizer is not grid-searchable with sklearn on column_specific_transformers.
This is due to two things: first, the inheritance (something to do with set_params and get_params AFAIK), and second, the fact that we have None as default for transformer parameters (e.g. high_card_cat_transformer).
cc @glemaitre
#583 also introduced a new example that explained how to grid-search with the tool, and while the code is fine, it doesn't work due to the aforementioned issues. PR should reintroduce it (it's located in examples/FIXME/.
Describe the bug
A known bug introduced by #583 is that the
TableVectorizer
is not grid-searchable with sklearn oncolumn_specific_transformers
.This is due to two things: first, the inheritance (something to do with
set_params
andget_params
AFAIK), and second, the fact that we haveNone
as default for transformer parameters (e.g.high_card_cat_transformer
).cc @glemaitre
#583 also introduced a new example that explained how to grid-search with the tool, and while the code is fine, it doesn't work due to the aforementioned issues. PR should reintroduce it (it's located in
examples/FIXME/
.Steps/Code to Reproduce
Expected Results
No error is thrown, the parameters are applied to the nested transformers.
Actual Results
Versions
The text was updated successfully, but these errors were encountered: