-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
Support for multiple custom eval metrics #2182
Comments
Hi @candalfigomoro ! LightGBM/examples/python-guide/advanced_example.py Lines 175 to 185 in a7885b6
LightGBM/examples/python-guide/sklearn_example.py Lines 62 to 67 in a7885b6
|
@StrikerRUS |
@candalfigomoro Sure! For built-in metrics use
|
Why not just simply: and why y_true and y_pred in custom metrics are in different format? It is so non-intuitive. Furthermore, why input label vectors should be converted into number of classes for multiclass classification? Isn't such stuff should be fixed? |
Hi,
it seems like LightGBM does not currently support multiple custom eval metrics.
E.g. f1-score, precision and recall are not available as eval metrics. I can add them as custom eval metrics, but I can't use all of them at the same time. Currently, it seems like LightGBM only supports 1 custom metric at a time.
LightGBM version: 2.2.3
The text was updated successfully, but these errors were encountered: