-
Notifications
You must be signed in to change notification settings - Fork 403
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
Optimize AUC for binary classification #73
Comments
@pplonski Can you elaborate this a little more? |
We minimize It is worth to check which metrics can be optimized directly by algorithms. I would avoid callbacks in algorithms because they slow down the training |
Cool @pplonski , will look at it. |
This ticket is adding NEGATIVE AUC! There is a problem with Learning curves plots. They have wrong y-axis label. |
Dear Piotr, many thanks for all the work done on this fantastic package. |
Hi @alberto-jj, You should be able to set custom eval metric. It will not be used directly for model training, but it will be used for early stopping and model selection, and ensemble building - it should help a lot. Please take a look at this comment for implementation details #390 (comment) |
@pplonski - Quick q is log loss minimized based upon class imbalance ? |
What do you mean? |
Is it weighted log loss ? |
You can pass |
Right now, all metrics as minimized. AUC should be maximized.
Please add a check in
AutoML
constructor for correct metric name.The text was updated successfully, but these errors were encountered: