Multiple metrics for model evaluation #700
Answered
by
MaxHalford
gintriago12
asked this question in
Q&A
-
Hi, Is there a way to use multiple metrics for model evaluation? I mean something like this: metric1 = metrics.Accuracy() or metric1 = metrics.Accuracy() Thanks. Best, |
Beta Was this translation helpful? Give feedback.
Answered by
MaxHalford
Sep 7, 2021
Replies: 1 comment
-
Yep, here you go: metrics = metrics.Accuracy() + metrics.ROCAUC()
evaluate.progressive_val_score(dataset, model, metrics) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
gintriago12
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yep, here you go: