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
As a developer, it would be helpful to have more descriptive error types, so that different types of crashes could be handled separately.
InvalidConfigError
InvalidDataError
TransformerNotFitError
TransformerInputError
TransformerProcessingError
The text was updated successfully, but these errors were encountered:
amontanez24
Successfully merging a pull request may close this issue.
Problem Description
As a developer, it would be helpful to have more descriptive error types, so that different types of crashes could be handled separately.
Expected behavior
InvalidConfigError
: Something is incorrect about the config. Use in any method that sets or updates the config:InvalidDataError
: The data is ill-formed in some way. Use any time data is passed in and doesn't match the expected formatTransformerNotFitError
: Trying to use the HyperTransformer before fitting itTransformerInputError
: The input to the hypertransformer is incorrectTransformerProcessingError
: Catch all for anything that doesn't fit into the above. NOTE - Only add this one if needed.The text was updated successfully, but these errors were encountered: