-
-
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] Rank widget supports Scorer inputs #2350
Conversation
cc: @pavlin-policar |
My bad, I was completely unaware of this functionality. The changes you made to the Fitter class make things simpler, so that's a big 👍 from me. As far as I can tell (apart from a grammatical mistake in the docs) everything seems okay. I'm not sure what you could do about the Too many ancestors error pylint spits out though... |
@@ -14,6 +14,11 @@ Signals | |||
|
|||
An input data set. | |||
|
|||
- **Scorer** (multiple) | |||
|
|||
Models that implements feature scoring interface (linear / logistic |
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.
Models that implement the feature scoring interface
Codecov Report
@@ Coverage Diff @@
## master #2350 +/- ##
==========================================
+ Coverage 73.29% 73.34% +0.05%
==========================================
Files 317 317
Lines 55474 55509 +35
==========================================
+ Hits 40658 40714 +56
+ Misses 14816 14795 -21 |
Issue
Rank didn't support Scorer (e.g Random Forest) inputs since the introduction of Fitters.
Description of changes
Have Rank support Random Forest as an input Scorer. Also SGD.
Includes