-
Notifications
You must be signed in to change notification settings - Fork 117
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
Implement more transcription metrics #180
Comments
👍 Seems pretty straightforward to implement both, right? |
Yup, I just have no cycles left for it right now. Maybe @rabitt would fancy taking a stab at this? ;) Otherwise I'm happy to revisit this some time in the future. |
@justinsalamon Sorry, no cycles for this right now :( |
Other than the missing MIREX metrics, there are 3 more sets of metrics I'm interested in - these are still p,r,f, but using only onset information, or only offset information, or only pitch information. This basically allows you to break down the results and gain further insight (e.g. some algorithms might be great at onset detection but terrible at pitch detection, etc.). These metrics are not part of MIREX - would it still be in the scope of But assuming I figure out something sensible for each of the three, would this make sense for PR? |
Potentially, yes, but from a holistic view I'd say they are much lower priority than the rest of the MIREX metrics. If you want them though and are up for implementing them, feel free to make a PR.
Yeah, I can't think of a way to do this which makes sense. The overlap ratio seems like a more sane metric for this, if you don't want to be separately paying attention to whether the onset or offset falls into a fixed threshold. |
That's actually a very good point - the overlap ratio with a very lean onset threshold would basically do exactly what I need for pitch. OK, in which case my idea would be to implement |
You mean like |
I'm fine with implementing these as separate metrics, you're right in that it would keep things clearly delineated. I'll get onto the PR when I have a moment to breathe. |
Implement additional transcription metrics (#180)
@justinsalamon if this was resolved with the closing of #189 , can you close? Thanks. |
Well, the chroma metrics are still not implemented, so if we want 100% coverage of the MIREX metrics I guess we should keep this open. |
Ok, migrated to a separate issue #197. |
In addition to precision, recall, and f-measure, MIREX also computes the Average Overlap Ratio (defined in this paper). Furthermore, it also computes all four metrics (p, r, f1, o) but with mapping the pitch values to chroma values (i.e. so that octave errors aren't penalized).
This means that MIREX computes 16 metrics in total:
(Precision, Recall, F-measure, AverageOR) x (with offsets, without offsets ) x (pitch, chroma) = 16
Currently we have:
(Precision, Recall, F-measure) x (with offsets, without offsets ) = 6
The text was updated successfully, but these errors were encountered: