-
Notifications
You must be signed in to change notification settings - Fork 184
MAINT: More logistic regression deselections due to numerical issues #2798
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: main
Are you sure you want to change the base?
MAINT: More logistic regression deselections due to numerical issues #2798
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests.
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
| - tests/test_common.py::test_estimators[StackingClassifier(estimators=[('est1',LogisticRegression(C=0.1)),('est2',LogisticRegression(C=1))])-check_sample_weights_invariance(kind=zeros)] <1.1 | ||
| # Here it doesn't reach convergence under the default maximum iterations, and the test | ||
| # turns the convergence warning into an error. Note that it has numeric differences w.r.t. | ||
| # the original sklearn, so it's not guaranteed to reach the same optimality after each iteration. |
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.
Is it possible to suppress warnings for this particular test instead of removing it? What are the further steps? Do we want to leave it as deselected forever or some modification to logistic regression is planned?
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.
The test is explicitly checking that no warning is issued.
|
/azp run Nightly |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Description
Another deselection for a scikit-learn test about logistic regression which appears to be failing due to numerical tolerance issues.
Checklist:
Completeness and readability
Testing