Open tzemicheal opened 3 years ago
I can submit PR of my implementation based on similar implementation #1522 .
This issue has been marked stale due to no recent activity in the past 30d. Please close this issue if no further response or action is needed. Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed. This issue will be marked rotten if there is no activity in the next 60d.
This issue has been labeled inactive-90d
due to no recent activity in the past 90 days. Please close this issue if no further response or action is needed. Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed.
Is your feature request related to a problem? Please describe. I would like to be able use cuML for average precision recall score (area under precision-recall curve). This is similar to the
sklearn.metrics.average_precision_score
. I see, there isroc_auc_score
andprecision_recall_curve
undercuML.metrics
. I think adding feature forcuML.metrics.average_precision_score
is a small additional feature to the metrics module.Describe the solution you'd like Currently, I am using this implementation to perform average_precision_score using
cuML.metrics.precision_recall_curve
.This could be implemented along the same line of
_binary_roc_auc_score()
method.Additional context