shithub: aubio

Download patch

ref: 220dcfc27f2eddcda1aef602d2508341636de4ca
parent: 2d7b65afda6887defe131d752af24f0de8551892
author: Paul Brossier <piem@altern.org>
date: Mon Aug 8 21:52:07 EDT 2005

more berbosity

--- a/python/aubiocompare-onset
+++ b/python/aubiocompare-onset
@@ -98,6 +98,13 @@
 	# print results
 	#print "orig, missed, merged, expc, bad, doubled:"
 	if vmode=='verbose':
+	    print "orig", orig
+            print "expc", expc
+            print "missed",missed
+            print "merged", merged
+            print "bad", bad
+            print "doubled", doubled
+            print "correct", orig-missed-merged
 	    print "GD %2.8f\t"        % (100*float(orig-missed-merged)/(orig)),
 	    print "FP %2.8f\t"        % (100*float(bad+doubled)/(orig))       , 
 	    print "GD-merged %2.8f\t" % (100*float(orig-missed)/(orig))       ,