- Timestamp:
- Feb 17, 2006, 4:59:22 PM (19 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- dbc0351
- Parents:
- 4045ba4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/aubio/onsetcompare.py
r4045ba4 r0cd995a 80 80 orig, expc = len(ltru), len(lexp) 81 81 l = [] 82 labs = [] 82 83 mean = 0 83 84 # if lexp is empty … … 98 99 correspond += 1 99 100 l.append(y-x) 101 labs.append(abs(y-x)) 100 102 if correspond == 0: bad += 1 101 103 elif correspond > 1: merged += correspond - 1 102 104 # check consistancy of the results 103 105 assert ( orig - missed - merged == expc - bad - doubled) 104 return orig, missed, merged, expc, bad, doubled, l, sum(l)/float(max(len(l),1))106 return orig, missed, merged, expc, bad, doubled, l, labs 105 107 106 108 def notes_roc (la, lb, eps):
Note: See TracChangeset
for help on using the changeset viewer.