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
ClusterBasedNormalizer
GaussianNormalizer
I'm unable to print either of these transformers. Both are complaining that a parameter is missing (even if I end up specifying it)
The ClusterBasedNormalizer:
>>> from rdt.transformers.numerical import ClusterBasedNormalizer >>> cbe = ClusterBasedNormalizer() >>> print(cbe) AttributeError: 'ClusterBasedNormalizer' object has no attribute 'max_clusters' >>> cbe = ClusterBasedNormalizer(max_clusters=10) >>> print(cbe) AttributeError: 'ClusterBasedNormalizer' object has no attribute 'max_clusters'
The GaussianNormalizer:
>>> from rdt.transformers.numerical import GaussianNormalizer >>> gn = GaussianNormalizer() >>> print(gn) AttributeError: 'GaussianNormalizer' object has no attribute 'distribution' >>> from rdt.transformers.numerical import GaussianNormalizer >>> gn = GaussianNormalizer(distribution='parametric') >>> print(gn) AttributeError: 'GaussianNormalizer' object has no attribute 'distribution'
The text was updated successfully, but these errors were encountered:
pvk-developer
No branches or pull requests
Environment Details
Error Description
I'm unable to print either of these transformers. Both are complaining that a parameter is missing (even if I end up specifying it)
Steps to reproduce
The
ClusterBasedNormalizer
:The
GaussianNormalizer
:The text was updated successfully, but these errors were encountered: