We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HyperTransformer
With the new changes to HyperTransformer, the user won't need to params when instantiating a HyperTransformer.
Remove all params:
field_transformers
field_data_types
default_data_type_transformers
copy
transform_output_types
_valid_output_sdtypes
As a result, the constructor for HyperTransformer should be empty
>>> ht = HyperTransformer()
The text was updated successfully, but these errors were encountered:
pvk-developer
No branches or pull requests
Problem Description
With the new changes to
HyperTransformer
, the user won't need to params when instantiating aHyperTransformer
.Expected behavior
Remove all params:
field_transformers
-- Users can set via a method (see Update transformers by column name inHyperTransformer
#402)field_data_types
-- Users can set via a method (see Improve updatingfield_data_types
inHyperTransformer
#400)default_data_type_transformers
-- Users can set via a method (see Update transformers by data type (inHyperTransformer
) #403)copy
-- We should always copy the datatransform_output_types
-- Turned into a property (see Rename property:_valid_output_sdtypes
#406)As a result, the constructor for
HyperTransformer
should be emptyThe text was updated successfully, but these errors were encountered: