-
Notifications
You must be signed in to change notification settings - Fork 46
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
Add BinaryClassifierPrecisionEfficacy
metric
#714
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #714 +/- ##
==========================================
+ Coverage 94.91% 95.06% +0.15%
==========================================
Files 106 110 +4
Lines 4126 4273 +147
==========================================
+ Hits 3916 4062 +146
- Misses 210 211 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Thanks for the review @amontanez24. I addressed the comments in 791c7d5 and aafdd1e with some refactoring as you recommended |
@@ -32,7 +32,7 @@ def wrapper(*args, **kwargs): | |||
ipython_interpreter = str(get_ipython()) | |||
if 'ZMQInteractiveShell' in ipython_interpreter and 'iframe' in renderers: | |||
# This means we are using jupyter notebook | |||
pio.renderers.default = 'vscode' | |||
pio.renderers.default = 'iframe' |
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.
I found that this change was accidentally added in a previous PR, so I reverted it.
b946f19
to
94f83e9
Compare
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.
LGTM! @frances-h Can you take a look? You know the details of the algorithm better than I do
CU-86b3m9u4d
Resolve #711