-
Notifications
You must be signed in to change notification settings - Fork 544
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
Cython wrapper for v-measure #4785
Cython wrapper for v-measure #4785
Conversation
rerun tests |
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, can you add this metric to docs/source/api.rst
Codecov Report
@@ Coverage Diff @@
## branch-22.08 #4785 +/- ##
===============================================
Coverage ? 77.62%
===============================================
Files ? 180
Lines ? 11384
Branches ? 0
===============================================
Hits ? 8837
Misses ? 2547
Partials ? 0
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report at Codecov.
|
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.
Had one question, but it doesn't impact approval. LGTM!
@gpucibot merge |
rerun tests |
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 just saw that v_measure was also present in raft. I think it would make more sense to wrap the raft version, and remove the C++ file of cuml to avoid code duplication.
Agreed, but let's raise that as a separate issue, since the functionality was not yet removed from cuML and the wrappers have already been implemented. I suspect it will be straightforward to migrate based on the code in this PR. |
rerun tests |
1 similar comment
rerun tests |
This PR resolves rapidsai#802 by adding python API for `v_measure_score`. Also came across an [issue](rapidsai#4784) while working on this. Authors: - Shaswat Anand (https://github.com/shaswat-indian) Approvers: - Micka (https://github.com/lowener) - William Hicks (https://github.com/wphicks) URL: rapidsai#4785
This PR resolves #802 by adding python API for
v_measure_score
.Also came across an issue while working on this.