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
get_transformer_tree_yaml
Please indicate the following details about the environment in which you found the bug:
The get_transformer_tree_yaml method raises the following error:
RepresenterError: ('cannot represent an object', defaultdict(<class 'dict'>, {'0_int': {'transformer': 'NumericalTransformer', 'outputs': ['0_int.value', '0_int.is_null']}, '1_float': {'transformer': 'NumericalTransformer', 'outputs': ['1_float.value', '1_float.is_null']}, '2_str': {'transformer': 'CategoricalTransformer', 'outputs': ['2_str.value']}, '3_datetime': {'transformer': 'DatetimeTransformer', 'outputs': ['3_datetime.value', '3_datetime.is_null']}}))
Also consider adding a NotFittedError to this method as well.
NotFittedError
from rdt import HyperTransformer from rdt import get_demo data = get_demo() ht = HyperTransformer() ht.fit_transform(data) ht.get_transformer_tree_yaml()
The text was updated successfully, but these errors were encountered:
amontanez24
Successfully merging a pull request may close this issue.
Environment Details
Please indicate the following details about the environment in which you found the bug:
Error Description
The
get_transformer_tree_yaml
method raises the following error:Also consider adding a
NotFittedError
to this method as well.Steps to reproduce
The text was updated successfully, but these errors were encountered: