Skip to content
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

[Review] Print debug message if SVM convergence is poor #3562

Merged

Conversation

tfeher
Copy link
Contributor

@tfeher tfeher commented Feb 26, 2021

closes #947

If the input data for SVM is not normalized correctly, then convergence can be very slow. The solver can even fail to converge. This PR detects such cases and prints a debug message with suggestions how to fix this problem.

Such problems were reported in #947, #1664, #2857, #3233. The threshold for reporting is set so that the message is printed in those cases. I have tested several properly normalized cases to confirm that the message is not shown. Still, the threshold for printing the message does not have a proper theoretical justification, and false positives might occur. Therefore only a debug message is shown instead of a warning.

@tfeher tfeher added improvement Improvement / enhancement to an existing function non-breaking Non-breaking change labels Feb 26, 2021
@tfeher tfeher requested a review from a team as a code owner February 26, 2021 11:06
@codecov-io
Copy link

Codecov Report

Merging #3562 (a33d009) into branch-0.19 (fc718e4) will decrease coverage by 0.02%.
The diff coverage is n/a.

Impacted file tree graph

@@               Coverage Diff               @@
##           branch-0.19    #3562      +/-   ##
===============================================
- Coverage        80.73%   80.71%   -0.03%     
===============================================
  Files              227      227              
  Lines            17605    17619      +14     
===============================================
+ Hits             14214    14221       +7     
- Misses            3391     3398       +7     
Flag Coverage Δ
dask 44.99% <ø> (+0.03%) ⬆️
non-dask 72.92% <ø> (-0.02%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
python/cuml/linear_model/linear_regression.pyx 88.23% <0.00%> (-3.53%) ⬇️
python/cuml/ensemble/randomforestregressor.pyx 75.91% <0.00%> (-0.14%) ⬇️
python/cuml/ensemble/randomforestclassifier.pyx 73.48% <0.00%> (-0.05%) ⬇️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update fc718e4...a33d009. Read the comment docs.

Copy link
Member

@dantegd dantegd left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

changes lgtm

@dantegd dantegd added this to PR-WIP in v0.19 Release via automation Mar 1, 2021
@dantegd dantegd added the 5 - Ready to Merge Testing and reviews complete, ready to merge label Mar 1, 2021
@dantegd
Copy link
Member

dantegd commented Mar 1, 2021

rerun tests

@dantegd
Copy link
Member

dantegd commented Mar 1, 2021

@gpucibot merge

@dantegd
Copy link
Member

dantegd commented Mar 2, 2021

rerun tests

@rapids-bot rapids-bot bot merged commit 6dddae4 into rapidsai:branch-0.19 Mar 2, 2021
v0.19 Release automation moved this from PR-WIP to Done Mar 2, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
5 - Ready to Merge Testing and reviews complete, ready to merge improvement Improvement / enhancement to an existing function non-breaking Non-breaking change
Projects
No open projects
v0.19 Release
  
Done
Development

Successfully merging this pull request may close these issues.

[FEA] Improve stopping condition for SVM training
3 participants