-
Notifications
You must be signed in to change notification settings - Fork 24
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
For multiclass, how to get the overall score? #13
Comments
Heyho @sarmientoj24, the majority just macro-averages it (computing the score for each class individually and then just average it). For the evaluation biases in multi-class, check out the subchapter "Multi-class evaluation" in our recent paper in BMC Research Notes Also check out this interesting StackExchange post about Micro- vs Macro-Averaging: https://datascience.stackexchange.com/questions/15989/micro-average-vs-macro-average-performance-in-a-multiclass-classification-settin Cheers, |
how do i micro average here? |
@sarmientoj24, you have to put some more information to your questions 😄 |
sorry for that. i was trying to ask how do I compute micro-averages instead of macro averages using the library to get the score? |
@sarmientoj24, MISeval does not provide functionality for automatic computing of averaged values. You can get the individual class scores from MISeval, but you have to do the averaging/weighting by yourself as you want. You can compute the class distribution per sample and then accordingly average the miseval returned scores with your weights. |
Do I just average all of it?
The text was updated successfully, but these errors were encountered: