-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
[FIX] Change normalization to Scaling in SVM #3898
Conversation
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 user can opt out trough a check box. Currently the check box is in the optimization parameters box, perhaps something else is needed.
I don't see this check box.
Codecov Report
@@ Coverage Diff @@
## master #3898 +/- ##
==========================================
+ Coverage 85.02% 85.02% +<.01%
==========================================
Files 378 378
Lines 66679 66705 +26
==========================================
+ Hits 56691 56715 +24
- Misses 9988 9990 +2 |
Codecov Report
@@ Coverage Diff @@
## master #3898 +/- ##
=========================================
Coverage ? 84.84%
=========================================
Files ? 371
Lines ? 65514
Branches ? 0
=========================================
Hits ? 55588
Misses ? 9926
Partials ? 0 |
Issue
Fixes #3202
Description of changes
SVM was failing because Corpus widget outputs sparse matrix which must be then turned to dense, if we want to mean shift it. We would like to avoid that, so the current proposal is to just scale the data. The user can opt out trough a check box. Currently the check box is in the optimization parameters box, perhaps something else is needed.
Includes