-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Fix runtime exception in prior trainer sample and update the comments. #3295
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
Conversation
@@ -63,7 +63,7 @@ public static void Example() | |||
// Positive Precision: 0.50 | |||
// Positive Recall: 1.00 | |||
// LogLoss: 1.05 | |||
// LogLossReduction: -4.89 |
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.
Why does it change the baseline?
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.
It didn't the documentation was stale. I verified this without the prior trainer change from the master branch (removed the change that changes label type to boolean) and below is the output:
Accuracy: 0.50
AUC: 0.50
F1 Score: 0.67
Negative Precision: 0.00
Negative Recall: 0.00
Positive Precision: 0.50
Positive Recall: 1.00
Log Loss: 1.05
Log Loss Reduction: -0.05
Entropy: 1.00
Codecov Report
@@ Coverage Diff @@
## master #3295 +/- ##
==========================================
- Coverage 72.63% 72.63% -0.01%
==========================================
Files 807 807
Lines 145127 145127
Branches 16219 16219
==========================================
- Hits 105414 105412 -2
- Misses 35295 35298 +3
+ Partials 4418 4417 -1
|
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.
Thank you @codemzs !
…utput in comments.
…utput in comments. (dotnet#3295)
fixes #3294