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
ValueError: Unable to configure output for GroupedTransformer(groups=['GROEP_A', 'GROEP_B'],
transformer=StandardScaler()) because `set_output` is not available.
The text was updated successfully, but these errors were encountered:
Hey there! Thanks for reporting this issue. This should certainly be possible and it should be enough to implement get_feature_names_out (as explained in the official doc section).
@olivier-s-j please let us know if you would be interested in opening a PR tackling GroupedTransformer.
@koaning this could be a nice addition and a quick win for most transformers honestly.
In Scikit-learn the
set_output
API was recently introduced: https://scikit-learn.org/stable/auto_examples/miscellaneous/plot_set_output.htmlHowever, unless I am mistaken, Scikit-lego is not yet compatible with this. It would be nice to have this compatibility.
I came across this incompatibility when creating:
Which results in:
The text was updated successfully, but these errors were encountered: