Skip to content
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

It could be interesting to have the [precision recall area under the curve score](https://machinelearningmastery.com/roc-curves-and-precision-recall-curves-for-imbalanced-classification/) as well, but it seems there's no direct implementation in sklearn. #34

Open
Ludecan opened this issue Jul 17, 2024 · 1 comment
Labels
enhancement New feature or request

Comments

@Ludecan
Copy link
Collaborator

Ludecan commented Jul 17, 2024

It could be interesting to have the precision recall area under the curve score as well, but it seems there's no direct implementation in sklearn.
In the blogpost they calculate it by hand using:

precision, recall, _ = precision_recall_curve(testy, pos_probs)
auc_score = auc(recall, precision)

Edit: we can make these into a backlog item

Originally posted by @Ludecan in #32 (comment)

@Ludecan Ludecan mentioned this issue Jul 17, 2024
1 task
@diegomarvid
Copy link
Collaborator

Love this format of backlog!! 🚀

@diegomarvid diegomarvid added the enhancement New feature or request label Jul 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants