-
Notifications
You must be signed in to change notification settings - Fork 589
Prevent CUDA issues when running UMAP with scikit-learn compatibility test suite #7107
New issue
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
base: branch-25.10
Are you sure you want to change the base?
Prevent CUDA issues when running UMAP with scikit-learn compatibility test suite #7107
Conversation
Nice! Cool to see that this was an easy thing to fix! Could you remove
|
@@ -547,6 +547,11 @@ | |||
# "check_transformers_unfitted": "UMAP does not raise error when transform called before fit", | |||
"check_parameters_default_constructible": "UMAP parameters are mutated on init", | |||
"check_fit_check_is_fitted": "UMAP passes check_is_fitted before being fit", | |||
"check_estimators_empty_data_messages": "UMAP does not handle empty data", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How much work would it be to make it so that the test passes instead of xfailing it? We already raise the right type of exception, is it "just" a question of adjusting the text to match what the check expects?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed a bench of them.
Answers #7068