changeset 198:28cbc7eaf415 noteagent

Merge from the default branch
author Chris Cannam
date Wed, 04 Jun 2014 11:46:01 +0100
parents c02db1f4680a (current diff) ad706e771398 (diff)
children 5326c5396aa2
files src/Silvet.cpp testdata/TRIOS-groundtruth/brahms.csv testdata/TRIOS-groundtruth/brahms.lab testdata/TRIOS-groundtruth/brahms.mid testdata/TRIOS-groundtruth/convert.yeti testdata/TRIOS-groundtruth/lussier.csv testdata/TRIOS-groundtruth/lussier.lab testdata/TRIOS-groundtruth/lussier.mid testdata/TRIOS-groundtruth/mozart.csv testdata/TRIOS-groundtruth/mozart.lab testdata/TRIOS-groundtruth/mozart.mid testdata/TRIOS-groundtruth/schubert.csv testdata/TRIOS-groundtruth/schubert.lab testdata/TRIOS-groundtruth/schubert.mid testdata/TRIOS-groundtruth/take_five.csv testdata/TRIOS-groundtruth/take_five.lab testdata/TRIOS-groundtruth/take_five.mid
diffstat 76 files changed, 6264 insertions(+), 3119 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/silvet.cat	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,1 @@
+vamp:silvet:silvet::Notes
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/silvet.n3	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,99 @@
+@prefix rdfs:     <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:      <http://www.w3.org/2001/XMLSchema#> .
+@prefix vamp:     <http://purl.org/ontology/vamp/> .
+@prefix plugbase: <http://vamp-plugins.org/rdf/plugins/silvet#> .
+@prefix owl:      <http://www.w3.org/2002/07/owl#> .
+@prefix dc:       <http://purl.org/dc/elements/1.1/> .
+@prefix af:       <http://purl.org/ontology/af/> .
+@prefix foaf:     <http://xmlns.com/foaf/0.1/> .
+@prefix cc:       <http://web.resource.org/cc/> .
+@prefix :         <#> .
+
+<>  a   vamp:PluginDescription ;
+    foaf:maker          <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
+    foaf:primaryTopic   <http://vamp-plugins.org/rdf/plugins/silvet> .
+
+:silvet a  vamp:PluginLibrary ;
+    vamp:identifier "silvet"  ; 
+    vamp:available_plugin plugbase:silvet ; 
+    foaf:page <http://code.soundsoftware.ac.uk/projects/silvet> ;
+    .
+
+plugbase:silvet a   vamp:Plugin ;
+    dc:title              "Silvet Note Transcription" ;
+    vamp:name             "Silvet Note Transcription" ;
+    dc:description        """""" ;
+    foaf:maker            [ foaf:name "Queen Mary, University of London" ] ; # FIXME could give plugin author's URI here
+    dc:rights             """Method by Emmanouil Benetos and Simon Dixon; plugin by Chris Cannam and Emmanouil Benetos. GPL licence.""" ;
+#   cc:license            <Place plugin license URI here and uncomment> ; 
+    vamp:identifier       "silvet" ;
+    vamp:vamp_API_version vamp:api_version_2 ;
+    owl:versionInfo       "1" ;
+    vamp:input_domain     vamp:TimeDomain ;
+
+    vamp:parameter   plugbase:silvet_param_mode ;
+    vamp:parameter   plugbase:silvet_param_instrument ;
+    vamp:parameter   plugbase:silvet_param_finetune ;
+
+    vamp:output      plugbase:silvet_output_notes ;
+    vamp:output      plugbase:silvet_output_timefreq ;
+    .
+plugbase:silvet_param_mode a  vamp:QuantizedParameter ;
+    vamp:identifier     "mode" ;
+    dc:title            "Processing mode" ;
+    dc:format           "" ;
+    vamp:min_value       0 ;
+    vamp:max_value       1 ;
+    vamp:unit           "" ;
+    vamp:quantize_step   1  ;
+    vamp:default_value   1 ;
+    vamp:value_names     ( "Draft (faster)" "Intensive (higher quality)");
+    .
+plugbase:silvet_param_instrument a  vamp:QuantizedParameter ;
+    vamp:identifier     "instrument" ;
+    dc:title            "Instrument" ;
+    dc:format           "" ;
+    vamp:min_value       0 ;
+    vamp:max_value       12 ;
+    vamp:unit           "" ;
+    vamp:quantize_step   1  ;
+    vamp:default_value   0 ;
+    vamp:value_names     ( "Multiple or unknown instruments" "Piano" "Guitar" "Violin" "Cello" "Horn" "Flute" "Oboe" "Clarinet" "Tenor Sax" "Bassoon" "String ensemble" "Wind ensemble");
+    .
+plugbase:silvet_param_finetune a  vamp:QuantizedParameter ;
+    vamp:identifier     "finetune" ;
+    dc:title            "Return fine pitch estimates" ;
+    dc:format           "" ;
+    vamp:min_value       0 ;
+    vamp:max_value       1 ;
+    vamp:unit           "" ;
+    vamp:quantize_step   1  ;
+    vamp:default_value   0 ;
+    vamp:value_names     ();
+    .
+plugbase:silvet_output_notes a  vamp:SparseOutput ;
+    vamp:identifier       "notes" ;
+    dc:title              "Note transcription" ;
+    dc:description        """Overall note transcription across selected instruments"""  ;
+    vamp:fixed_bin_count  "true" ;
+    vamp:unit             "Hz" ;
+    vamp:bin_count        2 ;
+    vamp:bin_names        ( "Frequency" "Velocity");
+    vamp:sample_type      vamp:VariableSampleRate ;
+    vamp:sample_rate      711.29 ;
+#   vamp:computes_event_type   <Place event type URI here and uncomment> ;
+#   vamp:computes_feature      <Place feature attribute URI here and uncomment> ;
+#   vamp:computes_signal_type  <Place signal type URI here and uncomment> ;
+    .
+plugbase:silvet_output_timefreq a  vamp:DenseOutput ;
+    vamp:identifier       "timefreq" ;
+    dc:title              "Time-frequency distribution" ;
+    dc:description        """Filtered constant-Q time-frequency distribution used as input to the expectation-maximisation algorithm"""  ;
+    vamp:fixed_bin_count  "true" ;
+    vamp:unit             "" ;
+    vamp:bin_count        545 ;
+#   vamp:computes_event_type   <Place event type URI here and uncomment> ;
+#   vamp:computes_feature      <Place feature attribute URI here and uncomment> ;
+#   vamp:computes_signal_type  <Place signal type URI here and uncomment> ;
+    .
+
--- a/src/Silvet.cpp	Thu May 29 15:18:14 2014 +0100
+++ b/src/Silvet.cpp	Wed Jun 04 11:46:01 2014 +0100
@@ -76,15 +76,13 @@
 string
 Silvet::getDescription() const
 {
-    // Return something helpful here!
-    return "";
+    return "Estimate the note onsets, pitches, and durations that make up a music recording.";
 }
 
 string
 Silvet::getMaker() const
 {
-    // Your name here
-    return "";
+    return "Queen Mary, University of London";
 }
 
 int
@@ -96,11 +94,7 @@
 string
 Silvet::getCopyright() const
 {
-    // This function is not ideally named.  It does not necessarily
-    // need to say who made the plugin -- getMaker does that -- but it
-    // should indicate the terms under which it is distributed.  For
-    // example, "Copyright (year). All Rights Reserved", or "GPL"
-    return "";
+    return "Method by Emmanouil Benetos and Simon Dixon; plugin by Chris Cannam and Emmanouil Benetos. GPL licence.";
 }
 
 Silvet::InputDomain
--- a/testdata/TRIOS-groundtruth/brahms.csv	Thu May 29 15:18:14 2014 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,355 +0,0 @@
-0.763537414,70,1.516666666,0.46875,A#4 - vel 60
-1.027074829,27,1.262494331,0.46875,D#1 - vel 60
-1.174988662,58,0.696870748,0.46875,A#3 - vel 60
-1.174988662,63,0.696870748,0.46875,D#4 - vel 60
-1.260408163,39,1.026031746,0.46875,D#2 - vel 60
-1.515623582,46,0.777074829,0.46875,A#2 - vel 60
-1.770816326,51,0.528140589,0.46875,D#3 - vel 60
-1.876031746,58,0.417709750,0.46875,A#3 - vel 60
-1.876031746,63,0.417709750,0.46875,D#4 - vel 60
-2.027074829,55,0.266666666,0.46875,G3 - vel 60
-2.289569160,68,1.571882086,0.46875,G#4 - vel 60
-2.512494331,32,1.328117913,0.46875,G#1 - vel 60
-2.679160997,60,0.684376417,0.46875,C4 - vel 60
-2.679160997,63,0.684376417,0.46875,D#4 - vel 60
-2.750000000,44,1.088526077,0.46875,G#2 - vel 60
-3.000000000,48,0.839569160,0.46875,C3 - vel 60
-3.250000000,51,0.590612244,0.46875,D#3 - vel 60
-3.374988662,60,0.478117913,0.46875,C4 - vel 60
-3.374988662,63,0.478117913,0.46875,D#4 - vel 60
-3.500000000,56,0.353106575,0.46875,G#3 - vel 60
-3.750000000,75,1.439569160,0.46875,D#5 - vel 60
-4.079160997,34,1.180204081,0.46875,A#1 - vel 60
-4.170816326,58,0.351043083,0.46875,A#3 - vel 60
-4.170816326,63,0.351043083,0.46875,D#4 - vel 60
-4.170816326,67,0.351043083,0.46875,G4 - vel 60
-4.336439909,46,0.930226757,0.46875,A#2 - vel 60
-4.522902494,67,0.743764172,0.46875,G4 - vel 60
-4.522902494,51,0.748956916,0.46875,D#3 - vel 60
-4.522902494,58,0.481247165,0.46875,A#3 - vel 60
-4.522902494,63,0.344784580,0.46875,D#4 - vel 60
-4.772902494,55,0.498956916,0.46875,G3 - vel 60
-4.874988662,68,0.388548752,0.46875,G#4 - vel 60
-4.874988662,60,0.396870748,0.46875,C4 - vel 60
-4.874988662,63,0.396870748,0.46875,D#4 - vel 60
-5.000000000,58,0.262494331,0.46875,A#3 - vel 60
-5.200000000,74,1.595827664,0.46875,D5 - vel 60
-5.272902494,65,0.725011337,0.46875,F4 - vel 60
-5.272902494,58,0.725011337,0.46875,A#3 - vel 60
-5.272902494,70,1.520839002,0.46875,A#4 - vel 60
-5.509365079,34,1.292698412,0.46875,A#1 - vel 60
-5.740612244,46,1.055215419,0.46875,A#2 - vel 60
-5.997913832,50,0.805192743,0.46875,D3 - vel 60
-6.000000000,65,0.790612244,0.46875,F4 - vel 60
-6.000000000,58,0.495827664,0.46875,A#3 - vel 60
-6.250000000,53,0.544784580,0.46875,F3 - vel 60
-6.374988662,62,0.410408163,0.46875,D4 - vel 60
-6.497913832,58,0.284376417,0.46875,A#3 - vel 60
-7.007278911,36,1.383333333,0.46875,C2 - vel 60
-7.053106575,72,0.452086167,0.46875,C5 - vel 60
-7.109365079,63,0.784376417,0.46875,D#4 - vel 60
-7.109365079,68,0.784376417,0.46875,G#4 - vel 60
-7.317687074,44,1.078140589,0.46875,G#2 - vel 60
-7.510408163,72,0.303129251,0.46875,C5 - vel 60
-7.522902494,48,0.872925170,0.46875,C3 - vel 60
-7.750000000,51,0.644784580,0.46875,D#3 - vel 60
-7.856235827,75,0.392721088,0.46875,D#5 - vel 60
-7.902063492,63,0.478140589,0.46875,D#4 - vel 60
-7.902063492,68,0.478140589,0.46875,G#4 - vel 60
-8.045827664,56,0.352086167,0.46875,G#3 - vel 60
-8.250000000,77,0.815623582,0.46875,F5 - vel 60
-8.567687074,38,1.361473922,0.46875,D2 - vel 60
-8.715623582,65,0.721859410,0.46875,F4 - vel 60
-8.715623582,68,0.721859410,0.46875,G#4 - vel 60
-8.879160997,46,1.055192743,0.46875,A#2 - vel 60
-8.987482993,68,0.943764172,0.46875,G#4 - vel 60
-9.090612244,50,0.839591836,0.46875,D3 - vel 60
-9.267687074,53,0.658344671,0.46875,F3 - vel 60
-9.442698412,65,0.501043083,0.46875,F4 - vel 60
-9.442698412,68,0.501043083,0.46875,G#4 - vel 60
-9.581247165,58,0.353106575,0.46875,A#3 - vel 60
-10.113537414,39,1.269795918,0.46875,D#2 - vel 60
-10.179160997,67,0.736462585,0.46875,G4 - vel 60
-10.200000000,63,0.739569160,0.46875,D#4 - vel 60
-10.200000000,67,0.739569160,0.46875,G4 - vel 60
-10.340612244,46,1.043741496,0.46875,A#2 - vel 60
-10.545827664,51,0.839569160,0.46875,D#3 - vel 60
-10.817687074,55,0.567709750,0.46875,G3 - vel 60
-10.840612244,72,0.497913832,0.570312,C5 - vel 73
-10.942698412,67,0.455215419,0.46875,G4 - vel 60
-10.942698412,63,0.455215419,0.46875,D#4 - vel 60
-11.094784580,58,0.289569160,0.46875,A#3 - vel 60
-11.342698412,72,0.820839002,0.703125,C5 - vel 90
-11.567687074,33,1.361473922,0.46875,A1 - vel 60
-11.715623582,63,0.739569160,0.703125,D#4 - vel 90
-11.715623582,66,0.739569160,0.703125,F#4 - vel 90
-11.840612244,45,1.089591836,0.46875,A2 - vel 60
-12.065623582,66,0.776031746,0.570312,F#4 - vel 73
-12.090612244,51,0.839591836,0.46875,D#3 - vel 60
-12.317687074,54,0.613560090,0.46875,F#3 - vel 60
-12.465623582,66,0.478117913,0.570312,F#4 - vel 73
-12.465623582,63,0.478117913,0.570312,D#4 - vel 73
-12.613537414,60,0.318752834,0.46875,C4 - vel 60
-12.763537414,65,1.116666666,0.46875,F4 - vel 60
-12.800000000,70,1.611451247,0.46875,A#4 - vel 60
-13.102063492,34,1.361473922,0.46875,A#1 - vel 60
-13.215623582,62,0.757278911,0.46875,D4 - vel 60
-13.215623582,65,0.757278911,0.46875,F4 - vel 60
-13.408321995,41,1.051043083,0.46875,F2 - vel 60
-13.613537414,46,0.851043083,0.46875,A#2 - vel 60
-13.840612244,50,0.623968253,0.46875,D3 - vel 60
-13.979160997,65,0.501043083,0.46875,F4 - vel 60
-13.979160997,62,0.501043083,0.46875,D4 - vel 60
-14.136439909,53,0.330226757,0.46875,F3 - vel 60
-14.310408163,68,1.165623582,0.46875,G#4 - vel 60
-14.604149659,35,1.475011337,0.46875,B1 - vel 60
-14.738526077,63,0.737505668,0.46875,D#4 - vel 60
-14.738526077,68,0.892721088,0.46875,G#4 - vel 60
-14.872902494,44,1.202086167,0.46875,G#2 - vel 60
-15.102063492,47,0.976054421,0.46875,B2 - vel 60
-15.329160997,51,0.748956916,0.46875,D#3 - vel 60
-15.477074829,68,0.591655328,0.46875,G#4 - vel 60
-15.477074829,63,0.591655328,0.46875,D#4 - vel 60
-15.622902494,56,0.454172335,0.46875,G#3 - vel 60
-15.800000000,85,1.458321995,0.46875,C#6 - vel 60
-16.097913832,66,0.323945578,0.476562,F#4 - vel 61
-16.158321995,37,1.225011337,0.46875,C#2 - vel 60
-16.261451247,61,1.124988662,0.46875,C#4 - vel 60
-16.261451247,66,0.594784580,0.46875,F#4 - vel 60
-16.261451247,70,1.124988662,0.46875,A#4 - vel 60
-16.408321995,46,0.976031746,0.46875,A#2 - vel 60
-16.429160997,66,0.957278911,0.476562,F#4 - vel 61
-16.619773242,49,0.500000000,0.46875,C#3 - vel 60
-16.840612244,68,0.373968253,0.484375,G#4 - vel 62
-16.863537414,54,0.521859410,0.46875,F#3 - vel 60
-17.011451247,59,0.364580498,0.476562,B3 - vel 61
-17.011451247,63,0.364580498,0.476562,D#4 - vel 61
-17.011451247,68,0.364580498,0.476562,G#4 - vel 61
-17.119773242,49,0.262517006,0.46875,C#3 - vel 60
-17.195827664,83,1.521859410,0.5,B5 - vel 64
-17.206235827,66,0.793764172,0.492188,F#4 - vel 63
-17.408321995,56,1.156258503,0.484375,G#3 - vel 62
-17.408321995,61,0.705215419,0.484375,C#4 - vel 62
-17.408321995,66,1.441678004,0.484375,F#4 - vel 62
-17.636439909,37,1.202086167,0.46875,C#2 - vel 60
-17.840612244,44,0.997913832,0.46875,G#2 - vel 60
-17.960408163,65,0.895827664,0.5,F4 - vel 64
-18.031247165,49,0.817709750,0.46875,C#3 - vel 60
-18.117687074,61,0.738548752,0.5,C#4 - vel 64
-18.117687074,65,0.777097505,0.5,F4 - vel 64
-18.317687074,53,0.522925170,0.46875,F3 - vel 60
-18.567687074,56,0.285419501,0.46875,G#3 - vel 60
-18.802063492,66,0.305215419,0.5,F#4 - vel 64
-18.995827664,82,0.403129251,0.523438,A#5 - vel 67
-19.045827664,30,1.179160997,0.46875,F#1 - vel 60
-19.136439909,70,0.693764172,0.507812,A#4 - vel 65
-19.136439909,66,0.693764172,0.507812,F#4 - vel 65
-19.138526077,61,0.693764172,0.523438,C#4 - vel 67
-19.272902494,42,0.953129251,0.46875,F#2 - vel 60
-19.404149659,82,0.397913832,0.53125,A#5 - vel 68
-19.409365079,54,0.439591836,0.507812,F#3 - vel 65
-19.500000000,49,0.726031746,0.46875,C#3 - vel 60
-19.704149659,54,0.522925170,0.46875,F#3 - vel 60
-19.771859410,85,0.411473922,0.539062,C#6 - vel 69
-19.830204081,66,0.341655328,0.515625,F#4 - vel 66
-19.837482993,61,0.409387755,0.507812,C#4 - vel 65
-19.838526077,66,0.410430839,0.523438,F#4 - vel 67
-19.838526077,73,0.410430839,0.523438,C#5 - vel 67
-19.988526077,58,0.239591836,0.46875,A#3 - vel 60
-20.178117913,66,0.816666666,0.523438,F#4 - vel 67
-20.187482993,87,0.784376417,0.546875,D#6 - vel 70
-20.257278911,75,1.486462585,0.53125,D#5 - vel 68
-20.257278911,63,0.737505668,0.53125,D#4 - vel 68
-20.257278911,66,1.089591836,0.53125,F#4 - vel 68
-20.534353741,35,1.202086167,0.46875,B1 - vel 60
-20.740612244,47,0.998956916,0.46875,B2 - vel 60
-20.971859410,80,0.538548752,0.5625,G#5 - vel 72
-21.007278911,63,0.737505668,0.546875,D#4 - vel 70
-21.007278911,66,0.737505668,0.546875,F#4 - vel 70
-21.007278911,68,0.737505668,0.546875,G#4 - vel 70
-21.011451247,51,0.726031746,0.46875,D#3 - vel 60
-21.250000000,54,0.490612244,0.46875,F#3 - vel 60
-21.463537414,56,0.273945578,0.46875,G#3 - vel 60
-22.000000000,37,1.270816326,0.46875,C#2 - vel 60
-22.059365079,70,0.384376417,0.554688,A#4 - vel 71
-22.073945578,78,0.431247165,0.585938,F#5 - vel 75
-22.115623582,70,0.697913832,0.570312,A#4 - vel 73
-22.115623582,73,1.161451247,0.570312,C#5 - vel 73
-22.250000000,49,1.020816326,0.46875,C#3 - vel 60
-22.450000000,70,0.827074829,0.5625,A#4 - vel 72
-22.472902494,54,0.793764172,0.46875,F#3 - vel 60
-22.506235827,78,0.294784580,0.59375,F#5 - vel 76
-22.690612244,58,0.575011337,0.46875,A#3 - vel 60
-22.812494331,80,0.346870748,0.601562,G#5 - vel 77
-22.821859410,71,0.344807256,0.570312,B4 - vel 73
-22.829160997,68,0.444784580,0.585938,G#4 - vel 75
-22.829160997,71,0.444784580,0.585938,B4 - vel 75
-22.977074829,61,0.285419501,0.46875,C#4 - vel 60
-23.159365079,70,0.394784580,0.578125,A#4 - vel 74
-23.163537414,78,0.420816326,0.609375,F#5 - vel 78
-23.454149659,38,1.293764172,0.46875,D2 - vel 60
-23.539569160,68,0.359387755,0.585938,G#4 - vel 75
-23.574988662,77,0.381247165,0.617188,F5 - vel 79
-23.579160997,71,1.180204081,0.601562,B4 - vel 77
-23.579160997,68,0.762494331,0.601562,G#4 - vel 77
-23.750000000,46,0.997913832,0.46875,A#2 - vel 60
-23.913537414,68,0.431247165,0.59375,G#4 - vel 76
-23.938526077,50,0.816666666,0.46875,D3 - vel 60
-23.974988662,77,0.343741496,0.625,F5 - vel 80
-24.168730158,53,0.589591836,0.46875,F3 - vel 60
-24.318730158,78,0.414603174,0.632812,F#5 - vel 81
-24.348956916,70,0.413537414,0.601562,A#4 - vel 77
-24.352063492,70,0.412517006,0.617188,A#4 - vel 79
-24.352063492,68,0.410430839,0.617188,G#4 - vel 79
-24.490612244,58,0.262494331,0.46875,A#3 - vel 60
-24.750000000,68,0.459365079,0.609375,G#4 - vel 78
-24.751020408,77,0.835419501,0.640625,F5 - vel 82
-24.943741496,39,1.202086167,0.46875,D#2 - vel 60
-25.059365079,66,0.348956916,0.632812,F#4 - vel 81
-25.059365079,78,0.348956916,0.632812,F#5 - vel 81
-25.164580498,66,0.329160997,0.617188,F#4 - vel 79
-25.215623582,46,0.930204081,0.46875,A#2 - vel 60
-25.413537414,51,0.726031746,0.46875,D#3 - vel 60
-25.415623582,66,0.742698412,0.640625,F#4 - vel 82
-25.415623582,78,0.742698412,0.640625,F#5 - vel 82
-25.497913832,66,0.785419501,0.625,F#4 - vel 80
-25.555192743,75,0.758344671,0.65625,D#5 - vel 84
-25.659365079,54,0.487505668,0.46875,F#3 - vel 60
-25.761451247,70,0.396870748,0.648438,A#4 - vel 83
-25.761451247,82,0.396870748,0.648438,A#5 - vel 83
-25.909365079,63,0.307301587,0.46875,D#4 - vel 60
-26.159365079,71,1.634376417,0.65625,B4 - vel 84
-26.159365079,75,1.634376417,0.65625,D#5 - vel 84
-26.159365079,83,1.634376417,0.65625,B5 - vel 84
-26.432290249,32,1.360408163,0.46875,G#1 - vel 60
-26.645827664,44,1.157278911,0.46875,G#2 - vel 60
-26.909365079,51,0.884376417,0.46875,D#3 - vel 60
-26.909365079,65,0.873968253,0.671875,F4 - vel 86
-26.909365079,77,0.873968253,0.671875,F5 - vel 86
-27.141655328,56,0.657301587,0.46875,G#3 - vel 60
-27.363537414,59,0.432290249,0.46875,B3 - vel 60
-27.710408163,66,2.346870748,0.703125,F#4 - vel 90
-27.774988662,70,2.401043083,0.703125,A#4 - vel 90
-27.891655328,34,1.258344671,0.703125,A#1 - vel 90
-28.034353741,63,0.346893424,0.703125,D#4 - vel 90
-28.034353741,75,0.346893424,0.703125,D#5 - vel 90
-28.204149659,46,0.696870748,0.703125,A#2 - vel 90
-28.386439909,63,0.764580498,0.703125,D#4 - vel 90
-28.386439909,75,0.764580498,0.703125,D#5 - vel 90
-28.432290249,54,0.726031746,0.703125,F#3 - vel 90
-28.636439909,58,0.521882086,0.703125,A#3 - vel 90
-28.750000000,77,0.396870748,0.703125,F5 - vel 90
-28.750000000,65,0.396870748,0.703125,F4 - vel 90
-28.909365079,46,0.239591836,0.703125,A#2 - vel 90
-29.153106575,63,1.093764172,0.703125,D#4 - vel 90
-29.153106575,75,1.093764172,0.703125,D#5 - vel 90
-29.382290249,34,1.294784580,0.703125,A#1 - vel 90
-29.512494331,61,0.369795918,0.640625,C#4 - vel 82
-29.512494331,73,0.369795918,0.640625,C#5 - vel 82
-29.671859410,46,0.748956916,0.703125,A#2 - vel 90
-29.887482993,53,0.776054421,0.703125,F3 - vel 90
-29.887482993,61,0.783333333,0.578125,C#4 - vel 74
-29.887482993,73,0.783333333,0.578125,C#5 - vel 74
-30.036439909,65,0.637505668,0.570312,F4 - vel 73
-30.043741496,68,0.610408163,0.570312,G#4 - vel 73
-30.157278911,56,0.510408163,0.703125,G#3 - vel 90
-30.255192743,63,0.417709750,0.515625,D#4 - vel 66
-30.255192743,75,0.417709750,0.515625,D#5 - vel 66
-30.427074829,46,0.244784580,0.703125,A#2 - vel 90
-30.679160997,61,1.523945578,0.46875,C#4 - vel 60
-30.679160997,73,1.523945578,0.46875,C#5 - vel 60
-30.922902494,34,1.290634920,0.703125,A#1 - vel 90
-31.054149659,66,0.357301587,0.46875,F#4 - vel 60
-31.167687074,63,0.373968253,0.46875,D#4 - vel 60
-31.192698412,46,0.772925170,0.703125,A#2 - vel 90
-31.424988662,66,0.384376417,0.46875,F#4 - vel 60
-31.454149659,59,1.568752834,0.46875,B3 - vel 60
-31.454149659,71,1.568752834,0.46875,B4 - vel 60
-31.454149659,51,0.756258503,0.703125,D#3 - vel 90
-31.551020408,63,0.340634920,0.46875,D#4 - vel 60
-31.723945578,54,0.489591836,0.703125,F#3 - vel 90
-31.808321995,68,0.406258503,0.46875,G#4 - vel 60
-31.874988662,65,0.357301587,0.46875,F4 - vel 60
-31.970816326,46,0.245850340,0.703125,A#2 - vel 90
-32.191655328,66,0.367709750,0.46875,F#4 - vel 60
-32.228117913,63,0.456235827,0.46875,D#4 - vel 60
-32.508321995,34,1.367709750,0.703125,A#1 - vel 90
-32.568730158,65,0.363560090,0.46875,F4 - vel 60
-32.628117913,61,0.389569160,0.46875,C#4 - vel 60
-32.754149659,46,0.812517006,0.703125,A#2 - vel 90
-32.940612244,65,0.458344671,0.46875,F4 - vel 60
-33.020816326,61,0.342721088,0.46875,C#4 - vel 60
-33.033333333,49,0.848956916,0.703125,C#3 - vel 90
-33.033333333,58,1.021859410,0.46875,A#3 - vel 60
-33.033333333,70,1.021859410,0.46875,A#4 - vel 60
-33.311451247,53,0.567709750,0.703125,F3 - vel 90
-33.322902494,63,0.485419501,0.46875,D#4 - vel 60
-33.346870748,66,0.389569160,0.46875,F#4 - vel 60
-33.564580498,46,0.318752834,0.703125,A#2 - vel 90
-33.710408163,61,0.789591836,0.46875,C#4 - vel 60
-33.723945578,65,0.776054421,0.46875,F4 - vel 60
-34.037482993,34,1.180204081,0.703125,A#1 - vel 90
-34.143741496,56,0.338548752,0.46875,G#3 - vel 60
-34.143741496,68,0.338548752,0.46875,G#4 - vel 60
-34.354149659,46,0.653129251,0.664062,A#2 - vel 85
-34.453106575,59,1.518752834,0.429688,B3 - vel 55
-34.466666666,63,1.606235827,0.429688,D#4 - vel 55
-34.490612244,56,0.728117913,0.453125,G#3 - vel 58
-34.490612244,68,0.728117913,0.453125,G#4 - vel 58
-34.490612244,47,0.735419501,0.625,B2 - vel 80
-34.760408163,51,0.459365079,0.585938,D#3 - vel 75
-34.853106575,58,0.365623582,0.4375,A#3 - vel 56
-34.853106575,70,0.365623582,0.4375,A#4 - vel 56
-35.015623582,46,0.214580498,0.546875,A#2 - vel 70
-35.227074829,56,1.088548752,0.421875,G#3 - vel 54
-35.227074829,68,1.088548752,0.421875,G#4 - vel 54
-35.462494331,34,1.262494331,0.484375,A#1 - vel 62
-35.572902494,54,0.366666666,0.398438,F#3 - vel 51
-35.572902494,66,0.366666666,0.398438,F#4 - vel 51
-35.732290249,46,0.452063492,0.445312,A#2 - vel 57
-35.946870748,54,0.785419501,0.375,F#3 - vel 48
-35.946870748,66,0.785419501,0.375,F#4 - vel 48
-35.946870748,49,0.771859410,0.398438,C#3 - vel 51
-35.955192743,58,0.763537414,0.351562,A#3 - vel 45
-36.031247165,61,0.622902494,0.351562,C#4 - vel 45
-36.188526077,46,0.529160997,0.351562,A#2 - vel 45
-36.328117913,56,0.401043083,0.351562,G#3 - vel 45
-36.328117913,68,0.401043083,0.351562,G#4 - vel 45
-36.734353741,54,1.773968253,0.351562,F#3 - vel 45
-36.734353741,66,1.773968253,0.351562,F#4 - vel 45
-36.954149659,34,1.562517006,0.351562,A#1 - vel 45
-37.124988662,56,0.404172335,0.351562,G#3 - vel 45
-37.137482993,59,0.379183673,0.351562,B3 - vel 45
-37.238526077,46,0.753129251,0.390625,A#2 - vel 50
-37.517687074,53,1.991678004,0.46875,F3 - vel 60
-37.517687074,65,1.991678004,0.46875,F4 - vel 60
-37.523945578,59,0.402086167,0.421875,B3 - vel 54
-37.530204081,56,0.316666666,0.421875,G#3 - vel 54
-37.769773242,58,0.462517006,0.46875,A#3 - vel 60
-37.848956916,58,0.661451247,0.492188,A#3 - vel 63
-37.897913832,61,0.382290249,0.492188,C#4 - vel 63
-38.013537414,46,0.494784580,0.5,A#2 - vel 64
-38.224988662,56,0.375011337,0.546875,G#3 - vel 70
-38.266666666,59,0.334353741,0.546875,B3 - vel 70
-38.527074829,34,1.516666666,0.570312,A#1 - vel 73
-38.583333333,57,0.377074829,0.625,A3 - vel 80
-38.617687074,60,0.380226757,0.625,C4 - vel 80
-38.771859410,46,0.748956916,0.609375,A#2 - vel 78
-38.974988662,57,0.372925170,0.703125,A3 - vel 90
-39.000000000,60,0.370816326,0.703125,C4 - vel 90
-39.050000000,51,2.504149659,0.703125,D#3 - vel 90
-39.050000000,63,2.504149659,0.703125,D#4 - vel 90
-39.290612244,58,0.520839002,0.703125,A#3 - vel 90
-39.342698412,58,0.698956916,0.570312,A#3 - vel 73
-39.378117913,62,0.436462585,0.570312,D4 - vel 73
-39.532290249,46,0.511451247,0.570312,A#2 - vel 73
-39.784353741,60,0.841678004,0.46875,C4 - vel 60
-39.787482993,57,0.822925170,0.46875,A3 - vel 60
-40.071859410,34,1.475011337,0.46875,A#1 - vel 60
-40.359365079,46,0.862494331,0.46875,A#2 - vel 60
-40.551020408,58,0.702086167,0.46875,A#3 - vel 60
-40.620816326,58,1.093764172,0.46875,A#3 - vel 60
-40.646870748,50,1.588526077,0.46875,D3 - vel 60
-40.646870748,62,1.588526077,0.46875,D4 - vel 60
-40.945827664,58,1.283333333,0.46875,A#3 - vel 60
-41.233333333,46,0.997913832,0.46875,A#2 - vel 60
--- a/testdata/TRIOS-groundtruth/brahms.lab	Thu May 29 15:18:14 2014 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,355 +0,0 @@
-0.763537414	2.28020408	466.1637615180899
-1.027074829	2.28956916	38.890872965260115
-1.174988662	1.87185941	233.08188075904496
-1.174988662	1.87185941	311.1269837220809
-1.260408163	2.286439909	77.78174593052023
-1.515623582	2.292698411	116.54094037952248
-1.770816326	2.298956915	155.56349186104046
-1.876031746	2.293741496	233.08188075904496
-1.876031746	2.293741496	311.1269837220809
-2.027074829	2.293741495	195.99771799087463
-2.289569160	3.861451246	415.3046975799451
-2.512494331	3.840612244	51.91308719749314
-2.679160997	3.3635374139999996	261.6255653005986
-2.679160997	3.3635374139999996	311.1269837220809
-2.750000000	3.838526077	103.82617439498628
-3.000000000	3.83956916	130.8127826502993
-3.250000000	3.840612244	155.56349186104046
-3.374988662	3.853106575	261.6255653005986
-3.374988662	3.853106575	311.1269837220809
-3.500000000	3.853106575	207.65234878997256
-3.750000000	5.18956916	622.2539674441618
-4.079160997	5.259365078	58.27047018976124
-4.170816326	4.521859408999999	233.08188075904496
-4.170816326	4.521859408999999	311.1269837220809
-4.170816326	4.521859408999999	391.99543598174927
-4.336439909	5.266666666	116.54094037952248
-4.522902494	5.266666666	391.99543598174927
-4.522902494	5.27185941	155.56349186104046
-4.522902494	5.004149659	233.08188075904496
-4.522902494	4.867687074	311.1269837220809
-4.772902494	5.27185941	195.99771799087463
-4.874988662	5.263537414	415.3046975799451
-4.874988662	5.271859409999999	261.6255653005986
-4.874988662	5.271859409999999	311.1269837220809
-5.000000000	5.262494331	233.08188075904496
-5.200000000	6.795827664	587.3295358348151
-5.272902494	5.997913831	349.2282314330039
-5.272902494	5.997913831	233.08188075904496
-5.272902494	6.793741496	466.1637615180899
-5.509365079	6.802063491	58.27047018976124
-5.740612244	6.795827663000001	116.54094037952248
-5.997913832	6.803106575	146.8323839587038
-6.000000000	6.790612244	349.2282314330039
-6.000000000	6.495827664	233.08188075904496
-6.250000000	6.79478458	174.61411571650194
-6.374988662	6.785396824999999	293.6647679174076
-6.497913832	6.782290249	233.08188075904496
-7.007278911	8.390612244	65.40639132514966
-7.053106575	7.505192742	523.2511306011972
-7.109365079	7.893741496	311.1269837220809
-7.109365079	7.893741496	415.3046975799451
-7.317687074	8.395827663	103.82617439498628
-7.510408163	7.813537414	523.2511306011972
-7.522902494	8.395827664	130.8127826502993
-7.750000000	8.39478458	155.56349186104046
-7.856235827	8.248956914999999	622.2539674441618
-7.902063492	8.380204081	311.1269837220809
-7.902063492	8.380204081	415.3046975799451
-8.045827664	8.397913831	207.65234878997256
-8.250000000	9.065623582	698.4564628660078
-8.567687074	9.929160996	73.41619197935188
-8.715623582	9.437482992	349.2282314330039
-8.715623582	9.437482992	415.3046975799451
-8.879160997	9.934353739999999	116.54094037952248
-8.987482993	9.931247165	415.3046975799451
-9.090612244	9.930204080000001	146.8323839587038
-9.267687074	9.926031745	174.61411571650194
-9.442698412	9.943741495000001	349.2282314330039
-9.442698412	9.943741495000001	415.3046975799451
-9.581247165	9.93435374	233.08188075904496
-10.113537414	11.383333332	77.78174593052023
-10.179160997	10.915623582	391.99543598174927
-10.200000000	10.93956916	311.1269837220809
-10.200000000	10.93956916	391.99543598174927
-10.340612244	11.384353740000002	116.54094037952248
-10.545827664	11.385396824	155.56349186104046
-10.817687074	11.385396824	195.99771799087463
-10.840612244	11.338526076	523.2511306011972
-10.942698412	11.397913831	391.99543598174927
-10.942698412	11.397913831	311.1269837220809
-11.094784580	11.38435374	233.08188075904496
-11.342698412	12.163537414	523.2511306011972
-11.567687074	12.929160996	55.0
-11.715623582	12.455192742	311.1269837220809
-11.715623582	12.455192742	369.9944227116344
-11.840612244	12.930204080000001	110.0
-12.065623582	12.841655328	369.9944227116344
-12.090612244	12.930204080000001	155.56349186104046
-12.317687074	12.931247164	184.9972113558172
-12.465623582	12.943741495	369.9944227116344
-12.465623582	12.943741495	311.1269837220809
-12.613537414	12.932290248	261.6255653005986
-12.763537414	13.88020408	349.2282314330039
-12.800000000	14.411451247	466.1637615180899
-13.102063492	14.463537414	58.27047018976124
-13.215623582	13.972902493	293.6647679174076
-13.215623582	13.972902493	349.2282314330039
-13.408321995	14.459365078	87.30705785825097
-13.613537414	14.464580497	116.54094037952248
-13.840612244	14.464580497	146.8323839587038
-13.979160997	14.48020408	349.2282314330039
-13.979160997	14.48020408	293.6647679174076
-14.136439909	14.466666666	174.61411571650194
-14.310408163	15.476031745	415.3046975799451
-14.604149659	16.079160996000002	61.7354126570155
-14.738526077	15.476031745	311.1269837220809
-14.738526077	15.631247165	415.3046975799451
-14.872902494	16.074988661	103.82617439498628
-15.102063492	16.078117913	123.47082531403103
-15.329160997	16.078117913	155.56349186104046
-15.477074829	16.068730157	415.3046975799451
-15.477074829	16.068730157	311.1269837220809
-15.622902494	16.077074829	207.65234878997256
-15.800000000	17.258321995	1108.7305239074883
-16.097913832	16.42185941	369.9944227116344
-16.158321995	17.383333332000003	69.29565774421802
-16.261451247	17.386439909	277.1826309768721
-16.261451247	16.856235827	369.9944227116344
-16.261451247	17.386439909	466.1637615180899
-16.408321995	17.384353741	116.54094037952248
-16.429160997	17.386439908	369.9944227116344
-16.619773242	17.119773242	138.59131548843604
-16.840612244	17.214580497	415.3046975799451
-16.863537414	17.385396824	184.9972113558172
-17.011451247	17.376031745	246.94165062806206
-17.011451247	17.376031745	311.1269837220809
-17.011451247	17.376031745	415.3046975799451
-17.119773242	17.382290248	138.59131548843604
-17.195827664	18.717687074	987.7666025122483
-17.206235827	17.999999999	369.9944227116344
-17.408321995	18.564580498	207.65234878997256
-17.408321995	18.113537414	277.1826309768721
-17.408321995	18.849999999	369.9944227116344
-17.636439909	18.838526076	69.29565774421802
-17.840612244	18.838526075999997	103.82617439498628
-17.960408163	18.856235827	349.2282314330039
-18.031247165	18.848956915	138.59131548843604
-18.117687074	18.856235826	277.1826309768721
-18.117687074	18.894784579	349.2282314330039
-18.317687074	18.840612244	174.61411571650194
-18.567687074	18.853106574999998	207.65234878997256
-18.802063492	19.107278910999998	369.9944227116344
-18.995827664	19.398956915	932.3275230361799
-19.045827664	20.224988661	46.2493028389543
-19.136439909	19.830204081	466.1637615180899
-19.136439909	19.830204081	369.9944227116344
-19.138526077	19.832290249000003	277.1826309768721
-19.272902494	20.226031745	92.4986056779086
-19.404149659	19.802063491000002	932.3275230361799
-19.409365079	19.848956915000002	184.9972113558172
-19.500000000	20.226031746	138.59131548843604
-19.704149659	20.227074829	184.9972113558172
-19.771859410	20.183333332	1108.7305239074883
-19.830204081	20.171859409000003	369.9944227116344
-19.837482993	20.246870748	277.1826309768721
-19.838526077	20.248956916	369.9944227116344
-19.838526077	20.248956916	554.3652619537442
-19.988526077	20.228117913	233.08188075904496
-20.178117913	20.994784579	369.9944227116344
-20.187482993	20.97185941	1244.5079348883237
-20.257278911	21.743741496	622.2539674441618
-20.257278911	20.994784579	311.1269837220809
-20.257278911	21.346870747	369.9944227116344
-20.534353741	21.736439908	61.7354126570155
-20.740612244	21.739569160000002	123.47082531403103
-20.971859410	21.510408162	830.6093951598903
-21.007278911	21.744784579	311.1269837220809
-21.007278911	21.744784579	369.9944227116344
-21.007278911	21.744784579	415.3046975799451
-21.011451247	21.737482993	155.56349186104046
-21.250000000	21.740612244	184.9972113558172
-21.463537414	21.737482992	207.65234878997256
-22.000000000	23.270816326	69.29565774421802
-22.059365079	22.443741495999998	466.1637615180899
-22.073945578	22.505192743	739.9888454232688
-22.115623582	22.813537414000002	466.1637615180899
-22.115623582	23.277074829	554.3652619537442
-22.250000000	23.270816326	138.59131548843604
-22.450000000	23.277074829	466.1637615180899
-22.472902494	23.266666666	184.9972113558172
-22.506235827	22.801020407000003	739.9888454232688
-22.690612244	23.265623581	233.08188075904496
-22.812494331	23.159365079	830.6093951598903
-22.821859410	23.166666665999998	493.8833012561241
-22.829160997	23.273945577	415.3046975799451
-22.829160997	23.273945577	493.8833012561241
-22.977074829	23.26249433	277.1826309768721
-23.159365079	23.554149659	466.1637615180899
-23.163537414	23.58435374	739.9888454232688
-23.454149659	24.747913830999998	73.41619197935188
-23.539569160	23.898956915	415.3046975799451
-23.574988662	23.956235827	698.4564628660078
-23.579160997	24.759365078	493.8833012561241
-23.579160997	24.341655327999998	415.3046975799451
-23.750000000	24.747913832	116.54094037952248
-23.913537414	24.344784579	415.3046975799451
-23.938526077	24.755192743	146.8323839587038
-23.974988662	24.318730158	698.4564628660078
-24.168730158	24.758321994	174.61411571650194
-24.318730158	24.733333332	739.9888454232688
-24.348956916	24.76249433	466.1637615180899
-24.352063492	24.764580498	466.1637615180899
-24.352063492	24.762494331	415.3046975799451
-24.490612244	24.753106575	233.08188075904496
-24.750000000	25.209365079	415.3046975799451
-24.751020408	25.586439909	698.4564628660078
-24.943741496	26.145827663000002	77.78174593052023
-25.059365079	25.408321994999998	369.9944227116344
-25.059365079	25.408321994999998	739.9888454232688
-25.164580498	25.493741495	369.9944227116344
-25.215623582	26.145827663	116.54094037952248
-25.413537414	26.13956916	155.56349186104046
-25.415623582	26.158321993999998	369.9944227116344
-25.415623582	26.158321993999998	739.9888454232688
-25.497913832	26.283333332999998	369.9944227116344
-25.555192743	26.313537414	622.2539674441618
-25.659365079	26.146870747	184.9972113558172
-25.761451247	26.158321995	466.1637615180899
-25.761451247	26.158321995	932.3275230361799
-25.909365079	26.216666666000002	311.1269837220809
-26.159365079	27.793741496	493.8833012561241
-26.159365079	27.793741496	622.2539674441618
-26.159365079	27.793741496	987.7666025122483
-26.432290249	27.792698412	51.91308719749314
-26.645827664	27.803106574999997	103.82617439498628
-26.909365079	27.793741496	155.56349186104046
-26.909365079	27.783333332	349.2282314330039
-26.909365079	27.783333332	698.4564628660078
-27.141655328	27.798956914999998	207.65234878997256
-27.363537414	27.795827663	246.94165062806206
-27.710408163	30.057278911	369.9944227116344
-27.774988662	30.176031745	466.1637615180899
-27.891655328	29.149999999	58.27047018976124
-28.034353741	28.381247165	311.1269837220809
-28.034353741	28.381247165	622.2539674441618
-28.204149659	28.901020406999997	116.54094037952248
-28.386439909	29.151020407	311.1269837220809
-28.386439909	29.151020407	622.2539674441618
-28.432290249	29.158321995	184.9972113558172
-28.636439909	29.158321995	233.08188075904496
-28.750000000	29.146870748	698.4564628660078
-28.750000000	29.146870748	349.2282314330039
-28.909365079	29.148956915	116.54094037952248
-29.153106575	30.246870747	311.1269837220809
-29.153106575	30.246870747	622.2539674441618
-29.382290249	30.677074829	58.27047018976124
-29.512494331	29.882290249	277.1826309768721
-29.512494331	29.882290249	554.3652619537442
-29.671859410	30.420816326	116.54094037952248
-29.887482993	30.663537414	174.61411571650194
-29.887482993	30.670816326	277.1826309768721
-29.887482993	30.670816326	554.3652619537442
-30.036439909	30.673945576999998	349.2282314330039
-30.043741496	30.654149658999998	415.3046975799451
-30.157278911	30.667687074	207.65234878997256
-30.255192743	30.672902493	311.1269837220809
-30.255192743	30.672902493	622.2539674441618
-30.427074829	30.671859409	116.54094037952248
-30.679160997	32.203106575	277.1826309768721
-30.679160997	32.203106575	554.3652619537442
-30.922902494	32.213537414	58.27047018976124
-31.054149659	31.411451246	369.9944227116344
-31.167687074	31.541655327	311.1269837220809
-31.192698412	31.965623582	116.54094037952248
-31.424988662	31.809365079	369.9944227116344
-31.454149659	33.022902493	246.94165062806206
-31.454149659	33.022902493	493.8833012561241
-31.454149659	32.210408162	155.56349186104046
-31.551020408	31.891655328	311.1269837220809
-31.723945578	32.213537414	184.9972113558172
-31.808321995	32.214580498	415.3046975799451
-31.874988662	32.232290249	349.2282314330039
-31.970816326	32.216666666	116.54094037952248
-32.191655328	32.559365078000006	369.9944227116344
-32.228117913	32.68435374	311.1269837220809
-32.508321995	33.876031745000006	58.27047018976124
-32.568730158	32.932290248	349.2282314330039
-32.628117913	33.017687073	277.1826309768721
-32.754149659	33.566666665	116.54094037952248
-32.940612244	33.398956915	349.2282314330039
-33.020816326	33.363537414	277.1826309768721
-33.033333333	33.882290249	138.59131548843604
-33.033333333	34.055192743	233.08188075904496
-33.033333333	34.055192743	466.1637615180899
-33.311451247	33.879160997	174.61411571650194
-33.322902494	33.808321995	311.1269837220809
-33.346870748	33.736439908	369.9944227116344
-33.564580498	33.883333332	116.54094037952248
-33.710408163	34.499999998999996	277.1826309768721
-33.723945578	34.499999998999996	349.2282314330039
-34.037482993	35.217687074	58.27047018976124
-34.143741496	34.482290248	207.65234878997256
-34.143741496	34.482290248	415.3046975799451
-34.354149659	35.007278910000004	116.54094037952248
-34.453106575	35.971859409	246.94165062806206
-34.466666666	36.072902493	311.1269837220809
-34.490612244	35.218730156999996	207.65234878997256
-34.490612244	35.218730156999996	415.3046975799451
-34.490612244	35.226031745	123.47082531403103
-34.760408163	35.219773242	155.56349186104046
-34.853106575	35.218730156999996	233.08188075904496
-34.853106575	35.218730156999996	466.1637615180899
-35.015623582	35.23020408	116.54094037952248
-35.227074829	36.315623581000004	207.65234878997256
-35.227074829	36.315623581000004	415.3046975799451
-35.462494331	36.724988662	58.27047018976124
-35.572902494	35.93956916	184.9972113558172
-35.572902494	35.93956916	369.9944227116344
-35.732290249	36.184353741	116.54094037952248
-35.946870748	36.732290249	184.9972113558172
-35.946870748	36.732290249	369.9944227116344
-35.946870748	36.718730158	138.59131548843604
-35.955192743	36.718730156999996	233.08188075904496
-36.031247165	36.654149659000005	277.1826309768721
-36.188526077	36.717687074	116.54094037952248
-36.328117913	36.729160996	207.65234878997256
-36.328117913	36.729160996	415.3046975799451
-36.734353741	38.508321994	184.9972113558172
-36.734353741	38.508321994	369.9944227116344
-36.954149659	38.516666665	58.27047018976124
-37.124988662	37.529160997	207.65234878997256
-37.137482993	37.516666666	246.94165062806206
-37.238526077	37.991655328	116.54094037952248
-37.517687074	39.509365078	174.61411571650194
-37.517687074	39.509365078	349.2282314330039
-37.523945578	37.926031745	246.94165062806206
-37.530204081	37.846870747000004	207.65234878997256
-37.769773242	38.232290248	233.08188075904496
-37.848956916	38.510408163	233.08188075904496
-37.897913832	38.280204081	277.1826309768721
-38.013537414	38.508321994	116.54094037952248
-38.224988662	38.599999999	207.65234878997256
-38.266666666	38.601020407	246.94165062806206
-38.527074829	40.043741495	58.27047018976124
-38.583333333	38.960408162	220.0
-38.617687074	38.997913831000005	261.6255653005986
-38.771859410	39.520816325999995	116.54094037952248
-38.974988662	39.347913832	220.0
-39.000000000	39.370816326	261.6255653005986
-39.050000000	41.554149659	155.56349186104046
-39.050000000	41.554149659	311.1269837220809
-39.290612244	39.811451246000004	233.08188075904496
-39.342698412	40.041655328	233.08188075904496
-39.378117913	39.814580498	293.6647679174076
-39.532290249	40.043741495999996	116.54094037952248
-39.784353741	40.626031745	261.6255653005986
-39.787482993	40.610408162999995	220.0
-40.071859410	41.546870747	58.27047018976124
-40.359365079	41.22185941	116.54094037952248
-40.551020408	41.253106575	233.08188075904496
-40.620816326	41.714580498000004	233.08188075904496
-40.646870748	42.235396824999995	146.8323839587038
-40.646870748	42.235396824999995	293.6647679174076
-40.945827664	42.229160997	233.08188075904496
-41.233333333	42.231247165	116.54094037952248
Binary file testdata/TRIOS-groundtruth/brahms.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/brahms/horn.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,42 @@
+12.8	14.411458333333334	466.1637615180899
+14.310416666666667	15.63125	415.3046975799451
+16.097916666666666	16.421875	369.9944227116344
+16.429166666666667	16.85625	369.9944227116344
+16.840625	17.214583333333334	415.3046975799451
+17.20625	18	369.9944227116344
+17.960416666666667	18.894791666666666	349.2282314330039
+18.802083333333332	19.107291666666665	369.9944227116344
+19.409375	19.848958333333332	184.9972113558172
+19.830208333333335	20.171875	369.9944227116344
+20.178125	21.346875	369.9944227116344
+22.059375	22.44375	466.1637615180899
+22.45	22.813541666666666	466.1637615180899
+22.821875	23.166666666666668	493.8833012561241
+23.159375	23.554166666666667	466.1637615180899
+23.539583333333333	23.898958333333333	415.3046975799451
+23.913541666666667	24.344791666666666	415.3046975799451
+24.348958333333332	24.764583333333334	466.1637615180899
+24.75	25.209375	415.3046975799451
+25.164583333333333	25.49375	369.9944227116344
+25.497916666666665	26.283333333333335	369.9944227116344
+27.775	30.176041666666666	466.1637615180899
+30.04375	30.654166666666665	415.3046975799451
+31.054166666666667	31.411458333333332	369.9944227116344
+31.425	31.809375	369.9944227116344
+31.808333333333334	32.21458333333333	415.3046975799451
+32.19166666666667	32.559375	369.9944227116344
+32.56875	32.932291666666664	349.2282314330039
+32.940625	33.39895833333333	349.2282314330039
+33.346875	33.73645833333333	369.9944227116344
+33.723958333333336	34.5	349.2282314330039
+34.46666666666667	36.072916666666664	311.1269837220809
+36.03125	36.65416666666667	277.1826309768721
+37.1375	37.516666666666666	246.94165062806206
+37.52395833333333	37.92604166666667	246.94165062806206
+37.89791666666667	38.280208333333334	277.1826309768721
+38.266666666666666	38.60104166666667	246.94165062806206
+38.61770833333333	38.99791666666667	261.6255653005986
+39	39.37083333333333	261.6255653005986
+39.378125	39.81458333333333	293.6647679174076
+39.784375	40.626041666666666	261.6255653005986
+40.62083333333333	41.253125	233.08188075904496
Binary file testdata/TRIOS-groundtruth/brahms/horn.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/brahms/mix.csv	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,355 @@
+0.763537414,70,1.516666666,0.46875,A#4 - vel 60
+1.027074829,27,1.262494331,0.46875,D#1 - vel 60
+1.174988662,58,0.696870748,0.46875,A#3 - vel 60
+1.174988662,63,0.696870748,0.46875,D#4 - vel 60
+1.260408163,39,1.026031746,0.46875,D#2 - vel 60
+1.515623582,46,0.777074829,0.46875,A#2 - vel 60
+1.770816326,51,0.528140589,0.46875,D#3 - vel 60
+1.876031746,58,0.417709750,0.46875,A#3 - vel 60
+1.876031746,63,0.417709750,0.46875,D#4 - vel 60
+2.027074829,55,0.266666666,0.46875,G3 - vel 60
+2.289569160,68,1.571882086,0.46875,G#4 - vel 60
+2.512494331,32,1.328117913,0.46875,G#1 - vel 60
+2.679160997,60,0.684376417,0.46875,C4 - vel 60
+2.679160997,63,0.684376417,0.46875,D#4 - vel 60
+2.750000000,44,1.088526077,0.46875,G#2 - vel 60
+3.000000000,48,0.839569160,0.46875,C3 - vel 60
+3.250000000,51,0.590612244,0.46875,D#3 - vel 60
+3.374988662,60,0.478117913,0.46875,C4 - vel 60
+3.374988662,63,0.478117913,0.46875,D#4 - vel 60
+3.500000000,56,0.353106575,0.46875,G#3 - vel 60
+3.750000000,75,1.439569160,0.46875,D#5 - vel 60
+4.079160997,34,1.180204081,0.46875,A#1 - vel 60
+4.170816326,58,0.351043083,0.46875,A#3 - vel 60
+4.170816326,63,0.351043083,0.46875,D#4 - vel 60
+4.170816326,67,0.351043083,0.46875,G4 - vel 60
+4.336439909,46,0.930226757,0.46875,A#2 - vel 60
+4.522902494,67,0.743764172,0.46875,G4 - vel 60
+4.522902494,51,0.748956916,0.46875,D#3 - vel 60
+4.522902494,58,0.481247165,0.46875,A#3 - vel 60
+4.522902494,63,0.344784580,0.46875,D#4 - vel 60
+4.772902494,55,0.498956916,0.46875,G3 - vel 60
+4.874988662,68,0.388548752,0.46875,G#4 - vel 60
+4.874988662,60,0.396870748,0.46875,C4 - vel 60
+4.874988662,63,0.396870748,0.46875,D#4 - vel 60
+5.000000000,58,0.262494331,0.46875,A#3 - vel 60
+5.200000000,74,1.595827664,0.46875,D5 - vel 60
+5.272902494,65,0.725011337,0.46875,F4 - vel 60
+5.272902494,58,0.725011337,0.46875,A#3 - vel 60
+5.272902494,70,1.520839002,0.46875,A#4 - vel 60
+5.509365079,34,1.292698412,0.46875,A#1 - vel 60
+5.740612244,46,1.055215419,0.46875,A#2 - vel 60
+5.997913832,50,0.805192743,0.46875,D3 - vel 60
+6.000000000,65,0.790612244,0.46875,F4 - vel 60
+6.000000000,58,0.495827664,0.46875,A#3 - vel 60
+6.250000000,53,0.544784580,0.46875,F3 - vel 60
+6.374988662,62,0.410408163,0.46875,D4 - vel 60
+6.497913832,58,0.284376417,0.46875,A#3 - vel 60
+7.007278911,36,1.383333333,0.46875,C2 - vel 60
+7.053106575,72,0.452086167,0.46875,C5 - vel 60
+7.109365079,63,0.784376417,0.46875,D#4 - vel 60
+7.109365079,68,0.784376417,0.46875,G#4 - vel 60
+7.317687074,44,1.078140589,0.46875,G#2 - vel 60
+7.510408163,72,0.303129251,0.46875,C5 - vel 60
+7.522902494,48,0.872925170,0.46875,C3 - vel 60
+7.750000000,51,0.644784580,0.46875,D#3 - vel 60
+7.856235827,75,0.392721088,0.46875,D#5 - vel 60
+7.902063492,63,0.478140589,0.46875,D#4 - vel 60
+7.902063492,68,0.478140589,0.46875,G#4 - vel 60
+8.045827664,56,0.352086167,0.46875,G#3 - vel 60
+8.250000000,77,0.815623582,0.46875,F5 - vel 60
+8.567687074,38,1.361473922,0.46875,D2 - vel 60
+8.715623582,65,0.721859410,0.46875,F4 - vel 60
+8.715623582,68,0.721859410,0.46875,G#4 - vel 60
+8.879160997,46,1.055192743,0.46875,A#2 - vel 60
+8.987482993,68,0.943764172,0.46875,G#4 - vel 60
+9.090612244,50,0.839591836,0.46875,D3 - vel 60
+9.267687074,53,0.658344671,0.46875,F3 - vel 60
+9.442698412,65,0.501043083,0.46875,F4 - vel 60
+9.442698412,68,0.501043083,0.46875,G#4 - vel 60
+9.581247165,58,0.353106575,0.46875,A#3 - vel 60
+10.113537414,39,1.269795918,0.46875,D#2 - vel 60
+10.179160997,67,0.736462585,0.46875,G4 - vel 60
+10.200000000,63,0.739569160,0.46875,D#4 - vel 60
+10.200000000,67,0.739569160,0.46875,G4 - vel 60
+10.340612244,46,1.043741496,0.46875,A#2 - vel 60
+10.545827664,51,0.839569160,0.46875,D#3 - vel 60
+10.817687074,55,0.567709750,0.46875,G3 - vel 60
+10.840612244,72,0.497913832,0.570312,C5 - vel 73
+10.942698412,67,0.455215419,0.46875,G4 - vel 60
+10.942698412,63,0.455215419,0.46875,D#4 - vel 60
+11.094784580,58,0.289569160,0.46875,A#3 - vel 60
+11.342698412,72,0.820839002,0.703125,C5 - vel 90
+11.567687074,33,1.361473922,0.46875,A1 - vel 60
+11.715623582,63,0.739569160,0.703125,D#4 - vel 90
+11.715623582,66,0.739569160,0.703125,F#4 - vel 90
+11.840612244,45,1.089591836,0.46875,A2 - vel 60
+12.065623582,66,0.776031746,0.570312,F#4 - vel 73
+12.090612244,51,0.839591836,0.46875,D#3 - vel 60
+12.317687074,54,0.613560090,0.46875,F#3 - vel 60
+12.465623582,66,0.478117913,0.570312,F#4 - vel 73
+12.465623582,63,0.478117913,0.570312,D#4 - vel 73
+12.613537414,60,0.318752834,0.46875,C4 - vel 60
+12.763537414,65,1.116666666,0.46875,F4 - vel 60
+12.800000000,70,1.611451247,0.46875,A#4 - vel 60
+13.102063492,34,1.361473922,0.46875,A#1 - vel 60
+13.215623582,62,0.757278911,0.46875,D4 - vel 60
+13.215623582,65,0.757278911,0.46875,F4 - vel 60
+13.408321995,41,1.051043083,0.46875,F2 - vel 60
+13.613537414,46,0.851043083,0.46875,A#2 - vel 60
+13.840612244,50,0.623968253,0.46875,D3 - vel 60
+13.979160997,65,0.501043083,0.46875,F4 - vel 60
+13.979160997,62,0.501043083,0.46875,D4 - vel 60
+14.136439909,53,0.330226757,0.46875,F3 - vel 60
+14.310408163,68,1.165623582,0.46875,G#4 - vel 60
+14.604149659,35,1.475011337,0.46875,B1 - vel 60
+14.738526077,63,0.737505668,0.46875,D#4 - vel 60
+14.738526077,68,0.892721088,0.46875,G#4 - vel 60
+14.872902494,44,1.202086167,0.46875,G#2 - vel 60
+15.102063492,47,0.976054421,0.46875,B2 - vel 60
+15.329160997,51,0.748956916,0.46875,D#3 - vel 60
+15.477074829,68,0.591655328,0.46875,G#4 - vel 60
+15.477074829,63,0.591655328,0.46875,D#4 - vel 60
+15.622902494,56,0.454172335,0.46875,G#3 - vel 60
+15.800000000,85,1.458321995,0.46875,C#6 - vel 60
+16.097913832,66,0.323945578,0.476562,F#4 - vel 61
+16.158321995,37,1.225011337,0.46875,C#2 - vel 60
+16.261451247,61,1.124988662,0.46875,C#4 - vel 60
+16.261451247,66,0.594784580,0.46875,F#4 - vel 60
+16.261451247,70,1.124988662,0.46875,A#4 - vel 60
+16.408321995,46,0.976031746,0.46875,A#2 - vel 60
+16.429160997,66,0.957278911,0.476562,F#4 - vel 61
+16.619773242,49,0.500000000,0.46875,C#3 - vel 60
+16.840612244,68,0.373968253,0.484375,G#4 - vel 62
+16.863537414,54,0.521859410,0.46875,F#3 - vel 60
+17.011451247,59,0.364580498,0.476562,B3 - vel 61
+17.011451247,63,0.364580498,0.476562,D#4 - vel 61
+17.011451247,68,0.364580498,0.476562,G#4 - vel 61
+17.119773242,49,0.262517006,0.46875,C#3 - vel 60
+17.195827664,83,1.521859410,0.5,B5 - vel 64
+17.206235827,66,0.793764172,0.492188,F#4 - vel 63
+17.408321995,56,1.156258503,0.484375,G#3 - vel 62
+17.408321995,61,0.705215419,0.484375,C#4 - vel 62
+17.408321995,66,1.441678004,0.484375,F#4 - vel 62
+17.636439909,37,1.202086167,0.46875,C#2 - vel 60
+17.840612244,44,0.997913832,0.46875,G#2 - vel 60
+17.960408163,65,0.895827664,0.5,F4 - vel 64
+18.031247165,49,0.817709750,0.46875,C#3 - vel 60
+18.117687074,61,0.738548752,0.5,C#4 - vel 64
+18.117687074,65,0.777097505,0.5,F4 - vel 64
+18.317687074,53,0.522925170,0.46875,F3 - vel 60
+18.567687074,56,0.285419501,0.46875,G#3 - vel 60
+18.802063492,66,0.305215419,0.5,F#4 - vel 64
+18.995827664,82,0.403129251,0.523438,A#5 - vel 67
+19.045827664,30,1.179160997,0.46875,F#1 - vel 60
+19.136439909,70,0.693764172,0.507812,A#4 - vel 65
+19.136439909,66,0.693764172,0.507812,F#4 - vel 65
+19.138526077,61,0.693764172,0.523438,C#4 - vel 67
+19.272902494,42,0.953129251,0.46875,F#2 - vel 60
+19.404149659,82,0.397913832,0.53125,A#5 - vel 68
+19.409365079,54,0.439591836,0.507812,F#3 - vel 65
+19.500000000,49,0.726031746,0.46875,C#3 - vel 60
+19.704149659,54,0.522925170,0.46875,F#3 - vel 60
+19.771859410,85,0.411473922,0.539062,C#6 - vel 69
+19.830204081,66,0.341655328,0.515625,F#4 - vel 66
+19.837482993,61,0.409387755,0.507812,C#4 - vel 65
+19.838526077,66,0.410430839,0.523438,F#4 - vel 67
+19.838526077,73,0.410430839,0.523438,C#5 - vel 67
+19.988526077,58,0.239591836,0.46875,A#3 - vel 60
+20.178117913,66,0.816666666,0.523438,F#4 - vel 67
+20.187482993,87,0.784376417,0.546875,D#6 - vel 70
+20.257278911,75,1.486462585,0.53125,D#5 - vel 68
+20.257278911,63,0.737505668,0.53125,D#4 - vel 68
+20.257278911,66,1.089591836,0.53125,F#4 - vel 68
+20.534353741,35,1.202086167,0.46875,B1 - vel 60
+20.740612244,47,0.998956916,0.46875,B2 - vel 60
+20.971859410,80,0.538548752,0.5625,G#5 - vel 72
+21.007278911,63,0.737505668,0.546875,D#4 - vel 70
+21.007278911,66,0.737505668,0.546875,F#4 - vel 70
+21.007278911,68,0.737505668,0.546875,G#4 - vel 70
+21.011451247,51,0.726031746,0.46875,D#3 - vel 60
+21.250000000,54,0.490612244,0.46875,F#3 - vel 60
+21.463537414,56,0.273945578,0.46875,G#3 - vel 60
+22.000000000,37,1.270816326,0.46875,C#2 - vel 60
+22.059365079,70,0.384376417,0.554688,A#4 - vel 71
+22.073945578,78,0.431247165,0.585938,F#5 - vel 75
+22.115623582,70,0.697913832,0.570312,A#4 - vel 73
+22.115623582,73,1.161451247,0.570312,C#5 - vel 73
+22.250000000,49,1.020816326,0.46875,C#3 - vel 60
+22.450000000,70,0.827074829,0.5625,A#4 - vel 72
+22.472902494,54,0.793764172,0.46875,F#3 - vel 60
+22.506235827,78,0.294784580,0.59375,F#5 - vel 76
+22.690612244,58,0.575011337,0.46875,A#3 - vel 60
+22.812494331,80,0.346870748,0.601562,G#5 - vel 77
+22.821859410,71,0.344807256,0.570312,B4 - vel 73
+22.829160997,68,0.444784580,0.585938,G#4 - vel 75
+22.829160997,71,0.444784580,0.585938,B4 - vel 75
+22.977074829,61,0.285419501,0.46875,C#4 - vel 60
+23.159365079,70,0.394784580,0.578125,A#4 - vel 74
+23.163537414,78,0.420816326,0.609375,F#5 - vel 78
+23.454149659,38,1.293764172,0.46875,D2 - vel 60
+23.539569160,68,0.359387755,0.585938,G#4 - vel 75
+23.574988662,77,0.381247165,0.617188,F5 - vel 79
+23.579160997,71,1.180204081,0.601562,B4 - vel 77
+23.579160997,68,0.762494331,0.601562,G#4 - vel 77
+23.750000000,46,0.997913832,0.46875,A#2 - vel 60
+23.913537414,68,0.431247165,0.59375,G#4 - vel 76
+23.938526077,50,0.816666666,0.46875,D3 - vel 60
+23.974988662,77,0.343741496,0.625,F5 - vel 80
+24.168730158,53,0.589591836,0.46875,F3 - vel 60
+24.318730158,78,0.414603174,0.632812,F#5 - vel 81
+24.348956916,70,0.413537414,0.601562,A#4 - vel 77
+24.352063492,70,0.412517006,0.617188,A#4 - vel 79
+24.352063492,68,0.410430839,0.617188,G#4 - vel 79
+24.490612244,58,0.262494331,0.46875,A#3 - vel 60
+24.750000000,68,0.459365079,0.609375,G#4 - vel 78
+24.751020408,77,0.835419501,0.640625,F5 - vel 82
+24.943741496,39,1.202086167,0.46875,D#2 - vel 60
+25.059365079,66,0.348956916,0.632812,F#4 - vel 81
+25.059365079,78,0.348956916,0.632812,F#5 - vel 81
+25.164580498,66,0.329160997,0.617188,F#4 - vel 79
+25.215623582,46,0.930204081,0.46875,A#2 - vel 60
+25.413537414,51,0.726031746,0.46875,D#3 - vel 60
+25.415623582,66,0.742698412,0.640625,F#4 - vel 82
+25.415623582,78,0.742698412,0.640625,F#5 - vel 82
+25.497913832,66,0.785419501,0.625,F#4 - vel 80
+25.555192743,75,0.758344671,0.65625,D#5 - vel 84
+25.659365079,54,0.487505668,0.46875,F#3 - vel 60
+25.761451247,70,0.396870748,0.648438,A#4 - vel 83
+25.761451247,82,0.396870748,0.648438,A#5 - vel 83
+25.909365079,63,0.307301587,0.46875,D#4 - vel 60
+26.159365079,71,1.634376417,0.65625,B4 - vel 84
+26.159365079,75,1.634376417,0.65625,D#5 - vel 84
+26.159365079,83,1.634376417,0.65625,B5 - vel 84
+26.432290249,32,1.360408163,0.46875,G#1 - vel 60
+26.645827664,44,1.157278911,0.46875,G#2 - vel 60
+26.909365079,51,0.884376417,0.46875,D#3 - vel 60
+26.909365079,65,0.873968253,0.671875,F4 - vel 86
+26.909365079,77,0.873968253,0.671875,F5 - vel 86
+27.141655328,56,0.657301587,0.46875,G#3 - vel 60
+27.363537414,59,0.432290249,0.46875,B3 - vel 60
+27.710408163,66,2.346870748,0.703125,F#4 - vel 90
+27.774988662,70,2.401043083,0.703125,A#4 - vel 90
+27.891655328,34,1.258344671,0.703125,A#1 - vel 90
+28.034353741,63,0.346893424,0.703125,D#4 - vel 90
+28.034353741,75,0.346893424,0.703125,D#5 - vel 90
+28.204149659,46,0.696870748,0.703125,A#2 - vel 90
+28.386439909,63,0.764580498,0.703125,D#4 - vel 90
+28.386439909,75,0.764580498,0.703125,D#5 - vel 90
+28.432290249,54,0.726031746,0.703125,F#3 - vel 90
+28.636439909,58,0.521882086,0.703125,A#3 - vel 90
+28.750000000,77,0.396870748,0.703125,F5 - vel 90
+28.750000000,65,0.396870748,0.703125,F4 - vel 90
+28.909365079,46,0.239591836,0.703125,A#2 - vel 90
+29.153106575,63,1.093764172,0.703125,D#4 - vel 90
+29.153106575,75,1.093764172,0.703125,D#5 - vel 90
+29.382290249,34,1.294784580,0.703125,A#1 - vel 90
+29.512494331,61,0.369795918,0.640625,C#4 - vel 82
+29.512494331,73,0.369795918,0.640625,C#5 - vel 82
+29.671859410,46,0.748956916,0.703125,A#2 - vel 90
+29.887482993,53,0.776054421,0.703125,F3 - vel 90
+29.887482993,61,0.783333333,0.578125,C#4 - vel 74
+29.887482993,73,0.783333333,0.578125,C#5 - vel 74
+30.036439909,65,0.637505668,0.570312,F4 - vel 73
+30.043741496,68,0.610408163,0.570312,G#4 - vel 73
+30.157278911,56,0.510408163,0.703125,G#3 - vel 90
+30.255192743,63,0.417709750,0.515625,D#4 - vel 66
+30.255192743,75,0.417709750,0.515625,D#5 - vel 66
+30.427074829,46,0.244784580,0.703125,A#2 - vel 90
+30.679160997,61,1.523945578,0.46875,C#4 - vel 60
+30.679160997,73,1.523945578,0.46875,C#5 - vel 60
+30.922902494,34,1.290634920,0.703125,A#1 - vel 90
+31.054149659,66,0.357301587,0.46875,F#4 - vel 60
+31.167687074,63,0.373968253,0.46875,D#4 - vel 60
+31.192698412,46,0.772925170,0.703125,A#2 - vel 90
+31.424988662,66,0.384376417,0.46875,F#4 - vel 60
+31.454149659,59,1.568752834,0.46875,B3 - vel 60
+31.454149659,71,1.568752834,0.46875,B4 - vel 60
+31.454149659,51,0.756258503,0.703125,D#3 - vel 90
+31.551020408,63,0.340634920,0.46875,D#4 - vel 60
+31.723945578,54,0.489591836,0.703125,F#3 - vel 90
+31.808321995,68,0.406258503,0.46875,G#4 - vel 60
+31.874988662,65,0.357301587,0.46875,F4 - vel 60
+31.970816326,46,0.245850340,0.703125,A#2 - vel 90
+32.191655328,66,0.367709750,0.46875,F#4 - vel 60
+32.228117913,63,0.456235827,0.46875,D#4 - vel 60
+32.508321995,34,1.367709750,0.703125,A#1 - vel 90
+32.568730158,65,0.363560090,0.46875,F4 - vel 60
+32.628117913,61,0.389569160,0.46875,C#4 - vel 60
+32.754149659,46,0.812517006,0.703125,A#2 - vel 90
+32.940612244,65,0.458344671,0.46875,F4 - vel 60
+33.020816326,61,0.342721088,0.46875,C#4 - vel 60
+33.033333333,49,0.848956916,0.703125,C#3 - vel 90
+33.033333333,58,1.021859410,0.46875,A#3 - vel 60
+33.033333333,70,1.021859410,0.46875,A#4 - vel 60
+33.311451247,53,0.567709750,0.703125,F3 - vel 90
+33.322902494,63,0.485419501,0.46875,D#4 - vel 60
+33.346870748,66,0.389569160,0.46875,F#4 - vel 60
+33.564580498,46,0.318752834,0.703125,A#2 - vel 90
+33.710408163,61,0.789591836,0.46875,C#4 - vel 60
+33.723945578,65,0.776054421,0.46875,F4 - vel 60
+34.037482993,34,1.180204081,0.703125,A#1 - vel 90
+34.143741496,56,0.338548752,0.46875,G#3 - vel 60
+34.143741496,68,0.338548752,0.46875,G#4 - vel 60
+34.354149659,46,0.653129251,0.664062,A#2 - vel 85
+34.453106575,59,1.518752834,0.429688,B3 - vel 55
+34.466666666,63,1.606235827,0.429688,D#4 - vel 55
+34.490612244,56,0.728117913,0.453125,G#3 - vel 58
+34.490612244,68,0.728117913,0.453125,G#4 - vel 58
+34.490612244,47,0.735419501,0.625,B2 - vel 80
+34.760408163,51,0.459365079,0.585938,D#3 - vel 75
+34.853106575,58,0.365623582,0.4375,A#3 - vel 56
+34.853106575,70,0.365623582,0.4375,A#4 - vel 56
+35.015623582,46,0.214580498,0.546875,A#2 - vel 70
+35.227074829,56,1.088548752,0.421875,G#3 - vel 54
+35.227074829,68,1.088548752,0.421875,G#4 - vel 54
+35.462494331,34,1.262494331,0.484375,A#1 - vel 62
+35.572902494,54,0.366666666,0.398438,F#3 - vel 51
+35.572902494,66,0.366666666,0.398438,F#4 - vel 51
+35.732290249,46,0.452063492,0.445312,A#2 - vel 57
+35.946870748,54,0.785419501,0.375,F#3 - vel 48
+35.946870748,66,0.785419501,0.375,F#4 - vel 48
+35.946870748,49,0.771859410,0.398438,C#3 - vel 51
+35.955192743,58,0.763537414,0.351562,A#3 - vel 45
+36.031247165,61,0.622902494,0.351562,C#4 - vel 45
+36.188526077,46,0.529160997,0.351562,A#2 - vel 45
+36.328117913,56,0.401043083,0.351562,G#3 - vel 45
+36.328117913,68,0.401043083,0.351562,G#4 - vel 45
+36.734353741,54,1.773968253,0.351562,F#3 - vel 45
+36.734353741,66,1.773968253,0.351562,F#4 - vel 45
+36.954149659,34,1.562517006,0.351562,A#1 - vel 45
+37.124988662,56,0.404172335,0.351562,G#3 - vel 45
+37.137482993,59,0.379183673,0.351562,B3 - vel 45
+37.238526077,46,0.753129251,0.390625,A#2 - vel 50
+37.517687074,53,1.991678004,0.46875,F3 - vel 60
+37.517687074,65,1.991678004,0.46875,F4 - vel 60
+37.523945578,59,0.402086167,0.421875,B3 - vel 54
+37.530204081,56,0.316666666,0.421875,G#3 - vel 54
+37.769773242,58,0.462517006,0.46875,A#3 - vel 60
+37.848956916,58,0.661451247,0.492188,A#3 - vel 63
+37.897913832,61,0.382290249,0.492188,C#4 - vel 63
+38.013537414,46,0.494784580,0.5,A#2 - vel 64
+38.224988662,56,0.375011337,0.546875,G#3 - vel 70
+38.266666666,59,0.334353741,0.546875,B3 - vel 70
+38.527074829,34,1.516666666,0.570312,A#1 - vel 73
+38.583333333,57,0.377074829,0.625,A3 - vel 80
+38.617687074,60,0.380226757,0.625,C4 - vel 80
+38.771859410,46,0.748956916,0.609375,A#2 - vel 78
+38.974988662,57,0.372925170,0.703125,A3 - vel 90
+39.000000000,60,0.370816326,0.703125,C4 - vel 90
+39.050000000,51,2.504149659,0.703125,D#3 - vel 90
+39.050000000,63,2.504149659,0.703125,D#4 - vel 90
+39.290612244,58,0.520839002,0.703125,A#3 - vel 90
+39.342698412,58,0.698956916,0.570312,A#3 - vel 73
+39.378117913,62,0.436462585,0.570312,D4 - vel 73
+39.532290249,46,0.511451247,0.570312,A#2 - vel 73
+39.784353741,60,0.841678004,0.46875,C4 - vel 60
+39.787482993,57,0.822925170,0.46875,A3 - vel 60
+40.071859410,34,1.475011337,0.46875,A#1 - vel 60
+40.359365079,46,0.862494331,0.46875,A#2 - vel 60
+40.551020408,58,0.702086167,0.46875,A#3 - vel 60
+40.620816326,58,1.093764172,0.46875,A#3 - vel 60
+40.646870748,50,1.588526077,0.46875,D3 - vel 60
+40.646870748,62,1.588526077,0.46875,D4 - vel 60
+40.945827664,58,1.283333333,0.46875,A#3 - vel 60
+41.233333333,46,0.997913832,0.46875,A#2 - vel 60
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/brahms/mix.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,355 @@
+0.763537414	2.28020408	466.1637615180899
+1.027074829	2.28956916	38.890872965260115
+1.174988662	1.87185941	233.08188075904496
+1.174988662	1.87185941	311.1269837220809
+1.260408163	2.286439909	77.78174593052023
+1.515623582	2.292698411	116.54094037952248
+1.770816326	2.298956915	155.56349186104046
+1.876031746	2.293741496	233.08188075904496
+1.876031746	2.293741496	311.1269837220809
+2.027074829	2.293741495	195.99771799087463
+2.289569160	3.861451246	415.3046975799451
+2.512494331	3.840612244	51.91308719749314
+2.679160997	3.3635374139999996	261.6255653005986
+2.679160997	3.3635374139999996	311.1269837220809
+2.750000000	3.838526077	103.82617439498628
+3.000000000	3.83956916	130.8127826502993
+3.250000000	3.840612244	155.56349186104046
+3.374988662	3.853106575	261.6255653005986
+3.374988662	3.853106575	311.1269837220809
+3.500000000	3.853106575	207.65234878997256
+3.750000000	5.18956916	622.2539674441618
+4.079160997	5.259365078	58.27047018976124
+4.170816326	4.521859408999999	233.08188075904496
+4.170816326	4.521859408999999	311.1269837220809
+4.170816326	4.521859408999999	391.99543598174927
+4.336439909	5.266666666	116.54094037952248
+4.522902494	5.266666666	391.99543598174927
+4.522902494	5.27185941	155.56349186104046
+4.522902494	5.004149659	233.08188075904496
+4.522902494	4.867687074	311.1269837220809
+4.772902494	5.27185941	195.99771799087463
+4.874988662	5.263537414	415.3046975799451
+4.874988662	5.271859409999999	261.6255653005986
+4.874988662	5.271859409999999	311.1269837220809
+5.000000000	5.262494331	233.08188075904496
+5.200000000	6.795827664	587.3295358348151
+5.272902494	5.997913831	349.2282314330039
+5.272902494	5.997913831	233.08188075904496
+5.272902494	6.793741496	466.1637615180899
+5.509365079	6.802063491	58.27047018976124
+5.740612244	6.795827663000001	116.54094037952248
+5.997913832	6.803106575	146.8323839587038
+6.000000000	6.790612244	349.2282314330039
+6.000000000	6.495827664	233.08188075904496
+6.250000000	6.79478458	174.61411571650194
+6.374988662	6.785396824999999	293.6647679174076
+6.497913832	6.782290249	233.08188075904496
+7.007278911	8.390612244	65.40639132514966
+7.053106575	7.505192742	523.2511306011972
+7.109365079	7.893741496	311.1269837220809
+7.109365079	7.893741496	415.3046975799451
+7.317687074	8.395827663	103.82617439498628
+7.510408163	7.813537414	523.2511306011972
+7.522902494	8.395827664	130.8127826502993
+7.750000000	8.39478458	155.56349186104046
+7.856235827	8.248956914999999	622.2539674441618
+7.902063492	8.380204081	311.1269837220809
+7.902063492	8.380204081	415.3046975799451
+8.045827664	8.397913831	207.65234878997256
+8.250000000	9.065623582	698.4564628660078
+8.567687074	9.929160996	73.41619197935188
+8.715623582	9.437482992	349.2282314330039
+8.715623582	9.437482992	415.3046975799451
+8.879160997	9.934353739999999	116.54094037952248
+8.987482993	9.931247165	415.3046975799451
+9.090612244	9.930204080000001	146.8323839587038
+9.267687074	9.926031745	174.61411571650194
+9.442698412	9.943741495000001	349.2282314330039
+9.442698412	9.943741495000001	415.3046975799451
+9.581247165	9.93435374	233.08188075904496
+10.113537414	11.383333332	77.78174593052023
+10.179160997	10.915623582	391.99543598174927
+10.200000000	10.93956916	311.1269837220809
+10.200000000	10.93956916	391.99543598174927
+10.340612244	11.384353740000002	116.54094037952248
+10.545827664	11.385396824	155.56349186104046
+10.817687074	11.385396824	195.99771799087463
+10.840612244	11.338526076	523.2511306011972
+10.942698412	11.397913831	391.99543598174927
+10.942698412	11.397913831	311.1269837220809
+11.094784580	11.38435374	233.08188075904496
+11.342698412	12.163537414	523.2511306011972
+11.567687074	12.929160996	55.0
+11.715623582	12.455192742	311.1269837220809
+11.715623582	12.455192742	369.9944227116344
+11.840612244	12.930204080000001	110.0
+12.065623582	12.841655328	369.9944227116344
+12.090612244	12.930204080000001	155.56349186104046
+12.317687074	12.931247164	184.9972113558172
+12.465623582	12.943741495	369.9944227116344
+12.465623582	12.943741495	311.1269837220809
+12.613537414	12.932290248	261.6255653005986
+12.763537414	13.88020408	349.2282314330039
+12.800000000	14.411451247	466.1637615180899
+13.102063492	14.463537414	58.27047018976124
+13.215623582	13.972902493	293.6647679174076
+13.215623582	13.972902493	349.2282314330039
+13.408321995	14.459365078	87.30705785825097
+13.613537414	14.464580497	116.54094037952248
+13.840612244	14.464580497	146.8323839587038
+13.979160997	14.48020408	349.2282314330039
+13.979160997	14.48020408	293.6647679174076
+14.136439909	14.466666666	174.61411571650194
+14.310408163	15.476031745	415.3046975799451
+14.604149659	16.079160996000002	61.7354126570155
+14.738526077	15.476031745	311.1269837220809
+14.738526077	15.631247165	415.3046975799451
+14.872902494	16.074988661	103.82617439498628
+15.102063492	16.078117913	123.47082531403103
+15.329160997	16.078117913	155.56349186104046
+15.477074829	16.068730157	415.3046975799451
+15.477074829	16.068730157	311.1269837220809
+15.622902494	16.077074829	207.65234878997256
+15.800000000	17.258321995	1108.7305239074883
+16.097913832	16.42185941	369.9944227116344
+16.158321995	17.383333332000003	69.29565774421802
+16.261451247	17.386439909	277.1826309768721
+16.261451247	16.856235827	369.9944227116344
+16.261451247	17.386439909	466.1637615180899
+16.408321995	17.384353741	116.54094037952248
+16.429160997	17.386439908	369.9944227116344
+16.619773242	17.119773242	138.59131548843604
+16.840612244	17.214580497	415.3046975799451
+16.863537414	17.385396824	184.9972113558172
+17.011451247	17.376031745	246.94165062806206
+17.011451247	17.376031745	311.1269837220809
+17.011451247	17.376031745	415.3046975799451
+17.119773242	17.382290248	138.59131548843604
+17.195827664	18.717687074	987.7666025122483
+17.206235827	17.999999999	369.9944227116344
+17.408321995	18.564580498	207.65234878997256
+17.408321995	18.113537414	277.1826309768721
+17.408321995	18.849999999	369.9944227116344
+17.636439909	18.838526076	69.29565774421802
+17.840612244	18.838526075999997	103.82617439498628
+17.960408163	18.856235827	349.2282314330039
+18.031247165	18.848956915	138.59131548843604
+18.117687074	18.856235826	277.1826309768721
+18.117687074	18.894784579	349.2282314330039
+18.317687074	18.840612244	174.61411571650194
+18.567687074	18.853106574999998	207.65234878997256
+18.802063492	19.107278910999998	369.9944227116344
+18.995827664	19.398956915	932.3275230361799
+19.045827664	20.224988661	46.2493028389543
+19.136439909	19.830204081	466.1637615180899
+19.136439909	19.830204081	369.9944227116344
+19.138526077	19.832290249000003	277.1826309768721
+19.272902494	20.226031745	92.4986056779086
+19.404149659	19.802063491000002	932.3275230361799
+19.409365079	19.848956915000002	184.9972113558172
+19.500000000	20.226031746	138.59131548843604
+19.704149659	20.227074829	184.9972113558172
+19.771859410	20.183333332	1108.7305239074883
+19.830204081	20.171859409000003	369.9944227116344
+19.837482993	20.246870748	277.1826309768721
+19.838526077	20.248956916	369.9944227116344
+19.838526077	20.248956916	554.3652619537442
+19.988526077	20.228117913	233.08188075904496
+20.178117913	20.994784579	369.9944227116344
+20.187482993	20.97185941	1244.5079348883237
+20.257278911	21.743741496	622.2539674441618
+20.257278911	20.994784579	311.1269837220809
+20.257278911	21.346870747	369.9944227116344
+20.534353741	21.736439908	61.7354126570155
+20.740612244	21.739569160000002	123.47082531403103
+20.971859410	21.510408162	830.6093951598903
+21.007278911	21.744784579	311.1269837220809
+21.007278911	21.744784579	369.9944227116344
+21.007278911	21.744784579	415.3046975799451
+21.011451247	21.737482993	155.56349186104046
+21.250000000	21.740612244	184.9972113558172
+21.463537414	21.737482992	207.65234878997256
+22.000000000	23.270816326	69.29565774421802
+22.059365079	22.443741495999998	466.1637615180899
+22.073945578	22.505192743	739.9888454232688
+22.115623582	22.813537414000002	466.1637615180899
+22.115623582	23.277074829	554.3652619537442
+22.250000000	23.270816326	138.59131548843604
+22.450000000	23.277074829	466.1637615180899
+22.472902494	23.266666666	184.9972113558172
+22.506235827	22.801020407000003	739.9888454232688
+22.690612244	23.265623581	233.08188075904496
+22.812494331	23.159365079	830.6093951598903
+22.821859410	23.166666665999998	493.8833012561241
+22.829160997	23.273945577	415.3046975799451
+22.829160997	23.273945577	493.8833012561241
+22.977074829	23.26249433	277.1826309768721
+23.159365079	23.554149659	466.1637615180899
+23.163537414	23.58435374	739.9888454232688
+23.454149659	24.747913830999998	73.41619197935188
+23.539569160	23.898956915	415.3046975799451
+23.574988662	23.956235827	698.4564628660078
+23.579160997	24.759365078	493.8833012561241
+23.579160997	24.341655327999998	415.3046975799451
+23.750000000	24.747913832	116.54094037952248
+23.913537414	24.344784579	415.3046975799451
+23.938526077	24.755192743	146.8323839587038
+23.974988662	24.318730158	698.4564628660078
+24.168730158	24.758321994	174.61411571650194
+24.318730158	24.733333332	739.9888454232688
+24.348956916	24.76249433	466.1637615180899
+24.352063492	24.764580498	466.1637615180899
+24.352063492	24.762494331	415.3046975799451
+24.490612244	24.753106575	233.08188075904496
+24.750000000	25.209365079	415.3046975799451
+24.751020408	25.586439909	698.4564628660078
+24.943741496	26.145827663000002	77.78174593052023
+25.059365079	25.408321994999998	369.9944227116344
+25.059365079	25.408321994999998	739.9888454232688
+25.164580498	25.493741495	369.9944227116344
+25.215623582	26.145827663	116.54094037952248
+25.413537414	26.13956916	155.56349186104046
+25.415623582	26.158321993999998	369.9944227116344
+25.415623582	26.158321993999998	739.9888454232688
+25.497913832	26.283333332999998	369.9944227116344
+25.555192743	26.313537414	622.2539674441618
+25.659365079	26.146870747	184.9972113558172
+25.761451247	26.158321995	466.1637615180899
+25.761451247	26.158321995	932.3275230361799
+25.909365079	26.216666666000002	311.1269837220809
+26.159365079	27.793741496	493.8833012561241
+26.159365079	27.793741496	622.2539674441618
+26.159365079	27.793741496	987.7666025122483
+26.432290249	27.792698412	51.91308719749314
+26.645827664	27.803106574999997	103.82617439498628
+26.909365079	27.793741496	155.56349186104046
+26.909365079	27.783333332	349.2282314330039
+26.909365079	27.783333332	698.4564628660078
+27.141655328	27.798956914999998	207.65234878997256
+27.363537414	27.795827663	246.94165062806206
+27.710408163	30.057278911	369.9944227116344
+27.774988662	30.176031745	466.1637615180899
+27.891655328	29.149999999	58.27047018976124
+28.034353741	28.381247165	311.1269837220809
+28.034353741	28.381247165	622.2539674441618
+28.204149659	28.901020406999997	116.54094037952248
+28.386439909	29.151020407	311.1269837220809
+28.386439909	29.151020407	622.2539674441618
+28.432290249	29.158321995	184.9972113558172
+28.636439909	29.158321995	233.08188075904496
+28.750000000	29.146870748	698.4564628660078
+28.750000000	29.146870748	349.2282314330039
+28.909365079	29.148956915	116.54094037952248
+29.153106575	30.246870747	311.1269837220809
+29.153106575	30.246870747	622.2539674441618
+29.382290249	30.677074829	58.27047018976124
+29.512494331	29.882290249	277.1826309768721
+29.512494331	29.882290249	554.3652619537442
+29.671859410	30.420816326	116.54094037952248
+29.887482993	30.663537414	174.61411571650194
+29.887482993	30.670816326	277.1826309768721
+29.887482993	30.670816326	554.3652619537442
+30.036439909	30.673945576999998	349.2282314330039
+30.043741496	30.654149658999998	415.3046975799451
+30.157278911	30.667687074	207.65234878997256
+30.255192743	30.672902493	311.1269837220809
+30.255192743	30.672902493	622.2539674441618
+30.427074829	30.671859409	116.54094037952248
+30.679160997	32.203106575	277.1826309768721
+30.679160997	32.203106575	554.3652619537442
+30.922902494	32.213537414	58.27047018976124
+31.054149659	31.411451246	369.9944227116344
+31.167687074	31.541655327	311.1269837220809
+31.192698412	31.965623582	116.54094037952248
+31.424988662	31.809365079	369.9944227116344
+31.454149659	33.022902493	246.94165062806206
+31.454149659	33.022902493	493.8833012561241
+31.454149659	32.210408162	155.56349186104046
+31.551020408	31.891655328	311.1269837220809
+31.723945578	32.213537414	184.9972113558172
+31.808321995	32.214580498	415.3046975799451
+31.874988662	32.232290249	349.2282314330039
+31.970816326	32.216666666	116.54094037952248
+32.191655328	32.559365078000006	369.9944227116344
+32.228117913	32.68435374	311.1269837220809
+32.508321995	33.876031745000006	58.27047018976124
+32.568730158	32.932290248	349.2282314330039
+32.628117913	33.017687073	277.1826309768721
+32.754149659	33.566666665	116.54094037952248
+32.940612244	33.398956915	349.2282314330039
+33.020816326	33.363537414	277.1826309768721
+33.033333333	33.882290249	138.59131548843604
+33.033333333	34.055192743	233.08188075904496
+33.033333333	34.055192743	466.1637615180899
+33.311451247	33.879160997	174.61411571650194
+33.322902494	33.808321995	311.1269837220809
+33.346870748	33.736439908	369.9944227116344
+33.564580498	33.883333332	116.54094037952248
+33.710408163	34.499999998999996	277.1826309768721
+33.723945578	34.499999998999996	349.2282314330039
+34.037482993	35.217687074	58.27047018976124
+34.143741496	34.482290248	207.65234878997256
+34.143741496	34.482290248	415.3046975799451
+34.354149659	35.007278910000004	116.54094037952248
+34.453106575	35.971859409	246.94165062806206
+34.466666666	36.072902493	311.1269837220809
+34.490612244	35.218730156999996	207.65234878997256
+34.490612244	35.218730156999996	415.3046975799451
+34.490612244	35.226031745	123.47082531403103
+34.760408163	35.219773242	155.56349186104046
+34.853106575	35.218730156999996	233.08188075904496
+34.853106575	35.218730156999996	466.1637615180899
+35.015623582	35.23020408	116.54094037952248
+35.227074829	36.315623581000004	207.65234878997256
+35.227074829	36.315623581000004	415.3046975799451
+35.462494331	36.724988662	58.27047018976124
+35.572902494	35.93956916	184.9972113558172
+35.572902494	35.93956916	369.9944227116344
+35.732290249	36.184353741	116.54094037952248
+35.946870748	36.732290249	184.9972113558172
+35.946870748	36.732290249	369.9944227116344
+35.946870748	36.718730158	138.59131548843604
+35.955192743	36.718730156999996	233.08188075904496
+36.031247165	36.654149659000005	277.1826309768721
+36.188526077	36.717687074	116.54094037952248
+36.328117913	36.729160996	207.65234878997256
+36.328117913	36.729160996	415.3046975799451
+36.734353741	38.508321994	184.9972113558172
+36.734353741	38.508321994	369.9944227116344
+36.954149659	38.516666665	58.27047018976124
+37.124988662	37.529160997	207.65234878997256
+37.137482993	37.516666666	246.94165062806206
+37.238526077	37.991655328	116.54094037952248
+37.517687074	39.509365078	174.61411571650194
+37.517687074	39.509365078	349.2282314330039
+37.523945578	37.926031745	246.94165062806206
+37.530204081	37.846870747000004	207.65234878997256
+37.769773242	38.232290248	233.08188075904496
+37.848956916	38.510408163	233.08188075904496
+37.897913832	38.280204081	277.1826309768721
+38.013537414	38.508321994	116.54094037952248
+38.224988662	38.599999999	207.65234878997256
+38.266666666	38.601020407	246.94165062806206
+38.527074829	40.043741495	58.27047018976124
+38.583333333	38.960408162	220.0
+38.617687074	38.997913831000005	261.6255653005986
+38.771859410	39.520816325999995	116.54094037952248
+38.974988662	39.347913832	220.0
+39.000000000	39.370816326	261.6255653005986
+39.050000000	41.554149659	155.56349186104046
+39.050000000	41.554149659	311.1269837220809
+39.290612244	39.811451246000004	233.08188075904496
+39.342698412	40.041655328	233.08188075904496
+39.378117913	39.814580498	293.6647679174076
+39.532290249	40.043741495999996	116.54094037952248
+39.784353741	40.626031745	261.6255653005986
+39.787482993	40.610408162999995	220.0
+40.071859410	41.546870747	58.27047018976124
+40.359365079	41.22185941	116.54094037952248
+40.551020408	41.253106575	233.08188075904496
+40.620816326	41.714580498000004	233.08188075904496
+40.646870748	42.235396824999995	146.8323839587038
+40.646870748	42.235396824999995	293.6647679174076
+40.945827664	42.229160997	233.08188075904496
+41.233333333	42.231247165	116.54094037952248
Binary file testdata/TRIOS-groundtruth/brahms/mix.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/brahms/piano.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,264 @@
+0.7635416666666667	2.2802083333333334	466.1637615180899
+1.0270833333333333	2.2895833333333333	38.890872965260115
+1.175	1.871875	311.1269837220809
+1.175	1.871875	233.08188075904496
+1.2604166666666667	2.2864583333333335	77.78174593052023
+1.515625	2.292708333333333	116.54094037952248
+1.7708333333333333	2.298958333333333	155.56349186104046
+1.8760416666666666	2.29375	311.1269837220809
+1.8760416666666666	2.29375	233.08188075904496
+2.027083333333333	2.29375	195.99771799087463
+2.2895833333333333	3.861458333333333	415.3046975799451
+2.5125	3.840625	51.91308719749314
+2.6791666666666667	3.363541666666667	311.1269837220809
+2.6791666666666667	3.363541666666667	261.6255653005986
+2.75	3.8385416666666665	103.82617439498628
+3	3.839583333333333	130.8127826502993
+3.25	3.840625	155.56349186104046
+3.375	3.853125	311.1269837220809
+3.375	3.853125	261.6255653005986
+3.5	3.853125	207.65234878997256
+4.079166666666667	5.259375	58.27047018976124
+4.170833333333333	4.521875	391.99543598174927
+4.170833333333333	4.521875	311.1269837220809
+4.170833333333333	4.521875	233.08188075904496
+4.336458333333334	5.266666666666667	116.54094037952248
+4.522916666666666	4.867708333333334	311.1269837220809
+4.522916666666666	5.004166666666666	233.08188075904496
+4.522916666666666	5.271875	155.56349186104046
+4.522916666666666	5.266666666666667	391.99543598174927
+4.772916666666666	5.271875	195.99771799087463
+4.875	5.271875	311.1269837220809
+4.875	5.271875	261.6255653005986
+4.875	5.263541666666667	415.3046975799451
+5	5.2625	233.08188075904496
+5.272916666666666	6.79375	466.1637615180899
+5.272916666666666	5.997916666666667	233.08188075904496
+5.272916666666666	5.997916666666667	349.2282314330039
+5.509375	6.802083333333333	58.27047018976124
+5.740625	6.795833333333333	116.54094037952248
+5.997916666666667	6.803125	146.8323839587038
+6	6.495833333333334	233.08188075904496
+6	6.790625	349.2282314330039
+6.25	6.794791666666667	174.61411571650194
+6.375	6.785416666666666	293.6647679174076
+6.497916666666667	6.782291666666667	233.08188075904496
+7.007291666666666	8.390625	65.40639132514966
+7.109375	7.89375	415.3046975799451
+7.109375	7.89375	311.1269837220809
+7.317708333333333	8.395833333333334	103.82617439498628
+7.522916666666666	8.395833333333334	130.8127826502993
+7.75	8.394791666666666	155.56349186104046
+7.902083333333334	8.380208333333334	415.3046975799451
+7.902083333333334	8.380208333333334	311.1269837220809
+8.045833333333333	8.397916666666667	207.65234878997256
+8.567708333333334	9.929166666666667	73.41619197935188
+8.715625	9.4375	415.3046975799451
+8.715625	9.4375	349.2282314330039
+8.879166666666666	9.934375	116.54094037952248
+9.090625	9.930208333333333	146.8323839587038
+9.267708333333333	9.926041666666666	174.61411571650194
+9.442708333333334	9.94375	415.3046975799451
+9.442708333333334	9.94375	349.2282314330039
+9.58125	9.934375	233.08188075904496
+10.113541666666666	11.383333333333333	77.78174593052023
+10.2	10.939583333333333	391.99543598174927
+10.2	10.939583333333333	311.1269837220809
+10.340625	11.384375	116.54094037952248
+10.545833333333333	11.385416666666666	155.56349186104046
+10.817708333333334	11.385416666666666	195.99771799087463
+10.942708333333334	11.397916666666667	311.1269837220809
+10.942708333333334	11.397916666666667	391.99543598174927
+11.094791666666667	11.384375	233.08188075904496
+11.567708333333334	12.929166666666667	55.0
+11.715625	12.455208333333333	369.9944227116344
+11.715625	12.455208333333333	311.1269837220809
+11.840625	12.930208333333333	110.0
+12.090625	12.930208333333333	155.56349186104046
+12.317708333333334	12.93125	184.9972113558172
+12.465625	12.94375	311.1269837220809
+12.465625	12.94375	369.9944227116344
+12.613541666666666	12.932291666666666	261.6255653005986
+13.102083333333333	14.463541666666666	58.27047018976124
+13.215625	13.972916666666666	349.2282314330039
+13.215625	13.972916666666666	293.6647679174076
+13.408333333333333	14.459375	87.30705785825097
+13.613541666666666	14.464583333333334	116.54094037952248
+13.840625	14.464583333333334	146.8323839587038
+13.979166666666666	14.480208333333334	293.6647679174076
+13.979166666666666	14.480208333333334	349.2282314330039
+14.136458333333334	14.466666666666667	174.61411571650194
+14.604166666666666	16.079166666666666	61.7354126570155
+14.738541666666666	15.476041666666667	415.3046975799451
+14.738541666666666	15.476041666666667	311.1269837220809
+14.872916666666667	16.075	103.82617439498628
+15.102083333333333	16.078125	123.47082531403103
+15.329166666666667	16.078125	155.56349186104046
+15.477083333333333	16.06875	311.1269837220809
+15.477083333333333	16.06875	415.3046975799451
+15.622916666666667	16.077083333333334	207.65234878997256
+16.158333333333335	17.383333333333333	69.29565774421802
+16.261458333333334	17.386458333333334	466.1637615180899
+16.261458333333334	17.386458333333334	369.9944227116344
+16.261458333333334	17.386458333333334	277.1826309768721
+16.408333333333335	17.384375	116.54094037952248
+16.619791666666668	17.119791666666668	138.59131548843604
+16.863541666666666	17.385416666666668	184.9972113558172
+17.011458333333334	17.376041666666666	415.3046975799451
+17.011458333333334	17.376041666666666	311.1269837220809
+17.011458333333334	17.376041666666666	246.94165062806206
+17.119791666666668	17.382291666666667	138.59131548843604
+17.408333333333335	18.85	369.9944227116344
+17.408333333333335	18.113541666666666	277.1826309768721
+17.408333333333335	18.564583333333335	207.65234878997256
+17.636458333333334	18.838541666666668	69.29565774421802
+17.840625	18.838541666666668	103.82617439498628
+18.03125	18.848958333333332	138.59131548843604
+18.117708333333333	18.85625	349.2282314330039
+18.117708333333333	18.85625	277.1826309768721
+18.317708333333332	18.840625	174.61411571650194
+18.567708333333332	18.853125	207.65234878997256
+19.045833333333334	20.225	46.2493028389543
+19.136458333333334	19.830208333333335	369.9944227116344
+19.136458333333334	19.830208333333335	466.1637615180899
+19.138541666666665	19.832291666666666	277.1826309768721
+19.272916666666667	20.226041666666667	92.4986056779086
+19.5	20.226041666666667	138.59131548843604
+19.704166666666666	20.227083333333333	184.9972113558172
+19.8375	20.246875	277.1826309768721
+19.838541666666668	20.248958333333334	554.3652619537442
+19.838541666666668	20.248958333333334	369.9944227116344
+19.988541666666666	20.228125	233.08188075904496
+20.257291666666667	20.994791666666668	369.9944227116344
+20.257291666666667	20.994791666666668	311.1269837220809
+20.257291666666667	21.74375	622.2539674441618
+20.534375	21.736458333333335	61.7354126570155
+20.740625	21.739583333333332	123.47082531403103
+21.007291666666667	21.744791666666668	415.3046975799451
+21.007291666666667	21.744791666666668	369.9944227116344
+21.007291666666667	21.744791666666668	311.1269837220809
+21.011458333333334	21.7375	155.56349186104046
+21.25	21.740625	184.9972113558172
+21.463541666666668	21.7375	207.65234878997256
+22	23.270833333333332	69.29565774421802
+22.115625	23.277083333333334	554.3652619537442
+22.115625	23.277083333333334	466.1637615180899
+22.25	23.270833333333332	138.59131548843604
+22.472916666666666	23.266666666666666	184.9972113558172
+22.690625	23.265625	233.08188075904496
+22.829166666666666	23.273958333333333	493.8833012561241
+22.829166666666666	23.273958333333333	415.3046975799451
+22.977083333333333	23.2625	277.1826309768721
+23.454166666666666	24.747916666666665	73.41619197935188
+23.579166666666666	24.341666666666665	415.3046975799451
+23.579166666666666	24.759375	493.8833012561241
+23.75	24.747916666666665	116.54094037952248
+23.938541666666666	24.755208333333332	146.8323839587038
+24.16875	24.758333333333333	174.61411571650194
+24.352083333333333	24.7625	415.3046975799451
+24.352083333333333	24.7625	466.1637615180899
+24.490625	24.753125	233.08188075904496
+24.94375	26.145833333333332	77.78174593052023
+25.059375	25.408333333333335	739.9888454232688
+25.059375	25.408333333333335	369.9944227116344
+25.215625	26.145833333333332	116.54094037952248
+25.413541666666667	26.139583333333334	155.56349186104046
+25.415625	26.158333333333335	739.9888454232688
+25.415625	26.158333333333335	369.9944227116344
+25.659375	26.146875	184.9972113558172
+25.761458333333334	26.158333333333335	932.3275230361799
+25.761458333333334	26.158333333333335	466.1637615180899
+25.909375	26.216666666666665	311.1269837220809
+26.159375	27.79375	987.7666025122483
+26.159375	27.79375	622.2539674441618
+26.159375	27.79375	493.8833012561241
+26.432291666666668	27.792708333333334	51.91308719749314
+26.645833333333332	27.803125	103.82617439498628
+26.909375	27.783333333333335	698.4564628660078
+26.909375	27.783333333333335	349.2282314330039
+26.909375	27.79375	155.56349186104046
+27.141666666666666	27.798958333333335	207.65234878997256
+27.363541666666666	27.795833333333334	246.94165062806206
+27.891666666666666	29.15	58.27047018976124
+28.034375	28.38125	622.2539674441618
+28.034375	28.38125	311.1269837220809
+28.204166666666666	28.901041666666668	116.54094037952248
+28.386458333333334	29.151041666666668	622.2539674441618
+28.386458333333334	29.151041666666668	311.1269837220809
+28.432291666666668	29.158333333333335	184.9972113558172
+28.636458333333334	29.158333333333335	233.08188075904496
+28.75	29.146875	349.2282314330039
+28.75	29.146875	698.4564628660078
+28.909375	29.148958333333333	116.54094037952248
+29.153125	30.246875	622.2539674441618
+29.153125	30.246875	311.1269837220809
+29.382291666666667	30.677083333333332	58.27047018976124
+29.5125	29.882291666666667	554.3652619537442
+29.5125	29.882291666666667	277.1826309768721
+29.671875	30.420833333333334	116.54094037952248
+29.8875	30.670833333333334	554.3652619537442
+29.8875	30.670833333333334	277.1826309768721
+29.8875	30.663541666666667	174.61411571650194
+30.157291666666666	30.667708333333334	207.65234878997256
+30.255208333333332	30.672916666666666	622.2539674441618
+30.255208333333332	30.672916666666666	311.1269837220809
+30.427083333333332	30.671875	116.54094037952248
+30.679166666666667	32.203125	554.3652619537442
+30.679166666666667	32.203125	277.1826309768721
+30.922916666666666	32.213541666666664	58.27047018976124
+31.192708333333332	31.965625	116.54094037952248
+31.454166666666666	32.21041666666667	155.56349186104046
+31.454166666666666	33.02291666666667	493.8833012561241
+31.454166666666666	33.02291666666667	246.94165062806206
+31.723958333333332	32.213541666666664	184.9972113558172
+31.970833333333335	32.21666666666667	116.54094037952248
+32.50833333333333	33.876041666666666	58.27047018976124
+32.75416666666667	33.56666666666667	116.54094037952248
+33.03333333333333	34.05520833333333	466.1637615180899
+33.03333333333333	34.05520833333333	233.08188075904496
+33.03333333333333	33.88229166666667	138.59131548843604
+33.311458333333334	33.87916666666667	174.61411571650194
+33.56458333333333	33.88333333333333	116.54094037952248
+34.0375	35.217708333333334	58.27047018976124
+34.14375	34.48229166666667	415.3046975799451
+34.14375	34.48229166666667	207.65234878997256
+34.354166666666664	35.00729166666667	116.54094037952248
+34.490625	35.22604166666667	123.47082531403103
+34.490625	35.21875	415.3046975799451
+34.490625	35.21875	207.65234878997256
+34.760416666666664	35.219791666666666	155.56349186104046
+34.853125	35.21875	466.1637615180899
+34.853125	35.21875	233.08188075904496
+35.015625	35.23020833333333	116.54094037952248
+35.22708333333333	36.315625	415.3046975799451
+35.22708333333333	36.315625	207.65234878997256
+35.4625	36.725	58.27047018976124
+35.572916666666664	35.93958333333333	369.9944227116344
+35.572916666666664	35.93958333333333	184.9972113558172
+35.73229166666667	36.184375	116.54094037952248
+35.946875	36.71875	138.59131548843604
+35.946875	36.73229166666667	369.9944227116344
+35.946875	36.73229166666667	184.9972113558172
+36.188541666666666	36.717708333333334	116.54094037952248
+36.328125	36.729166666666664	415.3046975799451
+36.328125	36.729166666666664	207.65234878997256
+36.734375	38.50833333333333	369.9944227116344
+36.734375	38.50833333333333	184.9972113558172
+36.954166666666666	38.516666666666666	58.27047018976124
+37.23854166666667	37.99166666666667	116.54094037952248
+37.51770833333333	39.509375	349.2282314330039
+37.51770833333333	39.509375	174.61411571650194
+37.76979166666667	38.510416666666664	233.08188075904496
+38.01354166666667	38.50833333333333	116.54094037952248
+38.52708333333333	40.04375	58.27047018976124
+38.771875	39.520833333333336	116.54094037952248
+39.05	41.55416666666667	311.1269837220809
+39.05	41.55416666666667	155.56349186104046
+39.290625	40.041666666666664	233.08188075904496
+39.532291666666666	40.04375	116.54094037952248
+40.071875	41.546875	58.27047018976124
+40.359375	41.221875	116.54094037952248
+40.646875	42.235416666666666	293.6647679174076
+40.646875	42.235416666666666	146.8323839587038
+40.94583333333333	42.229166666666664	233.08188075904496
+41.233333333333334	42.23125	116.54094037952248
Binary file testdata/TRIOS-groundtruth/brahms/piano.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/brahms/violin.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,49 @@
+3.75	5.189583333333333	622.2539674441618
+5.2	6.795833333333333	587.3295358348151
+7.053125	7.505208333333333	523.2511306011972
+7.510416666666667	7.813541666666667	523.2511306011972
+7.85625	8.248958333333333	622.2539674441618
+8.25	9.065625	698.4564628660078
+8.9875	9.93125	415.3046975799451
+10.179166666666667	10.915625	391.99543598174927
+10.840625	11.338541666666666	523.2511306011972
+11.342708333333333	12.163541666666667	523.2511306011972
+12.065625	12.841666666666667	369.9944227116344
+12.763541666666667	13.880208333333334	349.2282314330039
+15.8	17.258333333333333	1108.7305239074883
+17.195833333333333	18.717708333333334	987.7666025122483
+18.995833333333334	19.398958333333333	932.3275230361799
+19.404166666666665	19.802083333333332	932.3275230361799
+19.771875	20.183333333333334	1108.7305239074883
+20.1875	20.971875	1244.5079348883237
+20.971875	21.510416666666668	830.6093951598903
+22.073958333333334	22.505208333333332	739.9888454232688
+22.50625	22.801041666666666	739.9888454232688
+22.8125	23.159375	830.6093951598903
+23.163541666666667	23.584375	739.9888454232688
+23.575	23.95625	698.4564628660078
+23.975	24.31875	698.4564628660078
+24.31875	24.733333333333334	739.9888454232688
+24.751041666666666	25.586458333333333	698.4564628660078
+25.555208333333333	26.313541666666666	622.2539674441618
+27.710416666666667	30.057291666666668	369.9944227116344
+30.036458333333332	30.673958333333335	349.2282314330039
+31.167708333333334	31.541666666666668	311.1269837220809
+31.551041666666666	31.891666666666666	311.1269837220809
+31.875	32.23229166666667	349.2282314330039
+32.228125	32.684375	311.1269837220809
+32.628125	33.01770833333333	277.1826309768721
+33.020833333333336	33.36354166666667	277.1826309768721
+33.322916666666664	33.80833333333333	311.1269837220809
+33.71041666666667	34.5	277.1826309768721
+34.453125	35.971875	246.94165062806206
+35.95520833333333	36.71875	233.08188075904496
+37.125	37.52916666666667	207.65234878997256
+37.530208333333334	37.846875	207.65234878997256
+37.848958333333336	38.23229166666667	233.08188075904496
+38.225	38.6	207.65234878997256
+38.583333333333336	38.96041666666667	220.0
+38.975	39.34791666666667	220.0
+39.342708333333334	39.811458333333334	233.08188075904496
+39.7875	40.610416666666666	220.0
+40.55104166666667	41.71458333333333	233.08188075904496
Binary file testdata/TRIOS-groundtruth/brahms/violin.mid has changed
--- a/testdata/TRIOS-groundtruth/convert.yeti	Thu May 29 15:18:14 2014 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,34 +0,0 @@
-
-// Convert CSV file exported by Sonic Visualiser:
-// 
-// onset,midinote,duration,level,label
-//
-// into lab file like those output from the test scripts:
-//
-// onset offset frequency
-
-program convert;
-
-usage () =
-    eprintln "\nUsage: convert file.csv\n";
-
-toFrequency m = 
-    440 * Math#pow(2.0, (m - 69) / 12.0);
-
-convert f =
-   (str = openInFile f "UTF-8";
-    for (str.lines ()) do line:
-        case list (strSplit "," line) of
-        onset::midinote::duration::_: 
-            println "\(onset)\t\((number onset) + (number duration))\t\(toFrequency (number midinote))";
-        _:
-            failWith "badly formed line: \(line)";
-        esac;
-    done;
-    str.close ());
-
-case (list _argv) of
-file::[]: convert file;
-_: usage ();
-esac;
-
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/convert_midifileout.yeti	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,73 @@
+
+// Convert the output of the midifile program
+// (https://code.soundsoftware.ac.uk/projects/midifile)
+// into lab file like those output from the test scripts.
+//
+// The midifile format contains lines looking like:
+//
+// <t>: Note: channel <c> duration <d> pitch <p> velocity <v>
+//
+// where t and d are defined in terms of the timebase and
+// tempo, which are (usually) given in earlier lines:
+//
+// Timing division: <n> ppq
+// <t>: Tempo: <n>
+//
+// Note that we assume 4 quarter-notes per bar and we
+// don't parse time signatures.
+// 
+// The output file format looks like:
+//
+// onset offset frequency
+//
+// with times in seconds.
+
+program convert_midifileout;
+
+usage () =
+    eprintln "\nUsage: convert_midifileout file.txt\n";
+
+toFrequency m = 
+    440 * Math#pow(2.0, (m - 69) / 12.0);
+
+toTime timebase tempo t =
+    (t / timebase) * (60 / tempo);
+
+convert f =
+   (str = openInFile f "UTF-8";
+    var timebase = 480;
+    var tempo = 120;
+    for (str.lines ()) do line:
+        bits = strSplit ": " line;
+        if length bits > 1 then
+            if bits[0] == "Timing division" then
+                timebase := number (strReplace " ppq" "" bits[1]);
+                eprintln "Set timing division to \(timebase)";
+            elif bits[1] == "Tempo" then
+                if length bits < 3 then 
+                    failWith "Too few bits in tempo line: \(line)";
+                fi;
+                tempo := number (bits[2]);
+                eprintln "Set tempo to \(tempo)";
+            elif bits[1] == "Note" then
+                if length bits < 3 then
+                    failWith "Too few bits in note line: \(line)";
+                fi;
+                noteparts = strSplit " " bits[2];
+                if length noteparts < 8 then
+                    failWith "Too few note parameters in line: \(line)";
+                fi;
+                onset = toTime timebase tempo (number bits[0]);
+                duration = toTime timebase tempo (number noteparts[3]);
+                frequency = toFrequency (number noteparts[5]);
+                println "\(onset)\t\(onset + duration)\t\(frequency)";
+            fi;
+        fi;
+    done;
+    str.close ());
+
+case (list _argv) of
+file::[]: convert file;
+_: usage ();
+esac;
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/convert_svout.yeti	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,34 @@
+
+// Convert CSV file exported by Sonic Visualiser:
+// 
+// onset,midinote,duration,level,label
+//
+// into lab file like those output from the test scripts:
+//
+// onset offset frequency
+
+program convert_svout;
+
+usage () =
+    eprintln "\nUsage: convert_svout file.csv\n";
+
+toFrequency m = 
+    440 * Math#pow(2.0, (m - 69) / 12.0);
+
+convert f =
+   (str = openInFile f "UTF-8";
+    for (str.lines ()) do line:
+        case list (strSplit "," line) of
+        onset::midinote::duration::_: 
+            println "\(onset)\t\((number onset) + (number duration))\t\(toFrequency (number midinote))";
+        _:
+            failWith "badly formed line: \(line)";
+        esac;
+    done;
+    str.close ());
+
+case (list _argv) of
+file::[]: convert file;
+_: usage ();
+esac;
+
--- a/testdata/TRIOS-groundtruth/lussier.csv	Thu May 29 15:18:14 2014 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,208 +0,0 @@
-1.044784580,71,0.534376417,0.523438,B4 - vel 67
-1.044784580,76,0.816666666,0.507812,E5 - vel 65
-1.045827664,71,0.814580498,0.546875,B4 - vel 70
-1.073945578,45,0.138548752,0.5,A2 - vel 64
-1.096870748,45,0.809365079,0.53125,A2 - vel 68
-1.352063492,72,0.497936507,0.570312,C5 - vel 73
-1.367687074,60,0.156258503,0.742188,C4 - vel 95
-1.613537414,71,0.348956916,0.523438,B4 - vel 67
-1.637482993,60,0.156258503,0.609375,C4 - vel 78
-1.874988662,71,0.842698412,0.570312,B4 - vel 73
-1.874988662,77,0.842698412,0.570312,F5 - vel 73
-1.874988662,72,0.842698412,0.570312,C5 - vel 73
-1.910408163,48,0.159365079,0.515625,C3 - vel 66
-1.920816326,57,0.796870748,0.640625,A3 - vel 82
-1.950000000,69,0.777074829,0.554688,A4 - vel 71
-2.189569160,59,0.140634920,0.632812,B3 - vel 81
-2.460408163,59,0.144784580,0.601562,B3 - vel 77
-2.723945578,76,0.546870748,0.539062,E5 - vel 69
-2.741655328,52,0.141678004,0.515625,E3 - vel 66
-2.753106575,67,0.548956916,0.515625,G4 - vel 66
-2.766666666,69,0.502063492,0.539062,A4 - vel 69
-2.769773242,55,0.501043083,0.578125,G3 - vel 74
-3.009365079,59,0.150000000,0.59375,B3 - vel 76
-3.266666666,41,0.176031746,0.515625,F2 - vel 66
-3.280204081,77,0.831247165,0.601562,F5 - vel 77
-3.302063492,71,0.517709750,0.5,B4 - vel 64
-3.321859410,72,0.770839002,0.671875,C5 - vel 86
-3.324988662,41,0.763537414,0.5,F2 - vel 64
-3.554149659,60,0.156258503,0.742188,C4 - vel 95
-3.576031746,72,0.588548752,0.585938,C5 - vel 75
-3.820816326,60,0.157301587,0.585938,C4 - vel 75
-3.837482993,71,0.251043083,0.554688,B4 - vel 71
-4.088526077,48,0.153129251,0.515625,C3 - vel 66
-4.112494331,81,0.816666666,0.648438,A5 - vel 83
-4.112494331,74,0.816666666,0.648438,D5 - vel 83
-4.112494331,71,0.813537414,0.648438,B4 - vel 83
-4.112494331,59,0.402086167,0.648438,B3 - vel 83
-4.150000000,71,0.779160997,0.601562,B4 - vel 77
-4.359365079,59,0.437505668,0.640625,B3 - vel 82
-4.630204081,59,0.298956916,0.601562,B3 - vel 77
-4.915623582,53,0.150000000,0.5,F3 - vel 64
-4.934353741,76,0.547936507,0.5,E5 - vel 64
-4.934353741,74,0.547936507,0.5,D5 - vel 64
-4.934353741,57,0.390634920,0.546875,A3 - vel 70
-4.942698412,69,0.523968253,0.53125,A4 - vel 68
-5.167687074,57,0.314603174,0.625,A3 - vel 80
-5.447913832,50,0.168752834,0.5,D3 - vel 64
-5.458321995,76,0.933333333,0.695312,E5 - vel 89
-5.485396825,81,0.817709750,0.601562,A5 - vel 77
-5.508321995,71,0.792698412,0.5,B4 - vel 64
-5.508321995,38,0.794784580,0.484375,D2 - vel 62
-5.723945578,60,0.176054421,0.726562,C4 - vel 93
-5.769773242,74,0.534376417,0.617188,D5 - vel 79
-5.986439909,60,0.161473922,0.585938,C4 - vel 75
-6.026031746,72,0.277074829,0.515625,C5 - vel 66
-6.250000000,57,0.156235827,0.570312,A3 - vel 73
-6.312494331,76,0.796870748,0.515625,E5 - vel 66
-6.312494331,74,0.738526077,0.515625,D5 - vel 66
-6.312494331,71,0.796870748,0.515625,B4 - vel 66
-6.312494331,53,0.796870748,0.664062,F3 - vel 85
-6.351020408,74,0.758344671,0.5625,D5 - vel 72
-6.522902494,60,0.169795918,0.585938,C4 - vel 75
-6.788526077,60,0.170839002,0.546875,C4 - vel 70
-7.067687074,72,0.501043083,0.53125,C5 - vel 68
-7.077074829,53,0.156258503,0.5,F3 - vel 64
-7.111451247,52,0.517709750,0.570312,E3 - vel 73
-7.111451247,76,0.517709750,0.609375,E5 - vel 78
-7.111451247,77,0.517709750,0.609375,F5 - vel 78
-7.334353741,60,0.165646258,0.679688,C4 - vel 87
-7.587482993,72,0.946870748,0.585938,C5 - vel 75
-7.611451247,50,0.164580498,0.507812,D3 - vel 65
-7.635396825,74,0.817709750,0.5,D5 - vel 64
-7.635396825,71,0.817709750,0.5,B4 - vel 64
-7.635396825,48,0.817709750,0.539062,C3 - vel 69
-7.635396825,38,1.635419501,0.539062,D2 - vel 69
-7.881247165,60,0.188526077,0.6875,C4 - vel 88
-8.178117913,59,0.363537414,0.578125,B3 - vel 74
-8.434353741,62,0.284376417,0.664062,D4 - vel 85
-8.460408163,47,0.810408163,0.570312,B2 - vel 73
-8.460408163,71,0.798956916,0.601562,B4 - vel 77
-8.460408163,74,0.810408163,0.601562,D5 - vel 77
-8.460408163,77,0.810408163,0.601562,F5 - vel 77
-8.527074829,71,0.743741496,0.539062,B4 - vel 69
-8.731247165,60,0.285419501,0.554688,C4 - vel 71
-8.998956916,59,0.271859410,0.546875,B3 - vel 70
-9.245827664,58,0.266666666,0.53125,A#3 - vel 68
-9.270816326,74,0.546870748,0.523438,D5 - vel 67
-9.270816326,72,0.546870748,0.523438,C5 - vel 67
-9.508321995,57,0.268752834,0.507812,A3 - vel 65
-9.776031746,64,0.851043083,0.515625,E4 - vel 66
-9.787482993,44,0.152086167,0.515625,G#2 - vel 66
-9.817687074,71,0.541678004,0.5,B4 - vel 64
-9.817687074,47,0.803129251,0.515625,B2 - vel 66
-9.817687074,59,0.405215419,0.515625,B3 - vel 66
-9.966666666,74,0.534353741,0.625,D5 - vel 80
-10.058321995,59,0.429160997,0.609375,B3 - vel 78
-10.089569160,76,0.523968253,0.632812,E5 - vel 81
-10.231247165,80,0.390612244,0.648438,G#5 - vel 83
-10.326031746,59,0.294784580,0.570312,B3 - vel 73
-10.364580498,71,0.251043083,0.5,B4 - vel 64
-10.504149659,74,0.113537414,0.601562,D5 - vel 77
-10.589569160,47,0.154172335,0.5,B2 - vel 64
-10.622902494,76,0.557301587,0.601562,E5 - vel 77
-10.622902494,44,0.817709750,0.515625,G#2 - vel 66
-10.622902494,56,0.817709750,0.515625,G#3 - vel 66
-10.655192743,71,0.775011337,0.664062,B4 - vel 85
-10.765623582,80,0.536439909,0.617188,G#5 - vel 79
-10.871859410,62,0.163537414,0.734375,D4 - vel 94
-10.921859410,71,0.510430839,0.460938,B4 - vel 59
-11.055192743,74,0.385419501,0.5625,D5 - vel 72
-11.145827664,59,0.147913832,0.5625,B3 - vel 72
-11.186439909,76,0.251043083,0.601562,E5 - vel 77
-11.311451247,80,0.182290249,0.617188,G#5 - vel 79
-11.424988662,52,0.131247165,0.554688,E3 - vel 71
-11.441655328,71,0.530204081,0.445312,B4 - vel 57
-11.441655328,40,0.535419501,0.5,E2 - vel 64
-11.441655328,52,0.535419501,0.5,E3 - vel 64
-11.447913832,74,0.427074829,0.625,D5 - vel 80
-11.597913832,74,0.365623582,0.59375,D5 - vel 76
-11.685396825,59,0.157301587,0.617188,B3 - vel 79
-11.717687074,76,0.242721088,0.609375,E5 - vel 78
-11.856235827,80,0.159387755,0.632812,G#5 - vel 81
-11.928117913,65,0.856235827,0.476562,F4 - vel 61
-11.948956916,44,0.191655328,0.5,G#2 - vel 64
-11.981247165,71,0.550000000,0.5,B4 - vel 64
-11.981247165,53,0.813537414,0.570312,F3 - vel 73
-11.981247165,41,0.813537414,0.570312,F2 - vel 73
-12.129160997,74,0.524988662,0.59375,D5 - vel 76
-12.227074829,59,0.193741496,0.617188,B3 - vel 79
-12.286439909,76,0.507301587,0.601562,E5 - vel 77
-12.408321995,80,0.405215419,0.65625,G#5 - vel 84
-12.509365079,59,0.212494331,0.5625,B3 - vel 72
-12.541655328,71,0.264580498,0.5,B4 - vel 64
-12.663537414,74,0.137482993,0.578125,D5 - vel 74
-12.791655328,74,0.767709750,0.671875,D5 - vel 86
-12.793741496,47,0.171882086,0.492188,B2 - vel 63
-12.803106575,76,0.521882086,0.648438,E5 - vel 83
-12.803106575,50,0.741678004,0.554688,D3 - vel 71
-12.803106575,38,0.741678004,0.554688,D2 - vel 71
-12.936439909,80,0.490634920,0.648438,G#5 - vel 83
-13.064580498,71,0.496870748,0.476562,B4 - vel 61
-13.067687074,56,0.182312925,0.609375,G#3 - vel 78
-13.194784580,74,0.377074829,0.578125,D5 - vel 74
-13.331247165,76,0.227074829,0.617188,E5 - vel 79
-13.334353741,59,0.177097505,0.617188,B3 - vel 79
-13.438526077,80,0.196870748,0.601562,G#5 - vel 77
-13.560408163,40,0.562494331,0.570312,E2 - vel 73
-13.560408163,52,0.226031746,0.570312,E3 - vel 73
-13.568730158,71,0.560430839,0.476562,B4 - vel 61
-13.592698412,80,0.543741496,0.703125,G#5 - vel 90
-13.597913832,52,0.524988662,0.507812,E3 - vel 65
-13.720816326,74,0.408344671,0.578125,D5 - vel 74
-13.841655328,76,0.285419501,0.601562,E5 - vel 77
-13.870816326,64,0.175011337,0.703125,E4 - vel 90
-13.961451247,80,0.187505668,0.648438,G#5 - vel 83
-14.122902494,65,0.128117913,0.632812,F4 - vel 81
-14.132290249,41,1.112494331,0.632812,F2 - vel 81
-14.132290249,53,1.094784580,0.632812,F3 - vel 81
-14.150000000,80,0.285396825,0.609375,G#5 - vel 78
-14.230204081,64,0.171859410,0.5625,E4 - vel 72
-14.341655328,71,0.911451247,0.515625,B4 - vel 66
-14.341655328,74,0.596870748,0.515625,D5 - vel 66
-14.341655328,80,0.891678004,0.515625,G#5 - vel 66
-14.341655328,76,0.911451247,0.515625,E5 - vel 66
-14.406235827,59,0.128117913,0.539062,B3 - vel 69
-14.460408163,74,0.792698412,0.5,D5 - vel 64
-14.527074829,56,0.141655328,0.554688,G#3 - vel 71
-14.541655328,52,1.002086167,0.546875,E3 - vel 70
-14.541655328,40,1.002086167,0.546875,E2 - vel 70
-14.692698412,64,0.140634920,0.695312,E4 - vel 89
-14.819773242,59,0.125011337,0.585938,B3 - vel 75
-14.915623582,38,0.994784580,0.570312,D2 - vel 73
-14.915623582,50,0.994784580,0.570312,D3 - vel 73
-14.953106575,56,0.133333333,0.546875,G#3 - vel 70
-14.965623582,80,0.287482993,0.65625,G#5 - vel 84
-15.088526077,53,0.156258503,0.539062,F3 - vel 69
-15.231247165,59,0.137482993,0.65625,B3 - vel 84
-15.238526077,77,0.265623582,0.546875,F5 - vel 70
-15.261451247,36,0.630204081,0.546875,C2 - vel 70
-15.261451247,48,0.630204081,0.546875,C3 - vel 70
-15.261451247,71,0.465623582,0.539062,B4 - vel 69
-15.261451247,74,0.465623582,0.539062,D5 - vel 69
-15.261451247,76,0.465623582,0.539062,E5 - vel 69
-15.261451247,80,0.465623582,0.539062,G#5 - vel 69
-15.361451247,56,0.129160997,0.585938,G#3 - vel 75
-15.505192743,53,0.116666666,0.59375,F3 - vel 76
-15.516666666,81,0.260408163,0.679688,A5 - vel 87
-15.552063492,35,0.783333333,0.5625,B1 - vel 72
-15.552063492,47,0.597936507,0.5625,B2 - vel 72
-15.624988662,52,0.129160997,0.585938,E3 - vel 75
-15.737482993,71,0.602086167,0.5625,B4 - vel 72
-15.737482993,74,0.602086167,0.5625,D5 - vel 72
-15.737482993,76,0.602086167,0.5625,E5 - vel 72
-15.737482993,80,0.592721088,0.5625,G#5 - vel 72
-15.763537414,53,0.101043083,0.609375,F3 - vel 78
-15.783333333,80,0.556235827,0.554688,G#5 - vel 71
-15.853106575,52,0.165623582,0.585938,E3 - vel 75
-15.903106575,36,0.437505668,0.59375,C2 - vel 76
-15.903106575,48,0.437505668,0.59375,C3 - vel 76
-16.022902494,47,0.312494331,0.515625,B2 - vel 66
-16.156235827,44,0.157301587,0.515625,G#2 - vel 66
-16.316666666,45,0.315623582,0.59375,A2 - vel 76
-16.335396825,81,0.551043083,0.601562,A5 - vel 77
-16.346870748,81,0.878117913,0.585938,A5 - vel 75
-16.346870748,72,0.878117913,0.585938,C5 - vel 75
-16.346870748,71,0.878117913,0.585938,B4 - vel 75
-16.346870748,45,0.878117913,0.539062,A2 - vel 69
-16.346870748,33,0.878117913,0.539062,A1 - vel 69
--- a/testdata/TRIOS-groundtruth/lussier.lab	Thu May 29 15:18:14 2014 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,208 +0,0 @@
-1.044784580	1.579160997	493.8833012561241
-1.044784580	1.861451246	659.2551138257398
-1.045827664	1.860408162	493.8833012561241
-1.073945578	1.21249433	110.0
-1.096870748	1.906235827	110.0
-1.352063492	1.849999999	523.2511306011972
-1.367687074	1.523945577	261.6255653005986
-1.613537414	1.96249433	493.8833012561241
-1.637482993	1.793741496	261.6255653005986
-1.874988662	2.717687074	493.8833012561241
-1.874988662	2.717687074	698.4564628660078
-1.874988662	2.717687074	523.2511306011972
-1.910408163	2.069773242	130.8127826502993
-1.920816326	2.717687074	220.0
-1.950000000	2.727074829	440.0
-2.189569160	2.33020408	246.94165062806206
-2.460408163	2.605192743	246.94165062806206
-2.723945578	3.270816326	659.2551138257398
-2.741655328	2.883333332	164.81377845643496
-2.753106575	3.3020634909999997	391.99543598174927
-2.766666666	3.268730158	440.0
-2.769773242	3.2708163249999997	195.99771799087463
-3.009365079	3.159365079	246.94165062806206
-3.266666666	3.442698412	87.30705785825097
-3.280204081	4.111451246	698.4564628660078
-3.302063492	3.8197732419999997	493.8833012561241
-3.321859410	4.092698412	523.2511306011972
-3.324988662	4.088526076	87.30705785825097
-3.554149659	3.7104081620000002	261.6255653005986
-3.576031746	4.164580498	523.2511306011972
-3.820816326	3.978117913	261.6255653005986
-3.837482993	4.088526076	493.8833012561241
-4.088526077	4.241655328	130.8127826502993
-4.112494331	4.929160996999999	880.0
-4.112494331	4.929160996999999	587.3295358348151
-4.112494331	4.9260317449999995	493.8833012561241
-4.112494331	4.514580498	246.94165062806206
-4.150000000	4.929160997	493.8833012561241
-4.359365079	4.796870747	246.94165062806206
-4.630204081	4.929160996999999	246.94165062806206
-4.915623582	5.065623582000001	174.61411571650194
-4.934353741	5.482290248	659.2551138257398
-4.934353741	5.482290248	587.3295358348151
-4.934353741	5.324988661	220.0
-4.942698412	5.466666665	440.0
-5.167687074	5.482290248	220.0
-5.447913832	5.616666666	146.8323839587038
-5.458321995	6.391655328000001	659.2551138257398
-5.485396825	6.303106574999999	880.0
-5.508321995	6.301020407	493.8833012561241
-5.508321995	6.303106575	73.41619197935188
-5.723945578	5.899999999	261.6255653005986
-5.769773242	6.304149659	587.3295358348151
-5.986439909	6.147913830999999	261.6255653005986
-6.026031746	6.303106575	523.2511306011972
-6.250000000	6.406235827	220.0
-6.312494331	7.109365079	659.2551138257398
-6.312494331	7.051020407999999	587.3295358348151
-6.312494331	7.109365079	493.8833012561241
-6.312494331	7.109365079	174.61411571650194
-6.351020408	7.109365079	587.3295358348151
-6.522902494	6.692698412	261.6255653005986
-6.788526077	6.959365079	261.6255653005986
-7.067687074	7.568730157	523.2511306011972
-7.077074829	7.233333332	174.61411571650194
-7.111451247	7.629160997	164.81377845643496
-7.111451247	7.629160997	659.2551138257398
-7.111451247	7.629160997	698.4564628660078
-7.334353741	7.499999999	261.6255653005986
-7.587482993	8.534353741	523.2511306011972
-7.611451247	7.776031745	146.8323839587038
-7.635396825	8.453106575	587.3295358348151
-7.635396825	8.453106575	493.8833012561241
-7.635396825	8.453106575	130.8127826502993
-7.635396825	9.270816326	73.41619197935188
-7.881247165	8.069773242	261.6255653005986
-8.178117913	8.541655326999999	246.94165062806206
-8.434353741	8.718730158000001	293.6647679174076
-8.460408163	9.270816326	123.47082531403103
-8.460408163	9.259365079	493.8833012561241
-8.460408163	9.270816326	587.3295358348151
-8.460408163	9.270816326	698.4564628660078
-8.527074829	9.270816325	493.8833012561241
-8.731247165	9.016666665999999	261.6255653005986
-8.998956916	9.270816325999998	246.94165062806206
-9.245827664	9.51249433	233.08188075904496
-9.270816326	9.817687074	587.3295358348151
-9.270816326	9.817687074	523.2511306011972
-9.508321995	9.777074829	220.0
-9.776031746	10.627074829	329.6275569128699
-9.787482993	9.93956916	103.82617439498628
-9.817687074	10.359365078	493.8833012561241
-9.817687074	10.620816325	123.47082531403103
-9.817687074	10.222902493	246.94165062806206
-9.966666666	10.501020407	587.3295358348151
-10.058321995	10.487482992	246.94165062806206
-10.089569160	10.613537413	659.2551138257398
-10.231247165	10.621859408999999	830.6093951598903
-10.326031746	10.620816326	246.94165062806206
-10.364580498	10.615623581000001	493.8833012561241
-10.504149659	10.617687072999999	587.3295358348151
-10.589569160	10.743741495	123.47082531403103
-10.622902494	11.180204081	659.2551138257398
-10.622902494	11.440612244	103.82617439498628
-10.622902494	11.440612244	207.65234878997256
-10.655192743	11.430204080000001	493.8833012561241
-10.765623582	11.302063491	830.6093951598903
-10.871859410	11.035396824	293.6647679174076
-10.921859410	11.432290249	493.8833012561241
-11.055192743	11.440612243999999	587.3295358348151
-11.145827664	11.293741496	246.94165062806206
-11.186439909	11.437482992000001	659.2551138257398
-11.311451247	11.493741496	830.6093951598903
-11.424988662	11.556235827	164.81377845643496
-11.441655328	11.971859409	493.8833012561241
-11.441655328	11.977074829	82.4068892282175
-11.441655328	11.977074829	164.81377845643496
-11.447913832	11.874988661	587.3295358348151
-11.597913832	11.963537414	587.3295358348151
-11.685396825	11.842698411999999	246.94165062806206
-11.717687074	11.960408162	659.2551138257398
-11.856235827	12.015623582	830.6093951598903
-11.928117913	12.78435374	349.2282314330039
-11.948956916	12.140612244	103.82617439498628
-11.981247165	12.531247165	493.8833012561241
-11.981247165	12.794784579	174.61411571650194
-11.981247165	12.794784579	87.30705785825097
-12.129160997	12.654149659	587.3295358348151
-12.227074829	12.420816324999999	246.94165062806206
-12.286439909	12.793741496	659.2551138257398
-12.408321995	12.813537413999999	830.6093951598903
-12.509365079	12.72185941	246.94165062806206
-12.541655328	12.806235826	493.8833012561241
-12.663537414	12.801020407000001	587.3295358348151
-12.791655328	13.559365077999999	587.3295358348151
-12.793741496	12.965623582000001	123.47082531403103
-12.803106575	13.324988660999999	659.2551138257398
-12.803106575	13.544784579	146.8323839587038
-12.803106575	13.544784579	73.41619197935188
-12.936439909	13.427074829	830.6093951598903
-13.064580498	13.561451245999999	493.8833012561241
-13.067687074	13.249999999	207.65234878997256
-13.194784580	13.571859409	587.3295358348151
-13.331247165	13.558321994	659.2551138257398
-13.334353741	13.511451246	246.94165062806206
-13.438526077	13.635396825	830.6093951598903
-13.560408163	14.122902494	82.4068892282175
-13.560408163	13.786439909	164.81377845643496
-13.568730158	14.129160997	493.8833012561241
-13.592698412	14.136439908	830.6093951598903
-13.597913832	14.122902494	164.81377845643496
-13.720816326	14.129160997	587.3295358348151
-13.841655328	14.127074829	659.2551138257398
-13.870816326	14.045827663	329.6275569128699
-13.961451247	14.148956915	830.6093951598903
-14.122902494	14.251020407	349.2282314330039
-14.132290249	15.244784580000001	87.30705785825097
-14.132290249	15.227074829000001	174.61411571650194
-14.150000000	14.435396825	830.6093951598903
-14.230204081	14.402063491	329.6275569128699
-14.341655328	15.253106575	493.8833012561241
-14.341655328	14.938526076	587.3295358348151
-14.341655328	15.233333331999999	830.6093951598903
-14.341655328	15.253106575	659.2551138257398
-14.406235827	14.53435374	246.94165062806206
-14.460408163	15.253106575	587.3295358348151
-14.527074829	14.668730157	207.65234878997256
-14.541655328	15.543741494999999	164.81377845643496
-14.541655328	15.543741494999999	82.4068892282175
-14.692698412	14.833333332	329.6275569128699
-14.819773242	14.944784579	246.94165062806206
-14.915623582	15.910408162	73.41619197935188
-14.915623582	15.910408162	146.8323839587038
-14.953106575	15.086439908	207.65234878997256
-14.965623582	15.253106574999999	830.6093951598903
-15.088526077	15.24478458	174.61411571650194
-15.231247165	15.368730158	246.94165062806206
-15.238526077	15.504149659	698.4564628660078
-15.261451247	15.891655328	65.40639132514966
-15.261451247	15.891655328	130.8127826502993
-15.261451247	15.727074829	493.8833012561241
-15.261451247	15.727074829	587.3295358348151
-15.261451247	15.727074829	659.2551138257398
-15.261451247	15.727074829	830.6093951598903
-15.361451247	15.490612244	207.65234878997256
-15.505192743	15.621859409	174.61411571650194
-15.516666666	15.777074829	880.0
-15.552063492	16.335396825	61.7354126570155
-15.552063492	16.149999999000002	123.47082531403103
-15.624988662	15.754149659	164.81377845643496
-15.737482993	16.33956916	493.8833012561241
-15.737482993	16.33956916	587.3295358348151
-15.737482993	16.33956916	659.2551138257398
-15.737482993	16.330204081	830.6093951598903
-15.763537414	15.864580497	174.61411571650194
-15.783333333	16.33956916	830.6093951598903
-15.853106575	16.018730157	164.81377845643496
-15.903106575	16.340612243000002	65.40639132514966
-15.903106575	16.340612243000002	130.8127826502993
-16.022902494	16.335396825	123.47082531403103
-16.156235827	16.313537414	103.82617439498628
-16.316666666	16.632290248	110.0
-16.335396825	16.886439908	880.0
-16.346870748	17.224988661	880.0
-16.346870748	17.224988661	523.2511306011972
-16.346870748	17.224988661	493.8833012561241
-16.346870748	17.224988661	110.0
-16.346870748	17.224988661	55.0
Binary file testdata/TRIOS-groundtruth/lussier.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/lussier/bassoon.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,65 @@
+1.0739583333333333	1.2125	110.0
+1.3677083333333333	1.5239583333333333	261.6255653005986
+1.6375	1.79375	261.6255653005986
+1.9104166666666667	2.0697916666666667	130.8127826502993
+2.189583333333333	2.330208333333333	246.94165062806206
+2.4604166666666667	2.605208333333333	246.94165062806206
+2.7416666666666667	2.8833333333333333	164.81377845643496
+3.009375	3.159375	246.94165062806206
+3.2666666666666666	3.4427083333333335	87.30705785825097
+3.5541666666666667	3.7104166666666667	261.6255653005986
+3.8208333333333333	3.978125	261.6255653005986
+4.088541666666667	4.241666666666666	130.8127826502993
+4.359375	4.514583333333333	246.94165062806206
+4.630208333333333	4.796875	246.94165062806206
+4.915625	5.065625	174.61411571650194
+5.167708333333334	5.325	220.0
+5.447916666666667	5.616666666666666	146.8323839587038
+5.723958333333333	5.9	261.6255653005986
+5.986458333333333	6.147916666666666	261.6255653005986
+6.25	6.40625	220.0
+6.522916666666666	6.692708333333333	261.6255653005986
+6.788541666666666	6.959375	261.6255653005986
+7.077083333333333	7.233333333333333	174.61411571650194
+7.334375	7.5	261.6255653005986
+7.611458333333333	7.776041666666667	146.8323839587038
+7.88125	8.069791666666667	261.6255653005986
+8.178125	8.541666666666666	246.94165062806206
+8.434375	8.71875	293.6647679174076
+8.73125	9.016666666666667	261.6255653005986
+8.998958333333333	9.270833333333334	246.94165062806206
+9.245833333333334	9.5125	233.08188075904496
+9.508333333333333	9.777083333333334	220.0
+9.7875	9.939583333333333	103.82617439498628
+10.058333333333334	10.222916666666666	246.94165062806206
+10.326041666666667	10.4875	246.94165062806206
+10.589583333333334	10.74375	123.47082531403103
+10.871875	11.035416666666666	293.6647679174076
+11.145833333333334	11.29375	246.94165062806206
+11.425	11.55625	164.81377845643496
+11.685416666666667	11.842708333333333	246.94165062806206
+11.948958333333334	12.140625	103.82617439498628
+12.227083333333333	12.420833333333333	246.94165062806206
+12.509375	12.721875	246.94165062806206
+12.79375	12.965625	123.47082531403103
+13.067708333333334	13.25	207.65234878997256
+13.334375	13.511458333333334	246.94165062806206
+13.597916666666666	13.786458333333334	164.81377845643496
+13.870833333333334	14.045833333333333	329.6275569128699
+14.122916666666667	14.251041666666667	349.2282314330039
+14.230208333333334	14.402083333333334	329.6275569128699
+14.40625	14.534375	246.94165062806206
+14.527083333333334	14.66875	207.65234878997256
+14.692708333333334	14.833333333333334	329.6275569128699
+14.819791666666667	14.944791666666667	246.94165062806206
+14.953125	15.086458333333333	207.65234878997256
+15.088541666666666	15.227083333333333	174.61411571650194
+15.23125	15.36875	246.94165062806206
+15.361458333333333	15.490625	207.65234878997256
+15.505208333333334	15.621875	174.61411571650194
+15.625	15.754166666666666	164.81377845643496
+15.763541666666667	15.864583333333334	174.61411571650194
+15.853125	16.01875	164.81377845643496
+16.022916666666667	16.15	123.47082531403103
+16.15625	16.313541666666666	103.82617439498628
+16.316666666666666	16.632291666666667	110.0
Binary file testdata/TRIOS-groundtruth/lussier/bassoon.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/lussier/mix.csv	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,208 @@
+1.044784580,71,0.534376417,0.523438,B4 - vel 67
+1.044784580,76,0.816666666,0.507812,E5 - vel 65
+1.045827664,71,0.814580498,0.546875,B4 - vel 70
+1.073945578,45,0.138548752,0.5,A2 - vel 64
+1.096870748,45,0.809365079,0.53125,A2 - vel 68
+1.352063492,72,0.497936507,0.570312,C5 - vel 73
+1.367687074,60,0.156258503,0.742188,C4 - vel 95
+1.613537414,71,0.348956916,0.523438,B4 - vel 67
+1.637482993,60,0.156258503,0.609375,C4 - vel 78
+1.874988662,71,0.842698412,0.570312,B4 - vel 73
+1.874988662,77,0.842698412,0.570312,F5 - vel 73
+1.874988662,72,0.842698412,0.570312,C5 - vel 73
+1.910408163,48,0.159365079,0.515625,C3 - vel 66
+1.920816326,57,0.796870748,0.640625,A3 - vel 82
+1.950000000,69,0.777074829,0.554688,A4 - vel 71
+2.189569160,59,0.140634920,0.632812,B3 - vel 81
+2.460408163,59,0.144784580,0.601562,B3 - vel 77
+2.723945578,76,0.546870748,0.539062,E5 - vel 69
+2.741655328,52,0.141678004,0.515625,E3 - vel 66
+2.753106575,67,0.548956916,0.515625,G4 - vel 66
+2.766666666,69,0.502063492,0.539062,A4 - vel 69
+2.769773242,55,0.501043083,0.578125,G3 - vel 74
+3.009365079,59,0.150000000,0.59375,B3 - vel 76
+3.266666666,41,0.176031746,0.515625,F2 - vel 66
+3.280204081,77,0.831247165,0.601562,F5 - vel 77
+3.302063492,71,0.517709750,0.5,B4 - vel 64
+3.321859410,72,0.770839002,0.671875,C5 - vel 86
+3.324988662,41,0.763537414,0.5,F2 - vel 64
+3.554149659,60,0.156258503,0.742188,C4 - vel 95
+3.576031746,72,0.588548752,0.585938,C5 - vel 75
+3.820816326,60,0.157301587,0.585938,C4 - vel 75
+3.837482993,71,0.251043083,0.554688,B4 - vel 71
+4.088526077,48,0.153129251,0.515625,C3 - vel 66
+4.112494331,81,0.816666666,0.648438,A5 - vel 83
+4.112494331,74,0.816666666,0.648438,D5 - vel 83
+4.112494331,71,0.813537414,0.648438,B4 - vel 83
+4.112494331,59,0.402086167,0.648438,B3 - vel 83
+4.150000000,71,0.779160997,0.601562,B4 - vel 77
+4.359365079,59,0.437505668,0.640625,B3 - vel 82
+4.630204081,59,0.298956916,0.601562,B3 - vel 77
+4.915623582,53,0.150000000,0.5,F3 - vel 64
+4.934353741,76,0.547936507,0.5,E5 - vel 64
+4.934353741,74,0.547936507,0.5,D5 - vel 64
+4.934353741,57,0.390634920,0.546875,A3 - vel 70
+4.942698412,69,0.523968253,0.53125,A4 - vel 68
+5.167687074,57,0.314603174,0.625,A3 - vel 80
+5.447913832,50,0.168752834,0.5,D3 - vel 64
+5.458321995,76,0.933333333,0.695312,E5 - vel 89
+5.485396825,81,0.817709750,0.601562,A5 - vel 77
+5.508321995,71,0.792698412,0.5,B4 - vel 64
+5.508321995,38,0.794784580,0.484375,D2 - vel 62
+5.723945578,60,0.176054421,0.726562,C4 - vel 93
+5.769773242,74,0.534376417,0.617188,D5 - vel 79
+5.986439909,60,0.161473922,0.585938,C4 - vel 75
+6.026031746,72,0.277074829,0.515625,C5 - vel 66
+6.250000000,57,0.156235827,0.570312,A3 - vel 73
+6.312494331,76,0.796870748,0.515625,E5 - vel 66
+6.312494331,74,0.738526077,0.515625,D5 - vel 66
+6.312494331,71,0.796870748,0.515625,B4 - vel 66
+6.312494331,53,0.796870748,0.664062,F3 - vel 85
+6.351020408,74,0.758344671,0.5625,D5 - vel 72
+6.522902494,60,0.169795918,0.585938,C4 - vel 75
+6.788526077,60,0.170839002,0.546875,C4 - vel 70
+7.067687074,72,0.501043083,0.53125,C5 - vel 68
+7.077074829,53,0.156258503,0.5,F3 - vel 64
+7.111451247,52,0.517709750,0.570312,E3 - vel 73
+7.111451247,76,0.517709750,0.609375,E5 - vel 78
+7.111451247,77,0.517709750,0.609375,F5 - vel 78
+7.334353741,60,0.165646258,0.679688,C4 - vel 87
+7.587482993,72,0.946870748,0.585938,C5 - vel 75
+7.611451247,50,0.164580498,0.507812,D3 - vel 65
+7.635396825,74,0.817709750,0.5,D5 - vel 64
+7.635396825,71,0.817709750,0.5,B4 - vel 64
+7.635396825,48,0.817709750,0.539062,C3 - vel 69
+7.635396825,38,1.635419501,0.539062,D2 - vel 69
+7.881247165,60,0.188526077,0.6875,C4 - vel 88
+8.178117913,59,0.363537414,0.578125,B3 - vel 74
+8.434353741,62,0.284376417,0.664062,D4 - vel 85
+8.460408163,47,0.810408163,0.570312,B2 - vel 73
+8.460408163,71,0.798956916,0.601562,B4 - vel 77
+8.460408163,74,0.810408163,0.601562,D5 - vel 77
+8.460408163,77,0.810408163,0.601562,F5 - vel 77
+8.527074829,71,0.743741496,0.539062,B4 - vel 69
+8.731247165,60,0.285419501,0.554688,C4 - vel 71
+8.998956916,59,0.271859410,0.546875,B3 - vel 70
+9.245827664,58,0.266666666,0.53125,A#3 - vel 68
+9.270816326,74,0.546870748,0.523438,D5 - vel 67
+9.270816326,72,0.546870748,0.523438,C5 - vel 67
+9.508321995,57,0.268752834,0.507812,A3 - vel 65
+9.776031746,64,0.851043083,0.515625,E4 - vel 66
+9.787482993,44,0.152086167,0.515625,G#2 - vel 66
+9.817687074,71,0.541678004,0.5,B4 - vel 64
+9.817687074,47,0.803129251,0.515625,B2 - vel 66
+9.817687074,59,0.405215419,0.515625,B3 - vel 66
+9.966666666,74,0.534353741,0.625,D5 - vel 80
+10.058321995,59,0.429160997,0.609375,B3 - vel 78
+10.089569160,76,0.523968253,0.632812,E5 - vel 81
+10.231247165,80,0.390612244,0.648438,G#5 - vel 83
+10.326031746,59,0.294784580,0.570312,B3 - vel 73
+10.364580498,71,0.251043083,0.5,B4 - vel 64
+10.504149659,74,0.113537414,0.601562,D5 - vel 77
+10.589569160,47,0.154172335,0.5,B2 - vel 64
+10.622902494,76,0.557301587,0.601562,E5 - vel 77
+10.622902494,44,0.817709750,0.515625,G#2 - vel 66
+10.622902494,56,0.817709750,0.515625,G#3 - vel 66
+10.655192743,71,0.775011337,0.664062,B4 - vel 85
+10.765623582,80,0.536439909,0.617188,G#5 - vel 79
+10.871859410,62,0.163537414,0.734375,D4 - vel 94
+10.921859410,71,0.510430839,0.460938,B4 - vel 59
+11.055192743,74,0.385419501,0.5625,D5 - vel 72
+11.145827664,59,0.147913832,0.5625,B3 - vel 72
+11.186439909,76,0.251043083,0.601562,E5 - vel 77
+11.311451247,80,0.182290249,0.617188,G#5 - vel 79
+11.424988662,52,0.131247165,0.554688,E3 - vel 71
+11.441655328,71,0.530204081,0.445312,B4 - vel 57
+11.441655328,40,0.535419501,0.5,E2 - vel 64
+11.441655328,52,0.535419501,0.5,E3 - vel 64
+11.447913832,74,0.427074829,0.625,D5 - vel 80
+11.597913832,74,0.365623582,0.59375,D5 - vel 76
+11.685396825,59,0.157301587,0.617188,B3 - vel 79
+11.717687074,76,0.242721088,0.609375,E5 - vel 78
+11.856235827,80,0.159387755,0.632812,G#5 - vel 81
+11.928117913,65,0.856235827,0.476562,F4 - vel 61
+11.948956916,44,0.191655328,0.5,G#2 - vel 64
+11.981247165,71,0.550000000,0.5,B4 - vel 64
+11.981247165,53,0.813537414,0.570312,F3 - vel 73
+11.981247165,41,0.813537414,0.570312,F2 - vel 73
+12.129160997,74,0.524988662,0.59375,D5 - vel 76
+12.227074829,59,0.193741496,0.617188,B3 - vel 79
+12.286439909,76,0.507301587,0.601562,E5 - vel 77
+12.408321995,80,0.405215419,0.65625,G#5 - vel 84
+12.509365079,59,0.212494331,0.5625,B3 - vel 72
+12.541655328,71,0.264580498,0.5,B4 - vel 64
+12.663537414,74,0.137482993,0.578125,D5 - vel 74
+12.791655328,74,0.767709750,0.671875,D5 - vel 86
+12.793741496,47,0.171882086,0.492188,B2 - vel 63
+12.803106575,76,0.521882086,0.648438,E5 - vel 83
+12.803106575,50,0.741678004,0.554688,D3 - vel 71
+12.803106575,38,0.741678004,0.554688,D2 - vel 71
+12.936439909,80,0.490634920,0.648438,G#5 - vel 83
+13.064580498,71,0.496870748,0.476562,B4 - vel 61
+13.067687074,56,0.182312925,0.609375,G#3 - vel 78
+13.194784580,74,0.377074829,0.578125,D5 - vel 74
+13.331247165,76,0.227074829,0.617188,E5 - vel 79
+13.334353741,59,0.177097505,0.617188,B3 - vel 79
+13.438526077,80,0.196870748,0.601562,G#5 - vel 77
+13.560408163,40,0.562494331,0.570312,E2 - vel 73
+13.560408163,52,0.226031746,0.570312,E3 - vel 73
+13.568730158,71,0.560430839,0.476562,B4 - vel 61
+13.592698412,80,0.543741496,0.703125,G#5 - vel 90
+13.597913832,52,0.524988662,0.507812,E3 - vel 65
+13.720816326,74,0.408344671,0.578125,D5 - vel 74
+13.841655328,76,0.285419501,0.601562,E5 - vel 77
+13.870816326,64,0.175011337,0.703125,E4 - vel 90
+13.961451247,80,0.187505668,0.648438,G#5 - vel 83
+14.122902494,65,0.128117913,0.632812,F4 - vel 81
+14.132290249,41,1.112494331,0.632812,F2 - vel 81
+14.132290249,53,1.094784580,0.632812,F3 - vel 81
+14.150000000,80,0.285396825,0.609375,G#5 - vel 78
+14.230204081,64,0.171859410,0.5625,E4 - vel 72
+14.341655328,71,0.911451247,0.515625,B4 - vel 66
+14.341655328,74,0.596870748,0.515625,D5 - vel 66
+14.341655328,80,0.891678004,0.515625,G#5 - vel 66
+14.341655328,76,0.911451247,0.515625,E5 - vel 66
+14.406235827,59,0.128117913,0.539062,B3 - vel 69
+14.460408163,74,0.792698412,0.5,D5 - vel 64
+14.527074829,56,0.141655328,0.554688,G#3 - vel 71
+14.541655328,52,1.002086167,0.546875,E3 - vel 70
+14.541655328,40,1.002086167,0.546875,E2 - vel 70
+14.692698412,64,0.140634920,0.695312,E4 - vel 89
+14.819773242,59,0.125011337,0.585938,B3 - vel 75
+14.915623582,38,0.994784580,0.570312,D2 - vel 73
+14.915623582,50,0.994784580,0.570312,D3 - vel 73
+14.953106575,56,0.133333333,0.546875,G#3 - vel 70
+14.965623582,80,0.287482993,0.65625,G#5 - vel 84
+15.088526077,53,0.156258503,0.539062,F3 - vel 69
+15.231247165,59,0.137482993,0.65625,B3 - vel 84
+15.238526077,77,0.265623582,0.546875,F5 - vel 70
+15.261451247,36,0.630204081,0.546875,C2 - vel 70
+15.261451247,48,0.630204081,0.546875,C3 - vel 70
+15.261451247,71,0.465623582,0.539062,B4 - vel 69
+15.261451247,74,0.465623582,0.539062,D5 - vel 69
+15.261451247,76,0.465623582,0.539062,E5 - vel 69
+15.261451247,80,0.465623582,0.539062,G#5 - vel 69
+15.361451247,56,0.129160997,0.585938,G#3 - vel 75
+15.505192743,53,0.116666666,0.59375,F3 - vel 76
+15.516666666,81,0.260408163,0.679688,A5 - vel 87
+15.552063492,35,0.783333333,0.5625,B1 - vel 72
+15.552063492,47,0.597936507,0.5625,B2 - vel 72
+15.624988662,52,0.129160997,0.585938,E3 - vel 75
+15.737482993,71,0.602086167,0.5625,B4 - vel 72
+15.737482993,74,0.602086167,0.5625,D5 - vel 72
+15.737482993,76,0.602086167,0.5625,E5 - vel 72
+15.737482993,80,0.592721088,0.5625,G#5 - vel 72
+15.763537414,53,0.101043083,0.609375,F3 - vel 78
+15.783333333,80,0.556235827,0.554688,G#5 - vel 71
+15.853106575,52,0.165623582,0.585938,E3 - vel 75
+15.903106575,36,0.437505668,0.59375,C2 - vel 76
+15.903106575,48,0.437505668,0.59375,C3 - vel 76
+16.022902494,47,0.312494331,0.515625,B2 - vel 66
+16.156235827,44,0.157301587,0.515625,G#2 - vel 66
+16.316666666,45,0.315623582,0.59375,A2 - vel 76
+16.335396825,81,0.551043083,0.601562,A5 - vel 77
+16.346870748,81,0.878117913,0.585938,A5 - vel 75
+16.346870748,72,0.878117913,0.585938,C5 - vel 75
+16.346870748,71,0.878117913,0.585938,B4 - vel 75
+16.346870748,45,0.878117913,0.539062,A2 - vel 69
+16.346870748,33,0.878117913,0.539062,A1 - vel 69
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/lussier/mix.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,208 @@
+1.044784580	1.579160997	493.8833012561241
+1.044784580	1.861451246	659.2551138257398
+1.045827664	1.860408162	493.8833012561241
+1.073945578	1.21249433	110.0
+1.096870748	1.906235827	110.0
+1.352063492	1.849999999	523.2511306011972
+1.367687074	1.523945577	261.6255653005986
+1.613537414	1.96249433	493.8833012561241
+1.637482993	1.793741496	261.6255653005986
+1.874988662	2.717687074	493.8833012561241
+1.874988662	2.717687074	698.4564628660078
+1.874988662	2.717687074	523.2511306011972
+1.910408163	2.069773242	130.8127826502993
+1.920816326	2.717687074	220.0
+1.950000000	2.727074829	440.0
+2.189569160	2.33020408	246.94165062806206
+2.460408163	2.605192743	246.94165062806206
+2.723945578	3.270816326	659.2551138257398
+2.741655328	2.883333332	164.81377845643496
+2.753106575	3.3020634909999997	391.99543598174927
+2.766666666	3.268730158	440.0
+2.769773242	3.2708163249999997	195.99771799087463
+3.009365079	3.159365079	246.94165062806206
+3.266666666	3.442698412	87.30705785825097
+3.280204081	4.111451246	698.4564628660078
+3.302063492	3.8197732419999997	493.8833012561241
+3.321859410	4.092698412	523.2511306011972
+3.324988662	4.088526076	87.30705785825097
+3.554149659	3.7104081620000002	261.6255653005986
+3.576031746	4.164580498	523.2511306011972
+3.820816326	3.978117913	261.6255653005986
+3.837482993	4.088526076	493.8833012561241
+4.088526077	4.241655328	130.8127826502993
+4.112494331	4.929160996999999	880.0
+4.112494331	4.929160996999999	587.3295358348151
+4.112494331	4.9260317449999995	493.8833012561241
+4.112494331	4.514580498	246.94165062806206
+4.150000000	4.929160997	493.8833012561241
+4.359365079	4.796870747	246.94165062806206
+4.630204081	4.929160996999999	246.94165062806206
+4.915623582	5.065623582000001	174.61411571650194
+4.934353741	5.482290248	659.2551138257398
+4.934353741	5.482290248	587.3295358348151
+4.934353741	5.324988661	220.0
+4.942698412	5.466666665	440.0
+5.167687074	5.482290248	220.0
+5.447913832	5.616666666	146.8323839587038
+5.458321995	6.391655328000001	659.2551138257398
+5.485396825	6.303106574999999	880.0
+5.508321995	6.301020407	493.8833012561241
+5.508321995	6.303106575	73.41619197935188
+5.723945578	5.899999999	261.6255653005986
+5.769773242	6.304149659	587.3295358348151
+5.986439909	6.147913830999999	261.6255653005986
+6.026031746	6.303106575	523.2511306011972
+6.250000000	6.406235827	220.0
+6.312494331	7.109365079	659.2551138257398
+6.312494331	7.051020407999999	587.3295358348151
+6.312494331	7.109365079	493.8833012561241
+6.312494331	7.109365079	174.61411571650194
+6.351020408	7.109365079	587.3295358348151
+6.522902494	6.692698412	261.6255653005986
+6.788526077	6.959365079	261.6255653005986
+7.067687074	7.568730157	523.2511306011972
+7.077074829	7.233333332	174.61411571650194
+7.111451247	7.629160997	164.81377845643496
+7.111451247	7.629160997	659.2551138257398
+7.111451247	7.629160997	698.4564628660078
+7.334353741	7.499999999	261.6255653005986
+7.587482993	8.534353741	523.2511306011972
+7.611451247	7.776031745	146.8323839587038
+7.635396825	8.453106575	587.3295358348151
+7.635396825	8.453106575	493.8833012561241
+7.635396825	8.453106575	130.8127826502993
+7.635396825	9.270816326	73.41619197935188
+7.881247165	8.069773242	261.6255653005986
+8.178117913	8.541655326999999	246.94165062806206
+8.434353741	8.718730158000001	293.6647679174076
+8.460408163	9.270816326	123.47082531403103
+8.460408163	9.259365079	493.8833012561241
+8.460408163	9.270816326	587.3295358348151
+8.460408163	9.270816326	698.4564628660078
+8.527074829	9.270816325	493.8833012561241
+8.731247165	9.016666665999999	261.6255653005986
+8.998956916	9.270816325999998	246.94165062806206
+9.245827664	9.51249433	233.08188075904496
+9.270816326	9.817687074	587.3295358348151
+9.270816326	9.817687074	523.2511306011972
+9.508321995	9.777074829	220.0
+9.776031746	10.627074829	329.6275569128699
+9.787482993	9.93956916	103.82617439498628
+9.817687074	10.359365078	493.8833012561241
+9.817687074	10.620816325	123.47082531403103
+9.817687074	10.222902493	246.94165062806206
+9.966666666	10.501020407	587.3295358348151
+10.058321995	10.487482992	246.94165062806206
+10.089569160	10.613537413	659.2551138257398
+10.231247165	10.621859408999999	830.6093951598903
+10.326031746	10.620816326	246.94165062806206
+10.364580498	10.615623581000001	493.8833012561241
+10.504149659	10.617687072999999	587.3295358348151
+10.589569160	10.743741495	123.47082531403103
+10.622902494	11.180204081	659.2551138257398
+10.622902494	11.440612244	103.82617439498628
+10.622902494	11.440612244	207.65234878997256
+10.655192743	11.430204080000001	493.8833012561241
+10.765623582	11.302063491	830.6093951598903
+10.871859410	11.035396824	293.6647679174076
+10.921859410	11.432290249	493.8833012561241
+11.055192743	11.440612243999999	587.3295358348151
+11.145827664	11.293741496	246.94165062806206
+11.186439909	11.437482992000001	659.2551138257398
+11.311451247	11.493741496	830.6093951598903
+11.424988662	11.556235827	164.81377845643496
+11.441655328	11.971859409	493.8833012561241
+11.441655328	11.977074829	82.4068892282175
+11.441655328	11.977074829	164.81377845643496
+11.447913832	11.874988661	587.3295358348151
+11.597913832	11.963537414	587.3295358348151
+11.685396825	11.842698411999999	246.94165062806206
+11.717687074	11.960408162	659.2551138257398
+11.856235827	12.015623582	830.6093951598903
+11.928117913	12.78435374	349.2282314330039
+11.948956916	12.140612244	103.82617439498628
+11.981247165	12.531247165	493.8833012561241
+11.981247165	12.794784579	174.61411571650194
+11.981247165	12.794784579	87.30705785825097
+12.129160997	12.654149659	587.3295358348151
+12.227074829	12.420816324999999	246.94165062806206
+12.286439909	12.793741496	659.2551138257398
+12.408321995	12.813537413999999	830.6093951598903
+12.509365079	12.72185941	246.94165062806206
+12.541655328	12.806235826	493.8833012561241
+12.663537414	12.801020407000001	587.3295358348151
+12.791655328	13.559365077999999	587.3295358348151
+12.793741496	12.965623582000001	123.47082531403103
+12.803106575	13.324988660999999	659.2551138257398
+12.803106575	13.544784579	146.8323839587038
+12.803106575	13.544784579	73.41619197935188
+12.936439909	13.427074829	830.6093951598903
+13.064580498	13.561451245999999	493.8833012561241
+13.067687074	13.249999999	207.65234878997256
+13.194784580	13.571859409	587.3295358348151
+13.331247165	13.558321994	659.2551138257398
+13.334353741	13.511451246	246.94165062806206
+13.438526077	13.635396825	830.6093951598903
+13.560408163	14.122902494	82.4068892282175
+13.560408163	13.786439909	164.81377845643496
+13.568730158	14.129160997	493.8833012561241
+13.592698412	14.136439908	830.6093951598903
+13.597913832	14.122902494	164.81377845643496
+13.720816326	14.129160997	587.3295358348151
+13.841655328	14.127074829	659.2551138257398
+13.870816326	14.045827663	329.6275569128699
+13.961451247	14.148956915	830.6093951598903
+14.122902494	14.251020407	349.2282314330039
+14.132290249	15.244784580000001	87.30705785825097
+14.132290249	15.227074829000001	174.61411571650194
+14.150000000	14.435396825	830.6093951598903
+14.230204081	14.402063491	329.6275569128699
+14.341655328	15.253106575	493.8833012561241
+14.341655328	14.938526076	587.3295358348151
+14.341655328	15.233333331999999	830.6093951598903
+14.341655328	15.253106575	659.2551138257398
+14.406235827	14.53435374	246.94165062806206
+14.460408163	15.253106575	587.3295358348151
+14.527074829	14.668730157	207.65234878997256
+14.541655328	15.543741494999999	164.81377845643496
+14.541655328	15.543741494999999	82.4068892282175
+14.692698412	14.833333332	329.6275569128699
+14.819773242	14.944784579	246.94165062806206
+14.915623582	15.910408162	73.41619197935188
+14.915623582	15.910408162	146.8323839587038
+14.953106575	15.086439908	207.65234878997256
+14.965623582	15.253106574999999	830.6093951598903
+15.088526077	15.24478458	174.61411571650194
+15.231247165	15.368730158	246.94165062806206
+15.238526077	15.504149659	698.4564628660078
+15.261451247	15.891655328	65.40639132514966
+15.261451247	15.891655328	130.8127826502993
+15.261451247	15.727074829	493.8833012561241
+15.261451247	15.727074829	587.3295358348151
+15.261451247	15.727074829	659.2551138257398
+15.261451247	15.727074829	830.6093951598903
+15.361451247	15.490612244	207.65234878997256
+15.505192743	15.621859409	174.61411571650194
+15.516666666	15.777074829	880.0
+15.552063492	16.335396825	61.7354126570155
+15.552063492	16.149999999000002	123.47082531403103
+15.624988662	15.754149659	164.81377845643496
+15.737482993	16.33956916	493.8833012561241
+15.737482993	16.33956916	587.3295358348151
+15.737482993	16.33956916	659.2551138257398
+15.737482993	16.330204081	830.6093951598903
+15.763537414	15.864580497	174.61411571650194
+15.783333333	16.33956916	830.6093951598903
+15.853106575	16.018730157	164.81377845643496
+15.903106575	16.340612243000002	65.40639132514966
+15.903106575	16.340612243000002	130.8127826502993
+16.022902494	16.335396825	123.47082531403103
+16.156235827	16.313537414	103.82617439498628
+16.316666666	16.632290248	110.0
+16.335396825	16.886439908	880.0
+16.346870748	17.224988661	880.0
+16.346870748	17.224988661	523.2511306011972
+16.346870748	17.224988661	493.8833012561241
+16.346870748	17.224988661	110.0
+16.346870748	17.224988661	55.0
Binary file testdata/TRIOS-groundtruth/lussier/mix.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/lussier/piano.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,119 @@
+1.0447916666666666	1.8614583333333334	659.2551138257398
+1.0447916666666666	1.5791666666666666	493.8833012561241
+1.096875	1.90625	110.0
+1.3520833333333333	1.85	523.2511306011972
+1.6135416666666667	1.8604166666666666	493.8833012561241
+1.875	2.7177083333333334	523.2511306011972
+1.875	2.7177083333333334	698.4564628660078
+1.875	2.7177083333333334	493.8833012561241
+1.9208333333333334	2.7177083333333334	220.0
+2.7239583333333335	3.2708333333333335	659.2551138257398
+2.7666666666666666	3.26875	440.0
+2.769791666666667	3.2708333333333335	195.99771799087463
+3.2802083333333334	4.111458333333333	698.4564628660078
+3.3020833333333335	3.8197916666666667	493.8833012561241
+3.325	4.088541666666667	87.30705785825097
+3.576041666666667	4.092708333333333	523.2511306011972
+3.8375	4.088541666666667	493.8833012561241
+4.1125	4.929166666666666	246.94165062806206
+4.1125	4.929166666666666	493.8833012561241
+4.1125	4.929166666666666	587.3295358348151
+4.1125	4.929166666666666	880.0
+4.934375	5.482291666666667	220.0
+4.934375	5.482291666666667	587.3295358348151
+4.934375	5.482291666666667	659.2551138257398
+5.485416666666667	6.303125	880.0
+5.508333333333334	6.303125	73.41619197935188
+5.508333333333334	6.301041666666666	493.8833012561241
+5.769791666666666	6.304166666666666	587.3295358348151
+6.026041666666667	6.303125	523.2511306011972
+6.3125	7.109375	174.61411571650194
+6.3125	7.109375	493.8833012561241
+6.3125	7.109375	587.3295358348151
+6.3125	7.109375	659.2551138257398
+7.111458333333333	7.629166666666666	698.4564628660078
+7.111458333333333	7.629166666666666	659.2551138257398
+7.111458333333333	7.629166666666666	164.81377845643496
+7.635416666666667	9.270833333333334	73.41619197935188
+7.635416666666667	8.453125	130.8127826502993
+7.635416666666667	8.453125	493.8833012561241
+7.635416666666667	8.453125	587.3295358348151
+8.460416666666667	9.270833333333334	698.4564628660078
+8.460416666666667	9.270833333333334	587.3295358348151
+8.460416666666667	9.270833333333334	493.8833012561241
+8.460416666666667	9.270833333333334	123.47082531403103
+9.270833333333334	9.817708333333334	523.2511306011972
+9.270833333333334	9.817708333333334	587.3295358348151
+9.817708333333334	10.620833333333334	246.94165062806206
+9.817708333333334	10.620833333333334	123.47082531403103
+9.817708333333334	10.359375	493.8833012561241
+9.966666666666667	10.501041666666667	587.3295358348151
+10.089583333333334	10.613541666666666	659.2551138257398
+10.23125	10.621875	830.6093951598903
+10.364583333333334	10.615625	493.8833012561241
+10.504166666666666	10.617708333333333	587.3295358348151
+10.622916666666667	11.440625	207.65234878997256
+10.622916666666667	11.440625	103.82617439498628
+10.622916666666667	11.180208333333333	659.2551138257398
+10.765625	11.302083333333334	830.6093951598903
+10.921875	11.430208333333333	493.8833012561241
+11.055208333333333	11.440625	587.3295358348151
+11.186458333333333	11.4375	659.2551138257398
+11.311458333333333	11.49375	830.6093951598903
+11.441666666666666	11.977083333333333	164.81377845643496
+11.441666666666666	11.977083333333333	82.4068892282175
+11.441666666666666	11.971875	493.8833012561241
+11.597916666666666	11.963541666666666	587.3295358348151
+11.717708333333333	11.960416666666667	659.2551138257398
+11.85625	12.015625	830.6093951598903
+11.98125	12.794791666666667	87.30705785825097
+11.98125	12.794791666666667	174.61411571650194
+11.98125	12.53125	493.8833012561241
+12.129166666666666	12.654166666666667	587.3295358348151
+12.286458333333334	12.79375	659.2551138257398
+12.408333333333333	12.813541666666667	830.6093951598903
+12.541666666666666	12.80625	493.8833012561241
+12.663541666666667	12.801041666666666	587.3295358348151
+12.803125	13.544791666666667	73.41619197935188
+12.803125	13.544791666666667	146.8323839587038
+12.803125	13.325	659.2551138257398
+12.936458333333333	13.427083333333334	830.6093951598903
+13.064583333333333	13.561458333333333	493.8833012561241
+13.194791666666667	13.559375	587.3295358348151
+13.33125	13.558333333333334	659.2551138257398
+13.438541666666667	13.635416666666666	830.6093951598903
+13.560416666666667	14.122916666666667	164.81377845643496
+13.560416666666667	14.122916666666667	82.4068892282175
+13.56875	14.129166666666666	493.8833012561241
+13.720833333333333	14.129166666666666	587.3295358348151
+13.841666666666667	14.127083333333333	659.2551138257398
+13.961458333333333	14.148958333333333	830.6093951598903
+14.132291666666667	15.244791666666666	174.61411571650194
+14.132291666666667	15.244791666666666	87.30705785825097
+14.341666666666667	15.253125	659.2551138257398
+14.341666666666667	15.253125	830.6093951598903
+14.341666666666667	15.253125	587.3295358348151
+14.341666666666667	15.253125	493.8833012561241
+14.541666666666666	15.54375	82.4068892282175
+14.541666666666666	15.54375	164.81377845643496
+14.915625	15.910416666666666	146.8323839587038
+14.915625	15.910416666666666	73.41619197935188
+15.261458333333334	15.727083333333333	830.6093951598903
+15.261458333333334	15.727083333333333	659.2551138257398
+15.261458333333334	15.727083333333333	587.3295358348151
+15.261458333333334	15.727083333333333	493.8833012561241
+15.261458333333334	15.891666666666667	130.8127826502993
+15.261458333333334	15.891666666666667	65.40639132514966
+15.552083333333334	16.335416666666667	123.47082531403103
+15.552083333333334	16.335416666666667	61.7354126570155
+15.7375	16.339583333333334	830.6093951598903
+15.7375	16.339583333333334	659.2551138257398
+15.7375	16.339583333333334	587.3295358348151
+15.7375	16.339583333333334	493.8833012561241
+15.903125	16.340625	130.8127826502993
+15.903125	16.340625	65.40639132514966
+16.346875	17.225	55.0
+16.346875	17.225	110.0
+16.346875	17.225	493.8833012561241
+16.346875	17.225	523.2511306011972
+16.346875	17.225	880.0
Binary file testdata/TRIOS-groundtruth/lussier/piano.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/lussier/trumpet.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,24 @@
+1.0458333333333334	1.9625	493.8833012561241
+1.95	2.7270833333333333	440.0
+2.753125	3.3020833333333335	391.99543598174927
+3.321875	4.164583333333334	523.2511306011972
+4.15	4.926041666666666	493.8833012561241
+4.942708333333333	5.466666666666667	440.0
+5.458333333333333	6.391666666666667	659.2551138257398
+6.351041666666666	7.051041666666666	587.3295358348151
+7.067708333333333	7.56875	523.2511306011972
+7.5875	8.534375	523.2511306011972
+8.527083333333334	9.259375	493.8833012561241
+9.776041666666666	10.627083333333333	329.6275569128699
+10.655208333333333	11.432291666666666	493.8833012561241
+11.447916666666666	11.875	587.3295358348151
+11.928125	12.784375	349.2282314330039
+12.791666666666666	13.571875	587.3295358348151
+13.592708333333333	14.136458333333334	830.6093951598903
+14.15	14.435416666666667	830.6093951598903
+14.460416666666667	14.938541666666667	587.3295358348151
+14.965625	15.233333333333333	830.6093951598903
+15.238541666666666	15.504166666666666	698.4564628660078
+15.516666666666667	15.777083333333334	880.0
+15.783333333333333	16.330208333333335	830.6093951598903
+16.335416666666667	16.886458333333334	880.0
Binary file testdata/TRIOS-groundtruth/lussier/trumpet.mid has changed
--- a/testdata/TRIOS-groundtruth/mozart.csv	Thu May 29 15:18:14 2014 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,247 +0,0 @@
-1.447913832,74,1.520816326,0.351562,D5 - vel 45
-1.520816326,46,0.780204081,0.46875,A#2 - vel 60
-1.796870748,58,0.430204081,0.46875,A#3 - vel 60
-2.058321995,62,0.290634920,0.46875,D4 - vel 60
-2.058321995,65,0.290634920,0.46875,F4 - vel 60
-2.266666666,58,0.387482993,0.46875,A#3 - vel 60
-2.521859410,62,0.318752834,0.46875,D4 - vel 60
-2.521859410,65,0.318752834,0.46875,F4 - vel 60
-2.754149659,58,0.331247165,0.46875,A#3 - vel 60
-2.973945578,77,0.510408163,0.351562,F5 - vel 45
-3.021859410,53,0.842721088,0.46875,F3 - vel 60
-3.273945578,57,0.366666666,0.46875,A3 - vel 60
-3.458321995,75,0.526031746,0.429688,D#5 - vel 55
-3.540612244,65,0.328117913,0.46875,F4 - vel 60
-3.540612244,60,0.328117913,0.46875,C4 - vel 60
-3.747913832,57,0.389569160,0.46875,A3 - vel 60
-3.963537414,72,0.505192743,0.5,C5 - vel 64
-3.979160997,60,0.343741496,0.46875,C4 - vel 60
-3.979160997,65,0.343741496,0.46875,F4 - vel 60
-4.226031746,57,0.230204081,0.46875,A3 - vel 60
-4.463537414,70,0.505192743,0.570312,A#4 - vel 73
-4.487482993,50,0.638548752,0.46875,D3 - vel 60
-4.710408163,58,0.388548752,0.46875,A#3 - vel 60
-4.952063492,62,0.342721088,0.46875,D4 - vel 60
-4.952063492,65,0.342721088,0.46875,F4 - vel 60
-4.979160997,70,0.510408163,0.570312,A#4 - vel 73
-5.192698412,58,0.441655328,0.46875,A#3 - vel 60
-5.470816326,65,0.319795918,0.46875,F4 - vel 60
-5.470816326,62,0.319795918,0.46875,D4 - vel 60
-5.500000000,70,0.421859410,0.46875,A#4 - vel 60
-5.706235827,58,0.240634920,0.46875,A#3 - vel 60
-5.964580498,45,0.691655328,0.46875,A2 - vel 60
-5.973945578,71,0.255215419,0.46875,B4 - vel 60
-6.203106575,60,0.345850340,0.46875,C4 - vel 60
-6.223945578,72,0.234376417,0.476562,C5 - vel 61
-6.446870748,65,0.360408163,0.46875,F4 - vel 60
-6.446870748,63,0.360408163,0.46875,D#4 - vel 60
-6.463537414,72,0.473945578,0.484375,C5 - vel 62
-6.695827664,60,0.358321995,0.46875,C4 - vel 60
-6.939569160,63,0.356258503,0.46875,D#4 - vel 60
-6.939569160,65,0.356258503,0.46875,F4 - vel 60
-6.947913832,72,0.473945578,0.5,C5 - vel 64
-7.186439909,60,0.270839002,0.46875,C4 - vel 60
-7.442698412,73,0.281247165,0.5,C#5 - vel 64
-7.473945578,46,0.690634920,0.46875,A#2 - vel 60
-7.703106575,58,0.409387755,0.46875,A#3 - vel 60
-7.708321995,74,0.260408163,0.507812,D5 - vel 65
-7.972902494,65,0.326054421,0.46875,F4 - vel 60
-7.972902494,62,0.326054421,0.46875,D4 - vel 60
-7.973945578,74,0.473968253,0.515625,D5 - vel 66
-8.189569160,58,0.377097505,0.46875,A#3 - vel 60
-8.453106575,74,0.494807256,0.539062,D5 - vel 69
-8.466666666,65,0.288526077,0.46875,F4 - vel 60
-8.466666666,62,0.288526077,0.46875,D4 - vel 60
-8.716666666,58,0.263537414,0.46875,A#3 - vel 60
-8.984353741,77,0.302086167,0.570312,F5 - vel 73
-8.988526077,41,0.820839002,0.46875,F2 - vel 60
-9.215623582,57,0.395827664,0.46875,A3 - vel 60
-9.260408163,75,0.354172335,0.46875,D#5 - vel 60
-9.493741496,63,0.235419501,0.46875,D#4 - vel 60
-9.496870748,60,0.297913832,0.46875,C4 - vel 60
-9.496870748,65,0.297913832,0.46875,F4 - vel 60
-9.714580498,57,0.393741496,0.46875,A3 - vel 60
-9.727074829,60,0.278117913,0.46875,C4 - vel 60
-9.981247165,65,0.333333333,0.46875,F4 - vel 60
-9.981247165,60,0.333333333,0.46875,C4 - vel 60
-9.990612244,63,0.243741496,0.46875,D#4 - vel 60
-10.184353741,57,0.262517006,0.46875,A3 - vel 60
-10.235396825,60,0.223968253,0.46875,C4 - vel 60
-10.458321995,77,0.791678004,0.46875,F5 - vel 60
-10.474988662,46,0.758344671,0.46875,A#2 - vel 60
-10.481247165,65,0.798956916,0.46875,F4 - vel 60
-10.710408163,58,0.416666666,0.46875,A#3 - vel 60
-10.971859410,62,0.308344671,0.46875,D4 - vel 60
-10.971859410,65,0.808344671,0.46875,F4 - vel 60
-11.203106575,58,0.367709750,0.46875,A#3 - vel 60
-11.218730158,79,0.265623582,0.46875,G5 - vel 60
-11.458321995,81,0.291678004,0.46875,A5 - vel 60
-11.473945578,62,0.306258503,0.46875,D4 - vel 60
-11.473945578,65,1.315623582,0.46875,F4 - vel 60
-11.708321995,58,0.346870748,0.46875,A#3 - vel 60
-11.718730158,82,0.260430839,0.46875,A#5 - vel 60
-11.979160997,82,0.291655328,0.46875,A#5 - vel 60
-11.987482993,51,0.739591836,0.46875,D#3 - vel 60
-12.202063492,57,0.389591836,0.46875,A3 - vel 60
-12.234353741,81,0.265646258,0.46875,A5 - vel 60
-12.460408163,65,0.812494331,0.46875,F4 - vel 60
-12.460408163,60,0.329160997,0.46875,C4 - vel 60
-12.479160997,79,0.244784580,0.46875,G5 - vel 60
-12.698956916,57,0.386439909,0.46875,A3 - vel 60
-12.708321995,77,0.276031746,0.46875,F5 - vel 60
-12.965623582,65,0.489569160,0.46875,F4 - vel 60
-12.968730158,75,0.281269841,0.46875,D#5 - vel 60
-12.983333333,60,0.339569160,0.46875,C4 - vel 60
-13.197913832,57,0.266666666,0.46875,A3 - vel 60
-13.213537414,72,0.229160997,0.46875,C5 - vel 60
-13.461451247,65,0.826031746,0.351562,F4 - vel 45
-13.463537414,69,0.213537414,0.46875,A4 - vel 60
-13.467687074,50,0.720839002,0.46875,D3 - vel 60
-13.692698412,70,0.234376417,0.46875,A#4 - vel 60
-13.700000000,58,0.393741496,0.46875,A#3 - vel 60
-13.932290249,70,0.468730158,0.46875,A#4 - vel 60
-13.978117913,65,0.817709750,0.46875,F4 - vel 60
-13.978117913,62,0.309365079,0.46875,D4 - vel 60
-14.203106575,58,0.441678004,0.46875,A#3 - vel 60
-14.411451247,70,0.453129251,0.476562,A#4 - vel 61
-14.483333333,65,1.220816326,0.46875,F4 - vel 60
-14.483333333,62,0.312494331,0.46875,D4 - vel 60
-14.723945578,58,0.232290249,0.46875,A#3 - vel 60
-14.869773242,71,0.281247165,0.492188,B4 - vel 63
-14.970816326,45,0.664580498,0.46875,A2 - vel 60
-15.151020408,72,0.255215419,0.5,C5 - vel 64
-15.194784580,60,0.331247165,0.46875,C4 - vel 60
-15.416666666,72,0.479160997,0.5,C5 - vel 64
-15.441655328,65,0.811451247,0.46875,F4 - vel 60
-15.451020408,63,0.289591836,0.46875,D#4 - vel 60
-15.687482993,60,0.333333333,0.46875,C4 - vel 60
-15.906235827,72,0.505215419,0.507812,C5 - vel 65
-15.937482993,65,0.597913832,0.46875,F4 - vel 60
-15.941655328,63,0.359365079,0.46875,D#4 - vel 60
-16.176031746,60,0.223968253,0.46875,C4 - vel 60
-16.416666666,73,0.281247165,0.523438,C#5 - vel 67
-16.428117913,46,0.739569160,0.46875,A#2 - vel 60
-16.538526077,65,0.677097505,0.351562,F4 - vel 45
-16.671859410,58,0.336462585,0.46875,A#3 - vel 60
-16.703106575,74,0.239591836,0.53125,D5 - vel 68
-16.944784580,65,0.779160997,0.46875,F4 - vel 60
-16.944784580,62,0.270839002,0.46875,D4 - vel 60
-16.947913832,74,0.463537414,0.539062,D5 - vel 69
-17.185396825,58,0.326054421,0.46875,A#3 - vel 60
-17.427074829,74,0.520839002,0.554688,D5 - vel 71
-17.455192743,65,1.057301587,0.46875,F4 - vel 60
-17.455192743,62,0.268752834,0.46875,D4 - vel 60
-17.672902494,58,0.253129251,0.46875,A#3 - vel 60
-17.966666666,53,0.936439909,0.46875,F3 - vel 60
-17.973945578,77,0.270839002,0.570312,F5 - vel 73
-18.195827664,57,0.380204081,0.46875,A3 - vel 60
-18.223945578,75,0.328117913,0.46875,D#5 - vel 60
-18.451020408,60,0.368752834,0.46875,C4 - vel 60
-18.451020408,65,0.368752834,0.46875,F4 - vel 60
-18.553106575,63,0.212517006,0.570312,D#4 - vel 73
-18.663537414,57,0.396870748,0.46875,A3 - vel 60
-18.761451247,60,0.244784580,0.570312,C4 - vel 73
-18.927074829,51,0.518752834,0.46875,D#3 - vel 60
-18.930204081,60,0.357278911,0.46875,C4 - vel 60
-18.930204081,65,0.357278911,0.46875,F4 - vel 60
-18.996870748,63,0.226031746,0.53125,D#4 - vel 68
-19.153106575,57,0.259387755,0.46875,A3 - vel 60
-19.222902494,60,0.272925170,0.5,C4 - vel 64
-19.429160997,50,1.266666666,0.46875,D3 - vel 60
-19.473945578,77,1.302086167,0.46875,F5 - vel 60
-19.583333333,58,0.446870748,0.46875,A#3 - vel 60
-19.667687074,58,0.877097505,0.46875,A#3 - vel 60
-19.945827664,65,0.366666666,0.46875,F4 - vel 60
-19.945827664,62,0.366666666,0.46875,D4 - vel 60
-20.186439909,58,0.781247165,0.46875,A#3 - vel 60
-20.473945578,65,0.329160997,0.46875,F4 - vel 60
-20.473945578,62,0.329160997,0.46875,D4 - vel 60
-20.717687074,58,0.264603174,0.46875,A#3 - vel 60
-20.776031746,79,0.072925170,0.46875,G5 - vel 60
-20.848956916,77,0.088526077,0.46875,F5 - vel 60
-20.927074829,76,0.083333333,0.46875,E5 - vel 60
-20.967687074,59,0.682312925,0.46875,B3 - vel 60
-21.000000000,43,1.333333333,0.46875,G2 - vel 60
-21.005192743,77,0.109387755,0.46875,F5 - vel 60
-21.098956916,80,0.546870748,0.46875,G#5 - vel 60
-21.240612244,59,0.890634920,0.46875,B3 - vel 60
-21.518730158,65,0.326054421,0.46875,F4 - vel 60
-21.518730158,62,0.326054421,0.46875,D4 - vel 60
-21.619773242,79,0.484376417,0.46875,G5 - vel 60
-21.742698412,59,0.753129251,0.46875,B3 - vel 60
-22.020816326,65,0.308344671,0.46875,F4 - vel 60
-22.020816326,62,0.308344671,0.46875,D4 - vel 60
-22.093741496,74,0.489591836,0.46875,D5 - vel 60
-22.264580498,59,0.231247165,0.46875,B3 - vel 60
-22.504149659,48,1.493764172,0.46875,C3 - vel 60
-22.514580498,60,0.508321995,0.46875,C4 - vel 60
-22.588526077,77,0.453129251,0.46875,F5 - vel 60
-22.758321995,58,0.395827664,0.46875,A#3 - vel 60
-23.020816326,76,0.489591836,0.46875,E5 - vel 60
-23.028117913,60,0.326031746,0.46875,C4 - vel 60
-23.028117913,67,0.326031746,0.46875,G4 - vel 60
-23.045827664,64,0.454172335,0.46875,E4 - vel 60
-23.260408163,58,0.371882086,0.46875,A#3 - vel 60
-23.492698412,64,0.296870748,0.46875,E4 - vel 60
-23.500000000,72,0.510408163,0.46875,C5 - vel 60
-23.500000000,67,0.489569160,0.46875,G4 - vel 60
-23.510408163,60,0.310408163,0.46875,C4 - vel 60
-23.739569160,58,0.333333333,0.46875,A#3 - vel 60
-23.980204081,69,0.985419501,0.46875,A4 - vel 60
-24.009365079,42,1.355215419,0.46875,F#2 - vel 60
-24.015623582,75,0.963537414,0.46875,D#5 - vel 60
-24.015623582,63,0.285396825,0.46875,D#4 - vel 60
-24.022902494,60,0.288548752,0.46875,C4 - vel 60
-24.227074829,57,0.416666666,0.46875,A3 - vel 60
-24.493741496,63,0.392698412,0.46875,D#4 - vel 60
-24.502063492,60,0.345850340,0.46875,C4 - vel 60
-24.737482993,57,0.338548752,0.46875,A3 - vel 60
-24.953106575,74,0.786462585,0.46875,D5 - vel 60
-24.961451247,70,0.571882086,0.46875,A#4 - vel 60
-24.998956916,62,0.296870748,0.46875,D4 - vel 60
-25.011451247,58,0.253129251,0.46875,A#3 - vel 60
-25.020816326,43,0.525011337,0.46875,G2 - vel 60
-25.226031746,55,0.412494331,0.46875,G3 - vel 60
-25.518730158,67,0.725011337,0.46875,G4 - vel 60
-25.524988662,63,0.780204081,0.46875,D#4 - vel 60
-25.539569160,39,0.830204081,0.46875,D#2 - vel 60
-25.541655328,67,0.748956916,0.46875,G4 - vel 60
-25.723945578,72,0.250000000,0.492188,C5 - vel 63
-25.963537414,75,0.265623582,0.5,D#5 - vel 64
-26.213537414,79,0.286462585,0.5,G5 - vel 64
-26.250000000,63,0.261451247,0.507812,D#4 - vel 65
-26.485396825,51,0.657301587,0.53125,D#3 - vel 68
-26.489569160,75,0.260430839,0.5,D#5 - vel 64
-26.519773242,67,0.230226757,0.523438,G4 - vel 67
-26.711451247,63,0.263537414,0.546875,D#4 - vel 70
-26.729160997,72,0.270839002,0.507812,C5 - vel 65
-26.979160997,62,0.965623582,0.570312,D4 - vel 73
-26.987482993,53,0.356258503,0.570312,F3 - vel 73
-27.000000000,70,0.984353741,0.515625,A#4 - vel 66
-27.481247165,53,0.377074829,0.609375,F3 - vel 78
-27.954149659,65,0.269795918,0.570312,F4 - vel 73
-27.957278911,53,0.350000000,0.65625,F3 - vel 84
-27.968730158,74,0.255215419,0.570312,D5 - vel 73
-28.197913832,72,0.296870748,0.570312,C5 - vel 73
-28.235396825,63,0.268752834,0.570312,D#4 - vel 73
-28.490612244,46,0.756258503,0.703125,A#2 - vel 90
-28.500000000,70,0.447913832,0.554688,A#4 - vel 71
-28.528117913,62,0.405215419,0.703125,D4 - vel 90
-29.000000000,62,0.473945578,0.554688,D4 - vel 71
-29.021859410,58,0.478140589,0.703125,A#3 - vel 90
-29.051020408,58,0.844807256,0.703125,A#3 - vel 90
-29.468730158,65,0.468752834,0.554688,F4 - vel 71
-29.483333333,62,0.487482993,0.65625,D4 - vel 84
-29.579160997,53,0.639569160,0.65625,F3 - vel 84
-29.927074829,70,0.541655328,0.578125,A#4 - vel 74
-29.973945578,65,0.482290249,0.609375,F4 - vel 78
-30.081247165,50,0.598956916,0.609375,D3 - vel 78
-30.463537414,65,0.453129251,0.5625,F4 - vel 72
-30.467687074,62,0.477097505,0.5625,D4 - vel 72
-30.534353741,53,0.701043083,0.5625,F3 - vel 72
-30.916666666,70,0.572902494,0.507812,A#4 - vel 65
-30.963537414,65,0.508321995,0.507812,F4 - vel 65
-31.024988662,50,0.769795918,0.507812,D3 - vel 65
-31.474988662,70,0.995827664,0.46875,A#4 - vel 60
-31.484353741,74,1.046893424,0.46875,D5 - vel 60
-31.605192743,46,0.879160997,0.46875,A#2 - vel 60
--- a/testdata/TRIOS-groundtruth/mozart.lab	Thu May 29 15:18:14 2014 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,247 +0,0 @@
-1.447913832	2.968730158	587.3295358348151
-1.520816326	2.301020407	116.54094037952248
-1.796870748	2.227074829	233.08188075904496
-2.058321995	2.348956915	293.6647679174076
-2.058321995	2.348956915	349.2282314330039
-2.266666666	2.6541496589999998	233.08188075904496
-2.521859410	2.840612244	293.6647679174076
-2.521859410	2.840612244	349.2282314330039
-2.754149659	3.085396824	233.08188075904496
-2.973945578	3.484353741	698.4564628660078
-3.021859410	3.864580498	174.61411571650194
-3.273945578	3.640612244	220.0
-3.458321995	3.984353741	622.2539674441618
-3.540612244	3.868730157	349.2282314330039
-3.540612244	3.868730157	261.6255653005986
-3.747913832	4.137482992	220.0
-3.963537414	4.468730157	523.2511306011972
-3.979160997	4.322902493	261.6255653005986
-3.979160997	4.322902493	349.2282314330039
-4.226031746	4.456235827	220.0
-4.463537414	4.968730157	466.1637615180899
-4.487482993	5.126031745000001	146.8323839587038
-4.710408163	5.0989569150000005	233.08188075904496
-4.952063492	5.29478458	293.6647679174076
-4.952063492	5.29478458	349.2282314330039
-4.979160997	5.48956916	466.1637615180899
-5.192698412	5.634353740000001	233.08188075904496
-5.470816326	5.790612243999999	349.2282314330039
-5.470816326	5.790612243999999	293.6647679174076
-5.500000000	5.92185941	466.1637615180899
-5.706235827	5.946870747	233.08188075904496
-5.964580498	6.656235826	110.0
-5.973945578	6.229160997	493.8833012561241
-6.203106575	6.548956915	261.6255653005986
-6.223945578	6.458321995	523.2511306011972
-6.446870748	6.807278911	349.2282314330039
-6.446870748	6.807278911	311.1269837220809
-6.463537414	6.9374829920000005	523.2511306011972
-6.695827664	7.054149659	261.6255653005986
-6.939569160	7.295827663	311.1269837220809
-6.939569160	7.295827663	349.2282314330039
-6.947913832	7.421859410000001	523.2511306011972
-7.186439909	7.4572789109999995	261.6255653005986
-7.442698412	7.723945577	554.3652619537442
-7.473945578	8.164580498000001	116.54094037952248
-7.703106575	8.11249433	233.08188075904496
-7.708321995	7.9687301580000005	587.3295358348151
-7.972902494	8.298956915	349.2282314330039
-7.972902494	8.298956915	293.6647679174076
-7.973945578	8.447913831000001	587.3295358348151
-8.189569160	8.566666665	233.08188075904496
-8.453106575	8.947913831	587.3295358348151
-8.466666666	8.755192743	349.2282314330039
-8.466666666	8.755192743	293.6647679174076
-8.716666666	8.98020408	233.08188075904496
-8.984353741	9.286439908	698.4564628660078
-8.988526077	9.809365078999999	87.30705785825097
-9.215623582	9.611451246	220.0
-9.260408163	9.614580497999999	622.2539674441618
-9.493741496	9.729160997000001	311.1269837220809
-9.496870748	9.79478458	261.6255653005986
-9.496870748	9.79478458	349.2282314330039
-9.714580498	10.108321994	220.0
-9.727074829	10.005192741999998	261.6255653005986
-9.981247165	10.314580498	349.2282314330039
-9.981247165	10.314580498	261.6255653005986
-9.990612244	10.23435374	311.1269837220809
-10.184353741	10.446870747	220.0
-10.235396825	10.459365078000001	261.6255653005986
-10.458321995	11.249999999	698.4564628660078
-10.474988662	11.233333333	116.54094037952248
-10.481247165	11.280204080999999	349.2282314330039
-10.710408163	11.127074829	233.08188075904496
-10.971859410	11.280204081	293.6647679174076
-10.971859410	11.780204081	349.2282314330039
-11.203106575	11.570816325	233.08188075904496
-11.218730158	11.48435374	783.9908719634985
-11.458321995	11.749999999	880.0
-11.473945578	11.780204081	293.6647679174076
-11.473945578	12.789569160000001	349.2282314330039
-11.708321995	12.055192743000001	233.08188075904496
-11.718730158	11.979160997	932.3275230361799
-11.979160997	12.270816324999998	932.3275230361799
-11.987482993	12.727074829000001	155.56349186104046
-12.202063492	12.591655328	220.0
-12.234353741	12.499999999	880.0
-12.460408163	13.272902494	349.2282314330039
-12.460408163	12.789569160000001	261.6255653005986
-12.479160997	12.723945576999999	783.9908719634985
-12.698956916	13.085396825	220.0
-12.708321995	12.984353741	698.4564628660078
-12.965623582	13.455192742	349.2282314330039
-12.968730158	13.249999999	622.2539674441618
-12.983333333	13.322902492999999	261.6255653005986
-13.197913832	13.464580498	220.0
-13.213537414	13.442698410999999	523.2511306011972
-13.461451247	14.287482993	349.2282314330039
-13.463537414	13.677074827999999	440.0
-13.467687074	14.188526076	146.8323839587038
-13.692698412	13.927074829	466.1637615180899
-13.700000000	14.093741496	233.08188075904496
-13.932290249	14.401020406999999	466.1637615180899
-13.978117913	14.795827663	349.2282314330039
-13.978117913	14.287482992000001	293.6647679174076
-14.203106575	14.644784579	233.08188075904496
-14.411451247	14.864580498	466.1637615180899
-14.483333333	15.704149658999999	349.2282314330039
-14.483333333	14.795827663999999	293.6647679174076
-14.723945578	14.956235827	233.08188075904496
-14.869773242	15.151020407	493.8833012561241
-14.970816326	15.635396823999999	110.0
-15.151020408	15.406235827000001	523.2511306011972
-15.194784580	15.526031745	261.6255653005986
-15.416666666	15.895827662999999	523.2511306011972
-15.441655328	16.253106575	349.2282314330039
-15.451020408	15.740612244	311.1269837220809
-15.687482993	16.020816326	261.6255653005986
-15.906235827	16.411451246	523.2511306011972
-15.937482993	16.535396825	349.2282314330039
-15.941655328	16.301020407	311.1269837220809
-16.176031746	16.399999999	261.6255653005986
-16.416666666	16.697913831	554.3652619537442
-16.428117913	17.167687073	116.54094037952248
-16.538526077	17.215623582	349.2282314330039
-16.671859410	17.008321995	233.08188075904496
-16.703106575	16.942698411	587.3295358348151
-16.944784580	17.723945577	349.2282314330039
-16.944784580	17.215623582	293.6647679174076
-16.947913832	17.411451246000002	587.3295358348151
-17.185396825	17.511451246	233.08188075904496
-17.427074829	17.947913830999997	587.3295358348151
-17.455192743	18.512494330000003	349.2282314330039
-17.455192743	17.723945577000002	293.6647679174076
-17.672902494	17.926031745	233.08188075904496
-17.966666666	18.903106575	174.61411571650194
-17.973945578	18.244784579999997	698.4564628660078
-18.195827664	18.576031744999998	220.0
-18.223945578	18.552063491	622.2539674441618
-18.451020408	18.819773242	261.6255653005986
-18.451020408	18.819773242	349.2282314330039
-18.553106575	18.765623581	311.1269837220809
-18.663537414	19.060408162	220.0
-18.761451247	19.006235827	261.6255653005986
-18.927074829	19.445827663	155.56349186104046
-18.930204081	19.287482992	261.6255653005986
-18.930204081	19.287482992	349.2282314330039
-18.996870748	19.222902494	311.1269837220809
-19.153106575	19.412494329999998	220.0
-19.222902494	19.495827664	261.6255653005986
-19.429160997	20.695827663	146.8323839587038
-19.473945578	20.776031744999997	698.4564628660078
-19.583333333	20.030204080999997	233.08188075904496
-19.667687074	20.544784579	233.08188075904496
-19.945827664	20.31249433	349.2282314330039
-19.945827664	20.31249433	293.6647679174076
-20.186439909	20.967687074	233.08188075904496
-20.473945578	20.803106574999997	349.2282314330039
-20.473945578	20.803106574999997	293.6647679174076
-20.717687074	20.982290248	233.08188075904496
-20.776031746	20.848956916000002	783.9908719634985
-20.848956916	20.937482993	698.4564628660078
-20.927074829	21.010408161999997	659.2551138257398
-20.967687074	21.649999999000002	246.94165062806206
-21.000000000	22.333333333	97.99885899543733
-21.005192743	21.114580498	698.4564628660078
-21.098956916	21.645827664	830.6093951598903
-21.240612244	22.131247164	246.94165062806206
-21.518730158	21.844784579	349.2282314330039
-21.518730158	21.844784579	293.6647679174076
-21.619773242	22.104149659	783.9908719634985
-21.742698412	22.495827663	246.94165062806206
-22.020816326	22.329160997	349.2282314330039
-22.020816326	22.329160997	293.6647679174076
-22.093741496	22.583333332	587.3295358348151
-22.264580498	22.495827663	246.94165062806206
-22.504149659	23.997913830999998	130.8127826502993
-22.514580498	23.022902493	261.6255653005986
-22.588526077	23.041655328	698.4564628660078
-22.758321995	23.154149658999998	233.08188075904496
-23.020816326	23.510408161999997	659.2551138257398
-23.028117913	23.354149659	261.6255653005986
-23.028117913	23.354149659	391.99543598174927
-23.045827664	23.499999999	329.6275569128699
-23.260408163	23.632290249	233.08188075904496
-23.492698412	23.78956916	329.6275569128699
-23.500000000	24.010408163	523.2511306011972
-23.500000000	23.98956916	391.99543598174927
-23.510408163	23.820816326000003	261.6255653005986
-23.739569160	24.072902492999997	233.08188075904496
-23.980204081	24.965623582	440.0
-24.009365079	25.364580498	92.4986056779086
-24.015623582	24.979160996	622.2539674441618
-24.015623582	24.301020407	311.1269837220809
-24.022902494	24.311451246	261.6255653005986
-24.227074829	24.643741495	220.0
-24.493741496	24.886439908	311.1269837220809
-24.502063492	24.847913832	261.6255653005986
-24.737482993	25.076031745	220.0
-24.953106575	25.73956916	587.3295358348151
-24.961451247	25.533333332999998	466.1637615180899
-24.998956916	25.295827664	293.6647679174076
-25.011451247	25.264580498	233.08188075904496
-25.020816326	25.545827662999997	97.99885899543733
-25.226031746	25.638526077	195.99771799087463
-25.518730158	26.243741495000002	391.99543598174927
-25.524988662	26.305192743	311.1269837220809
-25.539569160	26.369773241	77.78174593052023
-25.541655328	26.290612244000002	391.99543598174927
-25.723945578	25.973945578	523.2511306011972
-25.963537414	26.229160996	622.2539674441618
-26.213537414	26.499999999	783.9908719634985
-26.250000000	26.511451247	311.1269837220809
-26.485396825	27.142698411999998	155.56349186104046
-26.489569160	26.749999999	622.2539674441618
-26.519773242	26.749999999	391.99543598174927
-26.711451247	26.974988661	311.1269837220809
-26.729160997	26.999999999	523.2511306011972
-26.979160997	27.944784579	293.6647679174076
-26.987482993	27.343741496	174.61411571650194
-27.000000000	27.984353741	466.1637615180899
-27.481247165	27.858321994	174.61411571650194
-27.954149659	28.223945577	349.2282314330039
-27.957278911	28.307278911	174.61411571650194
-27.968730158	28.223945577	587.3295358348151
-28.197913832	28.49478458	523.2511306011972
-28.235396825	28.504149659	311.1269837220809
-28.490612244	29.246870747000003	116.54094037952248
-28.500000000	28.947913832	466.1637615180899
-28.528117913	28.933333332	293.6647679174076
-29.000000000	29.473945578	293.6647679174076
-29.021859410	29.499999999	233.08188075904496
-29.051020408	29.895827664	233.08188075904496
-29.468730158	29.937482992	349.2282314330039
-29.483333333	29.970816326	293.6647679174076
-29.579160997	30.218730157	174.61411571650194
-29.927074829	30.468730157	466.1637615180899
-29.973945578	30.456235826999997	349.2282314330039
-30.081247165	30.680204081	146.8323839587038
-30.463537414	30.916666665	349.2282314330039
-30.467687074	30.944784579	293.6647679174076
-30.534353741	31.235396824	174.61411571650194
-30.916666666	31.489569160000002	466.1637615180899
-30.963537414	31.471859409	349.2282314330039
-31.024988662	31.794784579999998	146.8323839587038
-31.474988662	32.470816326	466.1637615180899
-31.484353741	32.531247164999996	587.3295358348151
-31.605192743	32.48435374	116.54094037952248
Binary file testdata/TRIOS-groundtruth/mozart.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/mozart/clarinet.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,69 @@
+1.4479166666666667	2.96875	587.3295358348151
+2.9739583333333335	3.484375	698.4564628660078
+3.4583333333333335	3.984375	622.2539674441618
+3.9635416666666665	4.46875	523.2511306011972
+4.463541666666667	4.96875	466.1637615180899
+4.979166666666667	5.489583333333333	466.1637615180899
+5.5	5.921875	466.1637615180899
+5.973958333333333	6.229166666666667	493.8833012561241
+6.223958333333333	6.458333333333333	523.2511306011972
+6.463541666666667	6.9375	523.2511306011972
+6.947916666666667	7.421875	523.2511306011972
+7.442708333333333	7.723958333333333	554.3652619537442
+7.708333333333333	7.96875	587.3295358348151
+7.973958333333333	8.447916666666666	587.3295358348151
+8.453125	8.947916666666666	587.3295358348151
+8.984375	9.286458333333334	698.4564628660078
+9.260416666666666	9.614583333333334	622.2539674441618
+10.458333333333334	11.25	698.4564628660078
+11.21875	11.484375	783.9908719634985
+11.458333333333334	11.75	880.0
+11.71875	11.979166666666666	932.3275230361799
+11.979166666666666	12.270833333333334	932.3275230361799
+12.234375	12.5	880.0
+12.479166666666666	12.723958333333334	783.9908719634985
+12.708333333333334	12.984375	698.4564628660078
+12.96875	13.25	622.2539674441618
+13.213541666666666	13.442708333333334	523.2511306011972
+13.463541666666666	13.677083333333334	440.0
+13.692708333333334	13.927083333333334	466.1637615180899
+13.932291666666666	14.401041666666666	466.1637615180899
+14.411458333333334	14.864583333333334	466.1637615180899
+14.869791666666666	15.151041666666666	493.8833012561241
+15.151041666666666	15.40625	523.2511306011972
+15.416666666666666	15.895833333333334	523.2511306011972
+15.90625	16.411458333333332	523.2511306011972
+16.416666666666668	16.697916666666668	554.3652619537442
+16.703125	16.942708333333332	587.3295358348151
+16.947916666666668	17.411458333333332	587.3295358348151
+17.427083333333332	17.947916666666668	587.3295358348151
+17.973958333333332	18.244791666666668	698.4564628660078
+18.223958333333332	18.552083333333332	622.2539674441618
+19.473958333333332	20.776041666666668	698.4564628660078
+20.776041666666668	20.848958333333332	783.9908719634985
+20.848958333333332	20.9375	698.4564628660078
+20.927083333333332	21.010416666666668	659.2551138257398
+21.005208333333332	21.114583333333332	698.4564628660078
+21.098958333333332	21.645833333333332	830.6093951598903
+21.619791666666668	22.104166666666668	783.9908719634985
+22.09375	22.583333333333332	587.3295358348151
+22.588541666666668	23.041666666666668	698.4564628660078
+23.020833333333332	23.510416666666668	659.2551138257398
+23.5	24.010416666666668	523.2511306011972
+24.015625	24.979166666666668	622.2539674441618
+24.953125	25.739583333333332	587.3295358348151
+25.723958333333332	25.973958333333332	523.2511306011972
+25.963541666666668	26.229166666666668	622.2539674441618
+26.213541666666668	26.5	783.9908719634985
+26.489583333333332	26.75	622.2539674441618
+26.729166666666668	27	523.2511306011972
+27	27.984375	466.1637615180899
+27.96875	28.223958333333332	587.3295358348151
+28.197916666666668	28.494791666666668	523.2511306011972
+28.5	28.947916666666668	466.1637615180899
+29	29.473958333333332	293.6647679174076
+29.46875	29.9375	349.2282314330039
+29.927083333333332	30.46875	466.1637615180899
+30.463541666666668	30.916666666666668	349.2282314330039
+30.916666666666668	31.489583333333332	466.1637615180899
+31.484375	32.53125	587.3295358348151
Binary file testdata/TRIOS-groundtruth/mozart/clarinet.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/mozart/mix.csv	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,247 @@
+1.447913832,74,1.520816326,0.351562,D5 - vel 45
+1.520816326,46,0.780204081,0.46875,A#2 - vel 60
+1.796870748,58,0.430204081,0.46875,A#3 - vel 60
+2.058321995,62,0.290634920,0.46875,D4 - vel 60
+2.058321995,65,0.290634920,0.46875,F4 - vel 60
+2.266666666,58,0.387482993,0.46875,A#3 - vel 60
+2.521859410,62,0.318752834,0.46875,D4 - vel 60
+2.521859410,65,0.318752834,0.46875,F4 - vel 60
+2.754149659,58,0.331247165,0.46875,A#3 - vel 60
+2.973945578,77,0.510408163,0.351562,F5 - vel 45
+3.021859410,53,0.842721088,0.46875,F3 - vel 60
+3.273945578,57,0.366666666,0.46875,A3 - vel 60
+3.458321995,75,0.526031746,0.429688,D#5 - vel 55
+3.540612244,65,0.328117913,0.46875,F4 - vel 60
+3.540612244,60,0.328117913,0.46875,C4 - vel 60
+3.747913832,57,0.389569160,0.46875,A3 - vel 60
+3.963537414,72,0.505192743,0.5,C5 - vel 64
+3.979160997,60,0.343741496,0.46875,C4 - vel 60
+3.979160997,65,0.343741496,0.46875,F4 - vel 60
+4.226031746,57,0.230204081,0.46875,A3 - vel 60
+4.463537414,70,0.505192743,0.570312,A#4 - vel 73
+4.487482993,50,0.638548752,0.46875,D3 - vel 60
+4.710408163,58,0.388548752,0.46875,A#3 - vel 60
+4.952063492,62,0.342721088,0.46875,D4 - vel 60
+4.952063492,65,0.342721088,0.46875,F4 - vel 60
+4.979160997,70,0.510408163,0.570312,A#4 - vel 73
+5.192698412,58,0.441655328,0.46875,A#3 - vel 60
+5.470816326,65,0.319795918,0.46875,F4 - vel 60
+5.470816326,62,0.319795918,0.46875,D4 - vel 60
+5.500000000,70,0.421859410,0.46875,A#4 - vel 60
+5.706235827,58,0.240634920,0.46875,A#3 - vel 60
+5.964580498,45,0.691655328,0.46875,A2 - vel 60
+5.973945578,71,0.255215419,0.46875,B4 - vel 60
+6.203106575,60,0.345850340,0.46875,C4 - vel 60
+6.223945578,72,0.234376417,0.476562,C5 - vel 61
+6.446870748,65,0.360408163,0.46875,F4 - vel 60
+6.446870748,63,0.360408163,0.46875,D#4 - vel 60
+6.463537414,72,0.473945578,0.484375,C5 - vel 62
+6.695827664,60,0.358321995,0.46875,C4 - vel 60
+6.939569160,63,0.356258503,0.46875,D#4 - vel 60
+6.939569160,65,0.356258503,0.46875,F4 - vel 60
+6.947913832,72,0.473945578,0.5,C5 - vel 64
+7.186439909,60,0.270839002,0.46875,C4 - vel 60
+7.442698412,73,0.281247165,0.5,C#5 - vel 64
+7.473945578,46,0.690634920,0.46875,A#2 - vel 60
+7.703106575,58,0.409387755,0.46875,A#3 - vel 60
+7.708321995,74,0.260408163,0.507812,D5 - vel 65
+7.972902494,65,0.326054421,0.46875,F4 - vel 60
+7.972902494,62,0.326054421,0.46875,D4 - vel 60
+7.973945578,74,0.473968253,0.515625,D5 - vel 66
+8.189569160,58,0.377097505,0.46875,A#3 - vel 60
+8.453106575,74,0.494807256,0.539062,D5 - vel 69
+8.466666666,65,0.288526077,0.46875,F4 - vel 60
+8.466666666,62,0.288526077,0.46875,D4 - vel 60
+8.716666666,58,0.263537414,0.46875,A#3 - vel 60
+8.984353741,77,0.302086167,0.570312,F5 - vel 73
+8.988526077,41,0.820839002,0.46875,F2 - vel 60
+9.215623582,57,0.395827664,0.46875,A3 - vel 60
+9.260408163,75,0.354172335,0.46875,D#5 - vel 60
+9.493741496,63,0.235419501,0.46875,D#4 - vel 60
+9.496870748,60,0.297913832,0.46875,C4 - vel 60
+9.496870748,65,0.297913832,0.46875,F4 - vel 60
+9.714580498,57,0.393741496,0.46875,A3 - vel 60
+9.727074829,60,0.278117913,0.46875,C4 - vel 60
+9.981247165,65,0.333333333,0.46875,F4 - vel 60
+9.981247165,60,0.333333333,0.46875,C4 - vel 60
+9.990612244,63,0.243741496,0.46875,D#4 - vel 60
+10.184353741,57,0.262517006,0.46875,A3 - vel 60
+10.235396825,60,0.223968253,0.46875,C4 - vel 60
+10.458321995,77,0.791678004,0.46875,F5 - vel 60
+10.474988662,46,0.758344671,0.46875,A#2 - vel 60
+10.481247165,65,0.798956916,0.46875,F4 - vel 60
+10.710408163,58,0.416666666,0.46875,A#3 - vel 60
+10.971859410,62,0.308344671,0.46875,D4 - vel 60
+10.971859410,65,0.808344671,0.46875,F4 - vel 60
+11.203106575,58,0.367709750,0.46875,A#3 - vel 60
+11.218730158,79,0.265623582,0.46875,G5 - vel 60
+11.458321995,81,0.291678004,0.46875,A5 - vel 60
+11.473945578,62,0.306258503,0.46875,D4 - vel 60
+11.473945578,65,1.315623582,0.46875,F4 - vel 60
+11.708321995,58,0.346870748,0.46875,A#3 - vel 60
+11.718730158,82,0.260430839,0.46875,A#5 - vel 60
+11.979160997,82,0.291655328,0.46875,A#5 - vel 60
+11.987482993,51,0.739591836,0.46875,D#3 - vel 60
+12.202063492,57,0.389591836,0.46875,A3 - vel 60
+12.234353741,81,0.265646258,0.46875,A5 - vel 60
+12.460408163,65,0.812494331,0.46875,F4 - vel 60
+12.460408163,60,0.329160997,0.46875,C4 - vel 60
+12.479160997,79,0.244784580,0.46875,G5 - vel 60
+12.698956916,57,0.386439909,0.46875,A3 - vel 60
+12.708321995,77,0.276031746,0.46875,F5 - vel 60
+12.965623582,65,0.489569160,0.46875,F4 - vel 60
+12.968730158,75,0.281269841,0.46875,D#5 - vel 60
+12.983333333,60,0.339569160,0.46875,C4 - vel 60
+13.197913832,57,0.266666666,0.46875,A3 - vel 60
+13.213537414,72,0.229160997,0.46875,C5 - vel 60
+13.461451247,65,0.826031746,0.351562,F4 - vel 45
+13.463537414,69,0.213537414,0.46875,A4 - vel 60
+13.467687074,50,0.720839002,0.46875,D3 - vel 60
+13.692698412,70,0.234376417,0.46875,A#4 - vel 60
+13.700000000,58,0.393741496,0.46875,A#3 - vel 60
+13.932290249,70,0.468730158,0.46875,A#4 - vel 60
+13.978117913,65,0.817709750,0.46875,F4 - vel 60
+13.978117913,62,0.309365079,0.46875,D4 - vel 60
+14.203106575,58,0.441678004,0.46875,A#3 - vel 60
+14.411451247,70,0.453129251,0.476562,A#4 - vel 61
+14.483333333,65,1.220816326,0.46875,F4 - vel 60
+14.483333333,62,0.312494331,0.46875,D4 - vel 60
+14.723945578,58,0.232290249,0.46875,A#3 - vel 60
+14.869773242,71,0.281247165,0.492188,B4 - vel 63
+14.970816326,45,0.664580498,0.46875,A2 - vel 60
+15.151020408,72,0.255215419,0.5,C5 - vel 64
+15.194784580,60,0.331247165,0.46875,C4 - vel 60
+15.416666666,72,0.479160997,0.5,C5 - vel 64
+15.441655328,65,0.811451247,0.46875,F4 - vel 60
+15.451020408,63,0.289591836,0.46875,D#4 - vel 60
+15.687482993,60,0.333333333,0.46875,C4 - vel 60
+15.906235827,72,0.505215419,0.507812,C5 - vel 65
+15.937482993,65,0.597913832,0.46875,F4 - vel 60
+15.941655328,63,0.359365079,0.46875,D#4 - vel 60
+16.176031746,60,0.223968253,0.46875,C4 - vel 60
+16.416666666,73,0.281247165,0.523438,C#5 - vel 67
+16.428117913,46,0.739569160,0.46875,A#2 - vel 60
+16.538526077,65,0.677097505,0.351562,F4 - vel 45
+16.671859410,58,0.336462585,0.46875,A#3 - vel 60
+16.703106575,74,0.239591836,0.53125,D5 - vel 68
+16.944784580,65,0.779160997,0.46875,F4 - vel 60
+16.944784580,62,0.270839002,0.46875,D4 - vel 60
+16.947913832,74,0.463537414,0.539062,D5 - vel 69
+17.185396825,58,0.326054421,0.46875,A#3 - vel 60
+17.427074829,74,0.520839002,0.554688,D5 - vel 71
+17.455192743,65,1.057301587,0.46875,F4 - vel 60
+17.455192743,62,0.268752834,0.46875,D4 - vel 60
+17.672902494,58,0.253129251,0.46875,A#3 - vel 60
+17.966666666,53,0.936439909,0.46875,F3 - vel 60
+17.973945578,77,0.270839002,0.570312,F5 - vel 73
+18.195827664,57,0.380204081,0.46875,A3 - vel 60
+18.223945578,75,0.328117913,0.46875,D#5 - vel 60
+18.451020408,60,0.368752834,0.46875,C4 - vel 60
+18.451020408,65,0.368752834,0.46875,F4 - vel 60
+18.553106575,63,0.212517006,0.570312,D#4 - vel 73
+18.663537414,57,0.396870748,0.46875,A3 - vel 60
+18.761451247,60,0.244784580,0.570312,C4 - vel 73
+18.927074829,51,0.518752834,0.46875,D#3 - vel 60
+18.930204081,60,0.357278911,0.46875,C4 - vel 60
+18.930204081,65,0.357278911,0.46875,F4 - vel 60
+18.996870748,63,0.226031746,0.53125,D#4 - vel 68
+19.153106575,57,0.259387755,0.46875,A3 - vel 60
+19.222902494,60,0.272925170,0.5,C4 - vel 64
+19.429160997,50,1.266666666,0.46875,D3 - vel 60
+19.473945578,77,1.302086167,0.46875,F5 - vel 60
+19.583333333,58,0.446870748,0.46875,A#3 - vel 60
+19.667687074,58,0.877097505,0.46875,A#3 - vel 60
+19.945827664,65,0.366666666,0.46875,F4 - vel 60
+19.945827664,62,0.366666666,0.46875,D4 - vel 60
+20.186439909,58,0.781247165,0.46875,A#3 - vel 60
+20.473945578,65,0.329160997,0.46875,F4 - vel 60
+20.473945578,62,0.329160997,0.46875,D4 - vel 60
+20.717687074,58,0.264603174,0.46875,A#3 - vel 60
+20.776031746,79,0.072925170,0.46875,G5 - vel 60
+20.848956916,77,0.088526077,0.46875,F5 - vel 60
+20.927074829,76,0.083333333,0.46875,E5 - vel 60
+20.967687074,59,0.682312925,0.46875,B3 - vel 60
+21.000000000,43,1.333333333,0.46875,G2 - vel 60
+21.005192743,77,0.109387755,0.46875,F5 - vel 60
+21.098956916,80,0.546870748,0.46875,G#5 - vel 60
+21.240612244,59,0.890634920,0.46875,B3 - vel 60
+21.518730158,65,0.326054421,0.46875,F4 - vel 60
+21.518730158,62,0.326054421,0.46875,D4 - vel 60
+21.619773242,79,0.484376417,0.46875,G5 - vel 60
+21.742698412,59,0.753129251,0.46875,B3 - vel 60
+22.020816326,65,0.308344671,0.46875,F4 - vel 60
+22.020816326,62,0.308344671,0.46875,D4 - vel 60
+22.093741496,74,0.489591836,0.46875,D5 - vel 60
+22.264580498,59,0.231247165,0.46875,B3 - vel 60
+22.504149659,48,1.493764172,0.46875,C3 - vel 60
+22.514580498,60,0.508321995,0.46875,C4 - vel 60
+22.588526077,77,0.453129251,0.46875,F5 - vel 60
+22.758321995,58,0.395827664,0.46875,A#3 - vel 60
+23.020816326,76,0.489591836,0.46875,E5 - vel 60
+23.028117913,60,0.326031746,0.46875,C4 - vel 60
+23.028117913,67,0.326031746,0.46875,G4 - vel 60
+23.045827664,64,0.454172335,0.46875,E4 - vel 60
+23.260408163,58,0.371882086,0.46875,A#3 - vel 60
+23.492698412,64,0.296870748,0.46875,E4 - vel 60
+23.500000000,72,0.510408163,0.46875,C5 - vel 60
+23.500000000,67,0.489569160,0.46875,G4 - vel 60
+23.510408163,60,0.310408163,0.46875,C4 - vel 60
+23.739569160,58,0.333333333,0.46875,A#3 - vel 60
+23.980204081,69,0.985419501,0.46875,A4 - vel 60
+24.009365079,42,1.355215419,0.46875,F#2 - vel 60
+24.015623582,75,0.963537414,0.46875,D#5 - vel 60
+24.015623582,63,0.285396825,0.46875,D#4 - vel 60
+24.022902494,60,0.288548752,0.46875,C4 - vel 60
+24.227074829,57,0.416666666,0.46875,A3 - vel 60
+24.493741496,63,0.392698412,0.46875,D#4 - vel 60
+24.502063492,60,0.345850340,0.46875,C4 - vel 60
+24.737482993,57,0.338548752,0.46875,A3 - vel 60
+24.953106575,74,0.786462585,0.46875,D5 - vel 60
+24.961451247,70,0.571882086,0.46875,A#4 - vel 60
+24.998956916,62,0.296870748,0.46875,D4 - vel 60
+25.011451247,58,0.253129251,0.46875,A#3 - vel 60
+25.020816326,43,0.525011337,0.46875,G2 - vel 60
+25.226031746,55,0.412494331,0.46875,G3 - vel 60
+25.518730158,67,0.725011337,0.46875,G4 - vel 60
+25.524988662,63,0.780204081,0.46875,D#4 - vel 60
+25.539569160,39,0.830204081,0.46875,D#2 - vel 60
+25.541655328,67,0.748956916,0.46875,G4 - vel 60
+25.723945578,72,0.250000000,0.492188,C5 - vel 63
+25.963537414,75,0.265623582,0.5,D#5 - vel 64
+26.213537414,79,0.286462585,0.5,G5 - vel 64
+26.250000000,63,0.261451247,0.507812,D#4 - vel 65
+26.485396825,51,0.657301587,0.53125,D#3 - vel 68
+26.489569160,75,0.260430839,0.5,D#5 - vel 64
+26.519773242,67,0.230226757,0.523438,G4 - vel 67
+26.711451247,63,0.263537414,0.546875,D#4 - vel 70
+26.729160997,72,0.270839002,0.507812,C5 - vel 65
+26.979160997,62,0.965623582,0.570312,D4 - vel 73
+26.987482993,53,0.356258503,0.570312,F3 - vel 73
+27.000000000,70,0.984353741,0.515625,A#4 - vel 66
+27.481247165,53,0.377074829,0.609375,F3 - vel 78
+27.954149659,65,0.269795918,0.570312,F4 - vel 73
+27.957278911,53,0.350000000,0.65625,F3 - vel 84
+27.968730158,74,0.255215419,0.570312,D5 - vel 73
+28.197913832,72,0.296870748,0.570312,C5 - vel 73
+28.235396825,63,0.268752834,0.570312,D#4 - vel 73
+28.490612244,46,0.756258503,0.703125,A#2 - vel 90
+28.500000000,70,0.447913832,0.554688,A#4 - vel 71
+28.528117913,62,0.405215419,0.703125,D4 - vel 90
+29.000000000,62,0.473945578,0.554688,D4 - vel 71
+29.021859410,58,0.478140589,0.703125,A#3 - vel 90
+29.051020408,58,0.844807256,0.703125,A#3 - vel 90
+29.468730158,65,0.468752834,0.554688,F4 - vel 71
+29.483333333,62,0.487482993,0.65625,D4 - vel 84
+29.579160997,53,0.639569160,0.65625,F3 - vel 84
+29.927074829,70,0.541655328,0.578125,A#4 - vel 74
+29.973945578,65,0.482290249,0.609375,F4 - vel 78
+30.081247165,50,0.598956916,0.609375,D3 - vel 78
+30.463537414,65,0.453129251,0.5625,F4 - vel 72
+30.467687074,62,0.477097505,0.5625,D4 - vel 72
+30.534353741,53,0.701043083,0.5625,F3 - vel 72
+30.916666666,70,0.572902494,0.507812,A#4 - vel 65
+30.963537414,65,0.508321995,0.507812,F4 - vel 65
+31.024988662,50,0.769795918,0.507812,D3 - vel 65
+31.474988662,70,0.995827664,0.46875,A#4 - vel 60
+31.484353741,74,1.046893424,0.46875,D5 - vel 60
+31.605192743,46,0.879160997,0.46875,A#2 - vel 60
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/mozart/mix.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,247 @@
+1.447913832	2.968730158	587.3295358348151
+1.520816326	2.301020407	116.54094037952248
+1.796870748	2.227074829	233.08188075904496
+2.058321995	2.348956915	293.6647679174076
+2.058321995	2.348956915	349.2282314330039
+2.266666666	2.6541496589999998	233.08188075904496
+2.521859410	2.840612244	293.6647679174076
+2.521859410	2.840612244	349.2282314330039
+2.754149659	3.085396824	233.08188075904496
+2.973945578	3.484353741	698.4564628660078
+3.021859410	3.864580498	174.61411571650194
+3.273945578	3.640612244	220.0
+3.458321995	3.984353741	622.2539674441618
+3.540612244	3.868730157	349.2282314330039
+3.540612244	3.868730157	261.6255653005986
+3.747913832	4.137482992	220.0
+3.963537414	4.468730157	523.2511306011972
+3.979160997	4.322902493	261.6255653005986
+3.979160997	4.322902493	349.2282314330039
+4.226031746	4.456235827	220.0
+4.463537414	4.968730157	466.1637615180899
+4.487482993	5.126031745000001	146.8323839587038
+4.710408163	5.0989569150000005	233.08188075904496
+4.952063492	5.29478458	293.6647679174076
+4.952063492	5.29478458	349.2282314330039
+4.979160997	5.48956916	466.1637615180899
+5.192698412	5.634353740000001	233.08188075904496
+5.470816326	5.790612243999999	349.2282314330039
+5.470816326	5.790612243999999	293.6647679174076
+5.500000000	5.92185941	466.1637615180899
+5.706235827	5.946870747	233.08188075904496
+5.964580498	6.656235826	110.0
+5.973945578	6.229160997	493.8833012561241
+6.203106575	6.548956915	261.6255653005986
+6.223945578	6.458321995	523.2511306011972
+6.446870748	6.807278911	349.2282314330039
+6.446870748	6.807278911	311.1269837220809
+6.463537414	6.9374829920000005	523.2511306011972
+6.695827664	7.054149659	261.6255653005986
+6.939569160	7.295827663	311.1269837220809
+6.939569160	7.295827663	349.2282314330039
+6.947913832	7.421859410000001	523.2511306011972
+7.186439909	7.4572789109999995	261.6255653005986
+7.442698412	7.723945577	554.3652619537442
+7.473945578	8.164580498000001	116.54094037952248
+7.703106575	8.11249433	233.08188075904496
+7.708321995	7.9687301580000005	587.3295358348151
+7.972902494	8.298956915	349.2282314330039
+7.972902494	8.298956915	293.6647679174076
+7.973945578	8.447913831000001	587.3295358348151
+8.189569160	8.566666665	233.08188075904496
+8.453106575	8.947913831	587.3295358348151
+8.466666666	8.755192743	349.2282314330039
+8.466666666	8.755192743	293.6647679174076
+8.716666666	8.98020408	233.08188075904496
+8.984353741	9.286439908	698.4564628660078
+8.988526077	9.809365078999999	87.30705785825097
+9.215623582	9.611451246	220.0
+9.260408163	9.614580497999999	622.2539674441618
+9.493741496	9.729160997000001	311.1269837220809
+9.496870748	9.79478458	261.6255653005986
+9.496870748	9.79478458	349.2282314330039
+9.714580498	10.108321994	220.0
+9.727074829	10.005192741999998	261.6255653005986
+9.981247165	10.314580498	349.2282314330039
+9.981247165	10.314580498	261.6255653005986
+9.990612244	10.23435374	311.1269837220809
+10.184353741	10.446870747	220.0
+10.235396825	10.459365078000001	261.6255653005986
+10.458321995	11.249999999	698.4564628660078
+10.474988662	11.233333333	116.54094037952248
+10.481247165	11.280204080999999	349.2282314330039
+10.710408163	11.127074829	233.08188075904496
+10.971859410	11.280204081	293.6647679174076
+10.971859410	11.780204081	349.2282314330039
+11.203106575	11.570816325	233.08188075904496
+11.218730158	11.48435374	783.9908719634985
+11.458321995	11.749999999	880.0
+11.473945578	11.780204081	293.6647679174076
+11.473945578	12.789569160000001	349.2282314330039
+11.708321995	12.055192743000001	233.08188075904496
+11.718730158	11.979160997	932.3275230361799
+11.979160997	12.270816324999998	932.3275230361799
+11.987482993	12.727074829000001	155.56349186104046
+12.202063492	12.591655328	220.0
+12.234353741	12.499999999	880.0
+12.460408163	13.272902494	349.2282314330039
+12.460408163	12.789569160000001	261.6255653005986
+12.479160997	12.723945576999999	783.9908719634985
+12.698956916	13.085396825	220.0
+12.708321995	12.984353741	698.4564628660078
+12.965623582	13.455192742	349.2282314330039
+12.968730158	13.249999999	622.2539674441618
+12.983333333	13.322902492999999	261.6255653005986
+13.197913832	13.464580498	220.0
+13.213537414	13.442698410999999	523.2511306011972
+13.461451247	14.287482993	349.2282314330039
+13.463537414	13.677074827999999	440.0
+13.467687074	14.188526076	146.8323839587038
+13.692698412	13.927074829	466.1637615180899
+13.700000000	14.093741496	233.08188075904496
+13.932290249	14.401020406999999	466.1637615180899
+13.978117913	14.795827663	349.2282314330039
+13.978117913	14.287482992000001	293.6647679174076
+14.203106575	14.644784579	233.08188075904496
+14.411451247	14.864580498	466.1637615180899
+14.483333333	15.704149658999999	349.2282314330039
+14.483333333	14.795827663999999	293.6647679174076
+14.723945578	14.956235827	233.08188075904496
+14.869773242	15.151020407	493.8833012561241
+14.970816326	15.635396823999999	110.0
+15.151020408	15.406235827000001	523.2511306011972
+15.194784580	15.526031745	261.6255653005986
+15.416666666	15.895827662999999	523.2511306011972
+15.441655328	16.253106575	349.2282314330039
+15.451020408	15.740612244	311.1269837220809
+15.687482993	16.020816326	261.6255653005986
+15.906235827	16.411451246	523.2511306011972
+15.937482993	16.535396825	349.2282314330039
+15.941655328	16.301020407	311.1269837220809
+16.176031746	16.399999999	261.6255653005986
+16.416666666	16.697913831	554.3652619537442
+16.428117913	17.167687073	116.54094037952248
+16.538526077	17.215623582	349.2282314330039
+16.671859410	17.008321995	233.08188075904496
+16.703106575	16.942698411	587.3295358348151
+16.944784580	17.723945577	349.2282314330039
+16.944784580	17.215623582	293.6647679174076
+16.947913832	17.411451246000002	587.3295358348151
+17.185396825	17.511451246	233.08188075904496
+17.427074829	17.947913830999997	587.3295358348151
+17.455192743	18.512494330000003	349.2282314330039
+17.455192743	17.723945577000002	293.6647679174076
+17.672902494	17.926031745	233.08188075904496
+17.966666666	18.903106575	174.61411571650194
+17.973945578	18.244784579999997	698.4564628660078
+18.195827664	18.576031744999998	220.0
+18.223945578	18.552063491	622.2539674441618
+18.451020408	18.819773242	261.6255653005986
+18.451020408	18.819773242	349.2282314330039
+18.553106575	18.765623581	311.1269837220809
+18.663537414	19.060408162	220.0
+18.761451247	19.006235827	261.6255653005986
+18.927074829	19.445827663	155.56349186104046
+18.930204081	19.287482992	261.6255653005986
+18.930204081	19.287482992	349.2282314330039
+18.996870748	19.222902494	311.1269837220809
+19.153106575	19.412494329999998	220.0
+19.222902494	19.495827664	261.6255653005986
+19.429160997	20.695827663	146.8323839587038
+19.473945578	20.776031744999997	698.4564628660078
+19.583333333	20.030204080999997	233.08188075904496
+19.667687074	20.544784579	233.08188075904496
+19.945827664	20.31249433	349.2282314330039
+19.945827664	20.31249433	293.6647679174076
+20.186439909	20.967687074	233.08188075904496
+20.473945578	20.803106574999997	349.2282314330039
+20.473945578	20.803106574999997	293.6647679174076
+20.717687074	20.982290248	233.08188075904496
+20.776031746	20.848956916000002	783.9908719634985
+20.848956916	20.937482993	698.4564628660078
+20.927074829	21.010408161999997	659.2551138257398
+20.967687074	21.649999999000002	246.94165062806206
+21.000000000	22.333333333	97.99885899543733
+21.005192743	21.114580498	698.4564628660078
+21.098956916	21.645827664	830.6093951598903
+21.240612244	22.131247164	246.94165062806206
+21.518730158	21.844784579	349.2282314330039
+21.518730158	21.844784579	293.6647679174076
+21.619773242	22.104149659	783.9908719634985
+21.742698412	22.495827663	246.94165062806206
+22.020816326	22.329160997	349.2282314330039
+22.020816326	22.329160997	293.6647679174076
+22.093741496	22.583333332	587.3295358348151
+22.264580498	22.495827663	246.94165062806206
+22.504149659	23.997913830999998	130.8127826502993
+22.514580498	23.022902493	261.6255653005986
+22.588526077	23.041655328	698.4564628660078
+22.758321995	23.154149658999998	233.08188075904496
+23.020816326	23.510408161999997	659.2551138257398
+23.028117913	23.354149659	261.6255653005986
+23.028117913	23.354149659	391.99543598174927
+23.045827664	23.499999999	329.6275569128699
+23.260408163	23.632290249	233.08188075904496
+23.492698412	23.78956916	329.6275569128699
+23.500000000	24.010408163	523.2511306011972
+23.500000000	23.98956916	391.99543598174927
+23.510408163	23.820816326000003	261.6255653005986
+23.739569160	24.072902492999997	233.08188075904496
+23.980204081	24.965623582	440.0
+24.009365079	25.364580498	92.4986056779086
+24.015623582	24.979160996	622.2539674441618
+24.015623582	24.301020407	311.1269837220809
+24.022902494	24.311451246	261.6255653005986
+24.227074829	24.643741495	220.0
+24.493741496	24.886439908	311.1269837220809
+24.502063492	24.847913832	261.6255653005986
+24.737482993	25.076031745	220.0
+24.953106575	25.73956916	587.3295358348151
+24.961451247	25.533333332999998	466.1637615180899
+24.998956916	25.295827664	293.6647679174076
+25.011451247	25.264580498	233.08188075904496
+25.020816326	25.545827662999997	97.99885899543733
+25.226031746	25.638526077	195.99771799087463
+25.518730158	26.243741495000002	391.99543598174927
+25.524988662	26.305192743	311.1269837220809
+25.539569160	26.369773241	77.78174593052023
+25.541655328	26.290612244000002	391.99543598174927
+25.723945578	25.973945578	523.2511306011972
+25.963537414	26.229160996	622.2539674441618
+26.213537414	26.499999999	783.9908719634985
+26.250000000	26.511451247	311.1269837220809
+26.485396825	27.142698411999998	155.56349186104046
+26.489569160	26.749999999	622.2539674441618
+26.519773242	26.749999999	391.99543598174927
+26.711451247	26.974988661	311.1269837220809
+26.729160997	26.999999999	523.2511306011972
+26.979160997	27.944784579	293.6647679174076
+26.987482993	27.343741496	174.61411571650194
+27.000000000	27.984353741	466.1637615180899
+27.481247165	27.858321994	174.61411571650194
+27.954149659	28.223945577	349.2282314330039
+27.957278911	28.307278911	174.61411571650194
+27.968730158	28.223945577	587.3295358348151
+28.197913832	28.49478458	523.2511306011972
+28.235396825	28.504149659	311.1269837220809
+28.490612244	29.246870747000003	116.54094037952248
+28.500000000	28.947913832	466.1637615180899
+28.528117913	28.933333332	293.6647679174076
+29.000000000	29.473945578	293.6647679174076
+29.021859410	29.499999999	233.08188075904496
+29.051020408	29.895827664	233.08188075904496
+29.468730158	29.937482992	349.2282314330039
+29.483333333	29.970816326	293.6647679174076
+29.579160997	30.218730157	174.61411571650194
+29.927074829	30.468730157	466.1637615180899
+29.973945578	30.456235826999997	349.2282314330039
+30.081247165	30.680204081	146.8323839587038
+30.463537414	30.916666665	349.2282314330039
+30.467687074	30.944784579	293.6647679174076
+30.534353741	31.235396824	174.61411571650194
+30.916666666	31.489569160000002	466.1637615180899
+30.963537414	31.471859409	349.2282314330039
+31.024988662	31.794784579999998	146.8323839587038
+31.474988662	32.470816326	466.1637615180899
+31.484353741	32.531247164999996	587.3295358348151
+31.605192743	32.48435374	116.54094037952248
Binary file testdata/TRIOS-groundtruth/mozart/mix.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/mozart/piano.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,146 @@
+1.5208333333333333	2.301041666666667	116.54094037952248
+1.796875	2.2270833333333333	233.08188075904496
+2.058333333333333	2.3489583333333335	349.2282314330039
+2.058333333333333	2.3489583333333335	293.6647679174076
+2.2666666666666666	2.654166666666667	233.08188075904496
+2.521875	2.840625	349.2282314330039
+2.521875	2.840625	293.6647679174076
+2.754166666666667	3.0854166666666667	233.08188075904496
+3.021875	3.8645833333333335	174.61411571650194
+3.2739583333333333	3.640625	220.0
+3.540625	3.86875	261.6255653005986
+3.540625	3.86875	349.2282314330039
+3.747916666666667	4.1375	220.0
+3.9791666666666665	4.322916666666667	349.2282314330039
+3.9791666666666665	4.322916666666667	261.6255653005986
+4.226041666666666	4.45625	220.0
+4.4875	5.126041666666667	146.8323839587038
+4.710416666666666	5.098958333333333	233.08188075904496
+4.952083333333333	5.294791666666667	349.2282314330039
+4.952083333333333	5.294791666666667	293.6647679174076
+5.192708333333333	5.634375	233.08188075904496
+5.470833333333333	5.790625	293.6647679174076
+5.470833333333333	5.790625	349.2282314330039
+5.70625	5.946875	233.08188075904496
+5.964583333333334	6.65625	110.0
+6.203125	6.548958333333333	261.6255653005986
+6.446875	6.807291666666667	311.1269837220809
+6.446875	6.807291666666667	349.2282314330039
+6.695833333333334	7.054166666666666	261.6255653005986
+6.939583333333333	7.295833333333333	349.2282314330039
+6.939583333333333	7.295833333333333	311.1269837220809
+7.186458333333333	7.457291666666666	261.6255653005986
+7.473958333333333	8.164583333333333	116.54094037952248
+7.703125	8.1125	233.08188075904496
+7.972916666666666	8.298958333333333	293.6647679174076
+7.972916666666666	8.298958333333333	349.2282314330039
+8.189583333333333	8.566666666666666	233.08188075904496
+8.466666666666667	8.755208333333334	293.6647679174076
+8.466666666666667	8.755208333333334	349.2282314330039
+8.716666666666667	8.980208333333334	233.08188075904496
+8.988541666666666	9.809375	87.30705785825097
+9.215625	9.611458333333333	220.0
+9.496875	9.794791666666667	349.2282314330039
+9.496875	9.794791666666667	261.6255653005986
+9.714583333333334	10.108333333333333	220.0
+9.98125	10.314583333333333	261.6255653005986
+9.98125	10.314583333333333	349.2282314330039
+10.184375	10.446875	220.0
+10.475	11.233333333333333	116.54094037952248
+10.710416666666667	11.127083333333333	233.08188075904496
+10.971875	11.280208333333333	349.2282314330039
+10.971875	11.280208333333333	293.6647679174076
+11.203125	11.570833333333333	233.08188075904496
+11.473958333333334	11.780208333333333	349.2282314330039
+11.473958333333334	11.780208333333333	293.6647679174076
+11.708333333333334	12.055208333333333	233.08188075904496
+11.9875	12.727083333333333	155.56349186104046
+12.202083333333333	12.591666666666667	220.0
+12.460416666666667	12.789583333333333	261.6255653005986
+12.460416666666667	12.789583333333333	349.2282314330039
+12.698958333333334	13.085416666666667	220.0
+12.965625	13.272916666666667	349.2282314330039
+12.983333333333333	13.322916666666666	261.6255653005986
+13.197916666666666	13.464583333333334	220.0
+13.467708333333333	14.188541666666667	146.8323839587038
+13.7	14.09375	233.08188075904496
+13.978125	14.2875	293.6647679174076
+13.978125	14.2875	349.2282314330039
+14.203125	14.644791666666666	233.08188075904496
+14.483333333333333	14.795833333333333	293.6647679174076
+14.483333333333333	14.795833333333333	349.2282314330039
+14.723958333333334	14.95625	233.08188075904496
+14.970833333333333	15.635416666666666	110.0
+15.194791666666667	15.526041666666666	261.6255653005986
+15.441666666666666	15.704166666666667	349.2282314330039
+15.451041666666667	15.740625	311.1269837220809
+15.6875	16.020833333333332	261.6255653005986
+15.9375	16.253125	349.2282314330039
+15.941666666666666	16.301041666666666	311.1269837220809
+16.176041666666666	16.4	261.6255653005986
+16.428125	17.167708333333334	116.54094037952248
+16.671875	17.008333333333333	233.08188075904496
+16.944791666666667	17.215625	293.6647679174076
+16.944791666666667	17.215625	349.2282314330039
+17.185416666666665	17.511458333333334	233.08188075904496
+17.455208333333335	17.723958333333332	293.6647679174076
+17.455208333333335	17.723958333333332	349.2282314330039
+17.672916666666666	17.926041666666666	233.08188075904496
+17.966666666666665	18.903125	174.61411571650194
+18.195833333333333	18.576041666666665	220.0
+18.451041666666665	18.819791666666667	349.2282314330039
+18.451041666666665	18.819791666666667	261.6255653005986
+18.663541666666667	19.060416666666665	220.0
+18.927083333333332	19.445833333333333	155.56349186104046
+18.930208333333333	19.2875	349.2282314330039
+18.930208333333333	19.2875	261.6255653005986
+19.153125	19.4125	220.0
+19.429166666666667	20.695833333333333	146.8323839587038
+19.667708333333334	20.030208333333334	233.08188075904496
+19.945833333333333	20.3125	293.6647679174076
+19.945833333333333	20.3125	349.2282314330039
+20.186458333333334	20.544791666666665	233.08188075904496
+20.473958333333332	20.803125	293.6647679174076
+20.473958333333332	20.803125	349.2282314330039
+20.717708333333334	20.982291666666665	233.08188075904496
+21	22.333333333333332	97.99885899543733
+21.240625	21.65	246.94165062806206
+21.51875	21.844791666666666	293.6647679174076
+21.51875	21.844791666666666	349.2282314330039
+21.742708333333333	22.13125	246.94165062806206
+22.020833333333332	22.329166666666666	293.6647679174076
+22.020833333333332	22.329166666666666	349.2282314330039
+22.264583333333334	22.495833333333334	246.94165062806206
+22.504166666666666	23.997916666666665	130.8127826502993
+22.758333333333333	23.154166666666665	233.08188075904496
+23.028125	23.354166666666668	391.99543598174927
+23.028125	23.354166666666668	261.6255653005986
+23.260416666666668	23.632291666666667	233.08188075904496
+23.492708333333333	23.789583333333333	329.6275569128699
+23.510416666666668	23.820833333333333	261.6255653005986
+23.739583333333332	24.072916666666668	233.08188075904496
+24.009375	25.364583333333332	92.4986056779086
+24.015625	24.301041666666666	311.1269837220809
+24.022916666666667	24.311458333333334	261.6255653005986
+24.227083333333333	24.64375	220.0
+24.49375	24.886458333333334	311.1269837220809
+24.502083333333335	24.847916666666666	261.6255653005986
+24.7375	25.076041666666665	220.0
+24.998958333333334	25.295833333333334	293.6647679174076
+25.011458333333334	25.264583333333334	233.08188075904496
+25.020833333333332	25.545833333333334	97.99885899543733
+25.226041666666667	25.638541666666665	195.99771799087463
+25.51875	26.290625	391.99543598174927
+25.525	26.305208333333333	311.1269837220809
+25.539583333333333	26.369791666666668	77.78174593052023
+26.485416666666666	27.142708333333335	155.56349186104046
+26.9875	27.34375	174.61411571650194
+27.48125	27.858333333333334	174.61411571650194
+27.957291666666666	28.307291666666668	174.61411571650194
+28.490625	29.246875	116.54094037952248
+29.051041666666666	29.895833333333332	233.08188075904496
+29.579166666666666	30.21875	174.61411571650194
+30.08125	30.680208333333333	146.8323839587038
+30.534375	31.235416666666666	174.61411571650194
+31.025	31.794791666666665	146.8323839587038
+31.605208333333334	32.484375	116.54094037952248
Binary file testdata/TRIOS-groundtruth/mozart/piano.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/mozart/viola.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,32 @@
+9.49375	9.729166666666666	311.1269837220809
+9.727083333333333	10.005208333333334	261.6255653005986
+9.990625	10.234375	311.1269837220809
+10.235416666666667	10.459375	261.6255653005986
+10.48125	13.455208333333333	349.2282314330039
+13.461458333333333	16.535416666666666	349.2282314330039
+16.538541666666667	18.5125	349.2282314330039
+18.553125	18.765625	311.1269837220809
+18.761458333333334	19.00625	261.6255653005986
+18.996875	19.222916666666666	311.1269837220809
+19.222916666666666	19.495833333333334	261.6255653005986
+19.583333333333332	20.967708333333334	233.08188075904496
+20.967708333333334	22.495833333333334	246.94165062806206
+22.514583333333334	23.022916666666667	261.6255653005986
+23.045833333333334	23.5	329.6275569128699
+23.5	23.989583333333332	391.99543598174927
+23.980208333333334	24.965625	440.0
+24.961458333333333	25.533333333333335	466.1637615180899
+25.541666666666668	26.24375	391.99543598174927
+26.25	26.511458333333334	311.1269837220809
+26.519791666666666	26.75	391.99543598174927
+26.711458333333333	26.975	311.1269837220809
+26.979166666666668	27.944791666666667	293.6647679174076
+27.954166666666666	28.223958333333332	349.2282314330039
+28.235416666666666	28.504166666666666	311.1269837220809
+28.528125	28.933333333333334	293.6647679174076
+29.021875	29.5	233.08188075904496
+29.483333333333334	29.970833333333335	293.6647679174076
+29.973958333333332	30.45625	349.2282314330039
+30.467708333333334	30.944791666666667	293.6647679174076
+30.963541666666668	31.471875	349.2282314330039
+31.475	32.47083333333333	466.1637615180899
Binary file testdata/TRIOS-groundtruth/mozart/viola.mid has changed
--- a/testdata/TRIOS-groundtruth/schubert.csv	Thu May 29 15:18:14 2014 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,402 +0,0 @@
-0.563537414,63,0.609365079,0.351562,D#4 - vel 45
-0.563537414,55,0.609365079,0.351562,G3 - vel 45
-0.587482993,36,0.683333333,0.351562,C2 - vel 45
-1.250000000,55,0.546870748,0.351562,G3 - vel 45
-1.250000000,63,0.546870748,0.351562,D#4 - vel 45
-1.269773242,48,0.612517006,0.351562,C3 - vel 45
-1.874988662,55,0.547913832,0.351562,G3 - vel 45
-1.874988662,63,0.547913832,0.351562,D#4 - vel 45
-1.886439909,48,0.655215419,0.351562,C3 - vel 45
-2.500000000,63,0.517687074,0.492188,D#4 - vel 63
-2.500000000,55,0.517687074,0.492188,G3 - vel 63
-2.551020408,48,0.430226757,0.492188,C3 - vel 63
-2.997913832,41,0.258321995,0.351562,F2 - vel 45
-3.001020408,56,0.157301587,0.351562,G#3 - vel 45
-3.001020408,65,0.157301587,0.351562,F4 - vel 45
-3.163537414,48,0.505192743,0.351562,C3 - vel 45
-3.174988662,63,0.566666666,0.351562,D#4 - vel 45
-3.174988662,55,0.566666666,0.351562,G3 - vel 45
-3.738526077,48,0.621882086,0.351562,C3 - vel 45
-3.802063492,63,0.547936507,0.351562,D#4 - vel 45
-3.802063492,55,0.547936507,0.351562,G3 - vel 45
-4.365623582,48,0.644784580,0.351562,C3 - vel 45
-4.394784580,63,0.547913832,0.351562,D#4 - vel 45
-4.394784580,55,0.547913832,0.351562,G3 - vel 45
-5.000000000,63,0.453106575,0.492188,D#4 - vel 63
-5.000000000,55,0.453106575,0.492188,G3 - vel 63
-5.018730158,48,0.450000000,0.492188,C3 - vel 63
-5.444784580,65,0.151043083,0.351562,F4 - vel 45
-5.444784580,56,0.151043083,0.351562,G#3 - vel 45
-5.480204081,41,0.232290249,0.351562,F2 - vel 45
-5.593741496,79,1.312494331,0.351562,G5 - vel 45
-5.593741496,67,1.312494331,0.351562,G4 - vel 45
-5.593741496,55,0.609365079,0.351562,G3 - vel 45
-5.593741496,51,0.661451247,0.351562,D#3 - vel 45
-5.593741496,48,0.661451247,0.351562,C3 - vel 45
-5.595827664,63,0.607278911,0.351562,D#4 - vel 45
-5.595827664,55,0.659365079,0.351562,G3 - vel 45
-5.657278911,48,0.663537414,0.351562,C3 - vel 45
-6.263537414,55,0.600000000,0.351562,G3 - vel 45
-6.286439909,55,0.614580498,0.351562,G3 - vel 45
-6.286439909,51,0.614580498,0.351562,D#3 - vel 45
-6.286439909,48,0.614580498,0.351562,C3 - vel 45
-6.861451247,63,1.463537414,0.492188,D#4 - vel 63
-6.932290249,79,1.223945578,0.351562,G5 - vel 45
-6.932290249,67,1.223945578,0.351562,G4 - vel 45
-6.932290249,55,0.624988662,0.351562,G3 - vel 45
-6.932290249,51,0.624988662,0.351562,D#3 - vel 45
-6.932290249,48,0.624988662,0.351562,C3 - vel 45
-7.578117913,55,0.593741496,0.351562,G3 - vel 45
-7.578117913,51,0.593741496,0.351562,D#3 - vel 45
-7.578117913,48,0.593741496,0.351562,C3 - vel 45
-8.187482993,80,0.229183673,0.351562,G#5 - vel 45
-8.187482993,72,1.781247165,0.351562,C5 - vel 45
-8.187482993,56,0.630204081,0.351562,G#3 - vel 45
-8.187482993,53,0.630204081,0.351562,F3 - vel 45
-8.187482993,48,0.630204081,0.351562,C3 - vel 45
-8.333333333,82,0.296870748,0.351562,A#5 - vel 45
-8.505192743,84,1.473968253,0.351562,C6 - vel 45
-8.655192743,56,0.777097505,0.351562,G#3 - vel 45
-8.854149659,56,0.722925170,0.351562,G#3 - vel 45
-8.854149659,53,0.578140589,0.351562,F3 - vel 45
-8.854149659,48,0.578140589,0.351562,C3 - vel 45
-9.290612244,65,1.171882086,0.492188,F4 - vel 63
-9.479160997,56,0.510408163,0.351562,G#3 - vel 45
-9.479160997,53,0.510408163,0.351562,F3 - vel 45
-9.479160997,48,0.510408163,0.351562,C3 - vel 45
-10.031247165,82,0.609365079,0.351562,A#5 - vel 45
-10.031247165,70,0.609365079,0.351562,A#4 - vel 45
-10.031247165,56,0.557278911,0.351562,G#3 - vel 45
-10.031247165,53,0.557278911,0.351562,F3 - vel 45
-10.031247165,48,0.557278911,0.351562,C3 - vel 45
-10.294784580,62,0.342698412,0.351562,D4 - vel 45
-10.343741496,80,0.484376417,0.351562,G#5 - vel 45
-10.343741496,68,0.484376417,0.351562,G#4 - vel 45
-10.643741496,63,0.657278911,0.351562,D#4 - vel 45
-10.651020408,79,1.218752834,0.351562,G5 - vel 45
-10.651020408,67,1.218752834,0.351562,G4 - vel 45
-10.651020408,55,0.567709750,0.351562,G3 - vel 45
-10.651020408,51,0.567709750,0.351562,D#3 - vel 45
-10.651020408,48,0.567709750,0.351562,C3 - vel 45
-11.206235827,55,0.668752834,0.351562,G3 - vel 45
-11.235396825,55,0.807301587,0.351562,G3 - vel 45
-11.260408163,87,0.614580498,0.46875,D#6 - vel 60
-11.260408163,75,0.614580498,0.46875,D#5 - vel 60
-11.260408163,55,1.203129251,0.351562,G3 - vel 45
-11.260408163,51,0.614580498,0.351562,D#3 - vel 45
-11.260408163,48,0.614580498,0.351562,C3 - vel 45
-11.850000000,65,0.907278911,0.492188,F4 - vel 63
-11.885396825,83,0.239591836,0.5625,B5 - vel 72
-11.885396825,71,0.583333333,0.5625,B4 - vel 72
-11.885396825,55,0.908344671,0.5625,G3 - vel 72
-11.885396825,53,0.578140589,0.570312,F3 - vel 73
-11.885396825,50,0.578140589,0.570312,D3 - vel 73
-11.885396825,43,0.578140589,0.5625,G2 - vel 72
-11.911451247,68,0.588548752,0.46875,G#4 - vel 60
-12.031247165,84,0.177074829,0.5625,C6 - vel 72
-12.130204081,83,0.182290249,0.53125,B5 - vel 68
-12.218730158,84,0.161473922,0.5,C6 - vel 64
-12.322902494,83,0.437505668,0.492188,B5 - vel 63
-12.395827664,84,0.364580498,0.460938,C6 - vel 59
-12.474988662,67,0.366666666,0.570312,G4 - vel 73
-12.479160997,55,0.572902494,0.46875,G3 - vel 60
-12.479160997,53,0.572902494,0.46875,F3 - vel 60
-12.479160997,50,0.567709750,0.46875,D3 - vel 60
-12.479160997,43,0.572902494,0.46875,G2 - vel 60
-12.483333333,63,0.328117913,0.492188,D#4 - vel 63
-12.781247165,81,0.286439909,0.429688,A5 - vel 55
-12.788526077,62,0.305215419,0.351562,D4 - vel 45
-12.811451247,65,0.347913832,0.46875,F4 - vel 60
-12.901020408,83,0.177097505,0.390625,B5 - vel 50
-13.072902494,84,2.505215419,0.351562,C6 - vel 45
-13.072902494,72,2.505215419,0.351562,C5 - vel 45
-13.072902494,55,0.609387755,0.351562,G3 - vel 45
-13.072902494,51,0.609387755,0.351562,D#3 - vel 45
-13.072902494,48,0.609387755,0.351562,C3 - vel 45
-13.107278911,60,1.901043083,0.351562,C4 - vel 45
-13.136439909,63,1.327097505,0.351562,D#4 - vel 45
-13.703106575,55,0.588548752,0.351562,G3 - vel 45
-13.703106575,51,0.588548752,0.351562,D#3 - vel 45
-13.703106575,48,0.588548752,0.351562,C3 - vel 45
-14.338526077,55,0.588548752,0.351562,G3 - vel 45
-14.338526077,51,0.588548752,0.351562,D#3 - vel 45
-14.338526077,48,0.588548752,0.351562,C3 - vel 45
-14.958321995,55,0.625011337,0.492188,G3 - vel 63
-14.958321995,51,0.625011337,0.492188,D#3 - vel 63
-14.958321995,48,0.625011337,0.492188,C3 - vel 63
-15.432290249,56,0.156235827,0.351562,G#3 - vel 45
-15.432290249,53,0.156235827,0.351562,F3 - vel 45
-15.604149659,84,1.880204081,0.351562,C6 - vel 45
-15.604149659,72,1.880204081,0.351562,C5 - vel 45
-15.604149659,55,0.630204081,0.351562,G3 - vel 45
-15.604149659,51,0.630204081,0.351562,D#3 - vel 45
-15.604149659,48,0.630204081,0.351562,C3 - vel 45
-16.244784580,55,0.614580498,0.351562,G3 - vel 45
-16.260408163,55,0.643741496,0.351562,G3 - vel 45
-16.260408163,51,0.598956916,0.351562,D#3 - vel 45
-16.260408163,48,0.598956916,0.351562,C3 - vel 45
-16.885396825,55,0.598956916,0.351562,G3 - vel 45
-16.885396825,51,0.598956916,0.351562,D#3 - vel 45
-16.885396825,48,0.598956916,0.351562,C3 - vel 45
-16.915623582,63,1.419773242,0.492188,D#4 - vel 63
-17.500000000,84,0.588526077,0.351562,C6 - vel 45
-17.500000000,72,0.588526077,0.351562,C5 - vel 45
-17.500000000,55,0.598956916,0.351562,G3 - vel 45
-17.500000000,51,0.598956916,0.351562,D#3 - vel 45
-18.109365079,84,0.656258503,0.351562,C6 - vel 45
-18.109365079,72,0.656258503,0.351562,C5 - vel 45
-18.114580498,55,0.651043083,0.351562,G3 - vel 45
-18.114580498,51,0.651043083,0.351562,D#3 - vel 45
-18.447913832,82,1.083333333,0.351562,A#5 - vel 45
-18.447913832,70,1.083333333,0.351562,A#4 - vel 45
-18.602063492,55,0.798956916,0.351562,G3 - vel 45
-18.796870748,55,0.897913832,0.351562,G3 - vel 45
-18.796870748,51,0.604149659,0.351562,D#3 - vel 45
-19.248956916,63,1.091655328,0.492188,D#4 - vel 63
-19.411451247,79,1.203129251,0.351562,G5 - vel 45
-19.411451247,67,1.203129251,0.351562,G4 - vel 45
-19.411451247,55,0.624988662,0.351562,G3 - vel 45
-19.411451247,51,0.624988662,0.351562,D#3 - vel 45
-20.046870748,55,0.572902494,0.351562,G3 - vel 45
-20.046870748,51,0.572902494,0.351562,D#3 - vel 45
-20.046870748,48,0.572902494,0.351562,C3 - vel 45
-20.314580498,65,0.342698412,0.351562,F4 - vel 45
-20.607278911,63,0.644784580,0.351562,D#4 - vel 45
-20.635396825,79,1.203129251,0.351562,G5 - vel 45
-20.635396825,67,1.203129251,0.351562,G4 - vel 45
-20.635396825,55,0.619795918,0.351562,G3 - vel 45
-20.635396825,51,0.619795918,0.351562,D#3 - vel 45
-20.635396825,48,0.619795918,0.351562,C3 - vel 45
-20.635396825,43,0.619795918,0.351562,G2 - vel 45
-21.245827664,67,0.672902494,0.351562,G4 - vel 45
-21.250000000,55,0.624988662,0.351562,G3 - vel 45
-21.270816326,87,0.609387755,0.46875,D#6 - vel 60
-21.270816326,75,0.609387755,0.46875,D#5 - vel 60
-21.270816326,55,0.609387755,0.46875,G3 - vel 60
-21.270816326,51,0.609387755,0.46875,D#3 - vel 60
-21.270816326,48,0.609387755,0.46875,C3 - vel 60
-21.270816326,43,0.609387755,0.46875,G2 - vel 60
-21.850000000,65,0.638526077,0.46875,F4 - vel 60
-21.887482993,68,0.641678004,0.492188,G#4 - vel 63
-21.895827664,83,0.218752834,0.5625,B5 - vel 72
-21.895827664,71,0.546870748,0.5625,B4 - vel 72
-21.895827664,55,0.546870748,0.5625,G3 - vel 72
-21.895827664,53,0.546870748,0.5625,F3 - vel 72
-21.895827664,50,0.546870748,0.5625,D3 - vel 72
-21.895827664,43,0.546870748,0.5625,G2 - vel 72
-22.036439909,84,0.171882086,0.5625,C6 - vel 72
-22.124988662,83,0.171882086,0.53125,B5 - vel 68
-22.223945578,84,0.187505668,0.5,C6 - vel 64
-22.312494331,83,0.124988662,0.492188,B5 - vel 63
-22.432290249,84,0.359365079,0.460938,C6 - vel 59
-22.447913832,83,0.343741496,0.492188,B5 - vel 63
-22.459365079,63,0.294784580,0.570312,D#4 - vel 73
-22.468730158,55,0.609387755,0.46875,G3 - vel 60
-22.468730158,53,0.609387755,0.46875,F3 - vel 60
-22.468730158,50,0.609387755,0.46875,D3 - vel 60
-22.468730158,43,0.609387755,0.46875,G2 - vel 60
-22.537482993,67,0.323968253,0.492188,G4 - vel 63
-22.720816326,62,0.393764172,0.46875,D4 - vel 60
-22.807278911,81,0.390634920,0.429688,A5 - vel 55
-22.813537414,65,0.321859410,0.351562,F4 - vel 45
-22.927074829,83,0.406258503,0.390625,B5 - vel 50
-23.083333333,84,2.505192743,0.351562,C6 - vel 45
-23.083333333,72,2.505192743,0.351562,C5 - vel 45
-23.083333333,55,0.619773242,0.351562,G3 - vel 45
-23.083333333,51,0.619773242,0.351562,D#3 - vel 45
-23.083333333,48,0.619773242,0.351562,C3 - vel 45
-23.097913832,60,1.237482993,0.351562,C4 - vel 45
-23.138526077,63,1.705215419,0.351562,D#4 - vel 45
-23.734353741,55,0.593764172,0.351562,G3 - vel 45
-23.734353741,51,0.593764172,0.351562,D#3 - vel 45
-23.734353741,48,0.593764172,0.351562,C3 - vel 45
-24.364580498,55,0.614580498,0.351562,G3 - vel 45
-24.364580498,51,0.614580498,0.351562,D#3 - vel 45
-24.364580498,48,0.614580498,0.351562,C3 - vel 45
-25.000000000,55,0.604149659,0.492188,G3 - vel 63
-25.000000000,51,0.604149659,0.492188,D#3 - vel 63
-25.000000000,48,0.604149659,0.492188,C3 - vel 63
-25.447913832,56,0.166666666,0.351562,G#3 - vel 45
-25.447913832,53,0.166666666,0.351562,F3 - vel 45
-25.630204081,87,1.234376417,0.351562,D#6 - vel 45
-25.630204081,75,1.234376417,0.351562,D#5 - vel 45
-25.630204081,55,0.624988662,0.351562,G3 - vel 45
-25.630204081,51,0.624988662,0.351562,D#3 - vel 45
-25.630204081,48,0.624988662,0.351562,C3 - vel 45
-26.227074829,55,0.632290249,0.351562,G3 - vel 45
-26.286439909,55,0.588548752,0.351562,G3 - vel 45
-26.286439909,48,0.572925170,0.351562,C3 - vel 45
-26.870816326,67,1.650000000,0.492188,G4 - vel 63
-26.890612244,86,1.218752834,0.351562,D6 - vel 45
-26.890612244,74,1.218752834,0.351562,D5 - vel 45
-26.890612244,55,0.609387755,0.351562,G3 - vel 45
-26.890612244,50,0.609387755,0.351562,D3 - vel 45
-26.890612244,46,0.609387755,0.351562,A#2 - vel 45
-27.526031746,55,0.583333333,0.351562,G3 - vel 45
-27.526031746,50,0.583333333,0.351562,D3 - vel 45
-27.526031746,46,0.583333333,0.351562,A#2 - vel 45
-28.130204081,86,1.817709750,0.351562,D6 - vel 45
-28.130204081,74,1.817709750,0.351562,D5 - vel 45
-28.135396825,55,0.651043083,0.351562,G3 - vel 45
-28.135396825,51,0.651043083,0.351562,D#3 - vel 45
-28.479160997,79,1.494784580,0.351562,G5 - vel 45
-28.479160997,67,1.494784580,0.351562,G4 - vel 45
-28.700000000,55,0.695827664,0.351562,G3 - vel 45
-28.807278911,55,0.812494331,0.351562,G3 - vel 45
-28.807278911,51,0.588548752,0.351562,D#3 - vel 45
-29.358321995,58,1.603129251,0.492188,A#3 - vel 63
-29.411451247,55,0.572902494,0.351562,G3 - vel 45
-29.411451247,51,0.572902494,0.351562,D#3 - vel 45
-29.989569160,79,0.609387755,0.351562,G5 - vel 45
-29.989569160,67,0.609387755,0.351562,G4 - vel 45
-29.989569160,55,0.609387755,0.351562,G3 - vel 45
-29.989569160,51,0.609387755,0.351562,D#3 - vel 45
-30.614580498,79,1.234376417,0.351562,G5 - vel 45
-30.614580498,67,1.234376417,0.351562,G4 - vel 45
-30.614580498,55,0.619773242,0.351562,G3 - vel 45
-30.614580498,48,0.619773242,0.351562,C3 - vel 45
-31.155192743,60,0.832290249,0.351562,C4 - vel 45
-31.236439909,51,0.915623582,0.351562,D#3 - vel 45
-31.250000000,55,0.598956916,0.351562,G3 - vel 45
-31.250000000,48,0.598956916,0.351562,C3 - vel 45
-31.852063492,60,1.305215419,0.351562,C4 - vel 45
-31.864580498,81,1.255192743,0.351562,A5 - vel 45
-31.864580498,69,1.255192743,0.351562,A4 - vel 45
-31.864580498,55,0.619773242,0.351562,G3 - vel 45
-31.864580498,48,0.619773242,0.351562,C3 - vel 45
-31.874988662,63,1.262494331,0.351562,D#4 - vel 45
-32.500000000,54,0.614580498,0.351562,F#3 - vel 45
-32.500000000,48,0.614580498,0.351562,C3 - vel 45
-32.791655328,79,0.322925170,0.351562,G5 - vel 45
-32.791655328,67,0.322925170,0.351562,G4 - vel 45
-33.100000000,62,3.080204081,0.351562,D4 - vel 45
-33.130204081,79,1.807278911,0.351562,G5 - vel 45
-33.130204081,67,1.807278911,0.351562,G4 - vel 45
-33.130204081,55,0.604149659,0.351562,G3 - vel 45
-33.130204081,43,0.604149659,0.351562,G2 - vel 45
-33.152063492,59,3.082290249,0.351562,B3 - vel 45
-33.750000000,55,0.583333333,0.351562,G3 - vel 45
-33.750000000,43,0.583333333,0.351562,G2 - vel 45
-34.343741496,55,0.609365079,0.351562,G3 - vel 45
-34.343741496,43,0.609365079,0.351562,G2 - vel 45
-34.968730158,79,0.609387755,0.492188,G5 - vel 63
-35.593741496,67,0.583333333,0.351562,G4 - vel 45
-36.192698412,55,0.635419501,0.492188,G3 - vel 63
-36.211451247,60,0.677074829,0.492188,C4 - vel 63
-36.229160997,63,0.512494331,0.492188,D#4 - vel 63
-36.820816326,62,1.843764172,0.351562,D4 - vel 45
-36.854149659,43,0.619795918,0.351562,G2 - vel 45
-36.856235827,59,1.808344671,0.351562,B3 - vel 45
-37.473945578,79,0.630204081,0.492188,G5 - vel 63
-38.124988662,67,1.484376417,0.351562,G4 - vel 45
-38.672902494,60,0.664580498,0.492188,C4 - vel 63
-38.695827664,63,0.437505668,0.492188,D#4 - vel 63
-38.739569160,55,0.598956916,0.492188,G3 - vel 63
-39.218730158,62,1.435419501,0.351562,D4 - vel 45
-39.348956916,43,0.578117913,0.351562,G2 - vel 45
-39.352063492,59,1.331269841,0.351562,B3 - vel 45
-39.651020408,67,0.281269841,0.351562,G4 - vel 45
-39.942698412,69,0.286462585,0.351562,A4 - vel 45
-39.942698412,41,0.218752834,0.351562,F2 - vel 45
-40.078117913,43,0.156235827,0.351562,G2 - vel 45
-40.177074829,41,0.135419501,0.351562,F2 - vel 45
-40.244784580,71,0.322902494,0.351562,B4 - vel 45
-40.244784580,43,0.135419501,0.351562,G2 - vel 45
-40.328117913,41,0.109365079,0.351562,F2 - vel 45
-40.395827664,43,0.124988662,0.351562,G2 - vel 45
-40.453106575,41,0.125011337,0.351562,F2 - vel 45
-40.588526077,72,0.578140589,0.351562,C5 - vel 45
-40.588526077,39,0.578140589,0.351562,D#2 - vel 45
-40.624988662,63,0.737505668,0.351562,D#4 - vel 45
-40.676031746,60,0.756258503,0.351562,C4 - vel 45
-41.171859410,87,0.625011337,0.492188,D#6 - vel 63
-41.171859410,75,0.625011337,0.492188,D#5 - vel 63
-41.171859410,60,0.625011337,0.351562,C4 - vel 45
-41.171859410,55,0.625011337,0.351562,G3 - vel 45
-41.171859410,48,0.625011337,0.351562,C3 - vel 45
-41.817687074,84,0.921882086,0.351562,C6 - vel 45
-41.817687074,72,0.921882086,0.351562,C5 - vel 45
-41.817687074,60,0.614603174,0.351562,C4 - vel 45
-41.817687074,55,0.614603174,0.351562,G3 - vel 45
-41.817687074,48,0.614603174,0.351562,C3 - vel 45
-42.219773242,63,0.263560090,0.351562,D#4 - vel 45
-42.458321995,60,0.598956916,0.351562,C4 - vel 45
-42.458321995,51,0.598956916,0.351562,D#3 - vel 45
-42.486439909,65,0.309387755,0.390625,F4 - vel 50
-42.765623582,75,0.312494331,0.351562,D#5 - vel 45
-42.812494331,67,0.364580498,0.429688,G4 - vel 55
-43.083333333,74,0.604149659,0.351562,D5 - vel 45
-43.083333333,60,0.604149659,0.351562,C4 - vel 45
-43.083333333,53,0.604149659,0.351562,F3 - vel 45
-43.142698412,68,1.196870748,0.46875,G#4 - vel 60
-43.692698412,74,0.947913832,0.351562,D5 - vel 45
-43.692698412,60,0.619795918,0.375,C4 - vel 48
-43.692698412,53,0.619795918,0.375,F3 - vel 48
-44.338526077,67,0.646870748,0.46875,G4 - vel 60
-44.343741496,59,0.619795918,0.40625,B3 - vel 52
-44.343741496,55,0.619795918,0.40625,G3 - vel 52
-44.661451247,75,0.302086167,0.40625,D#5 - vel 52
-44.674988662,67,0.596870748,0.351562,G4 - vel 45
-44.807278911,77,0.281247165,0.414062,F5 - vel 53
-44.979160997,79,0.468752834,0.421875,G5 - vel 54
-44.979160997,65,0.593741496,0.4375,F4 - vel 56
-44.979160997,59,0.593741496,0.4375,B3 - vel 56
-44.979160997,55,0.593741496,0.4375,G3 - vel 56
-44.988526077,69,0.291678004,0.382812,A4 - vel 49
-45.124988662,77,0.427074829,0.429688,F5 - vel 55
-45.203106575,65,0.585419501,0.46875,F4 - vel 60
-45.255192743,75,0.338548752,0.4375,D#5 - vel 56
-45.284353741,71,0.331269841,0.414062,B4 - vel 53
-45.401020408,74,0.192721088,0.453125,D5 - vel 58
-45.604149659,72,0.625011337,0.46875,C5 - vel 60
-45.604149659,63,0.625011337,0.46875,D#4 - vel 60
-45.604149659,60,0.625011337,0.46875,C4 - vel 60
-45.604149659,56,0.625011337,0.46875,G#3 - vel 60
-45.615623582,72,0.867709750,0.445312,C5 - vel 57
-45.624988662,63,1.262494331,0.351562,D#4 - vel 45
-46.239569160,87,0.625011337,0.632812,D#6 - vel 81
-46.239569160,75,0.625011337,0.46875,D#5 - vel 60
-46.239569160,60,0.609387755,0.46875,C4 - vel 60
-46.239569160,56,0.609387755,0.46875,G#3 - vel 60
-46.497913832,72,0.490612244,0.53125,C5 - vel 68
-46.885396825,84,0.895850340,0.46875,C6 - vel 60
-46.885396825,72,0.895850340,0.46875,C5 - vel 60
-46.885396825,60,0.598956916,0.46875,C4 - vel 60
-46.885396825,55,0.598956916,0.46875,G3 - vel 60
-46.885396825,51,0.598956916,0.46875,D#3 - vel 60
-46.892698412,75,0.667709750,0.570312,D#5 - vel 73
-47.170816326,63,0.308344671,0.46875,D#4 - vel 60
-47.472902494,65,0.347913832,0.46875,F4 - vel 60
-47.515623582,60,0.588526077,0.46875,C4 - vel 60
-47.515623582,55,0.588526077,0.46875,G3 - vel 60
-47.515623582,51,0.588526077,0.46875,D#3 - vel 60
-47.519773242,72,0.653129251,0.46875,C5 - vel 60
-47.786439909,67,0.375011337,0.46875,G4 - vel 60
-47.796870748,75,0.302086167,0.46875,D#5 - vel 60
-48.114580498,74,0.635419501,0.46875,D5 - vel 60
-48.114580498,60,0.635419501,0.46875,C4 - vel 60
-48.114580498,53,0.635419501,0.46875,F3 - vel 60
-48.146870748,68,1.216666666,0.46875,G#4 - vel 60
-48.770816326,74,0.963537414,0.351562,D5 - vel 45
-48.770816326,60,0.625011337,0.351562,C4 - vel 45
-48.770816326,53,0.625011337,0.351562,F3 - vel 45
-49.342698412,67,0.969795918,0.351562,G4 - vel 45
-49.411451247,59,0.614580498,0.351562,B3 - vel 45
-49.411451247,55,0.614580498,0.351562,G3 - vel 45
-49.620816326,79,0.352086167,0.351562,G5 - vel 45
-49.744784580,75,0.218752834,0.351562,D#5 - vel 45
-49.906235827,77,0.218752834,0.351562,F5 - vel 45
-49.963537414,81,0.343741496,0.351562,A5 - vel 45
-50.052063492,79,0.281269841,0.351562,G5 - vel 45
-50.052063492,43,0.619795918,0.351562,G2 - vel 45
-50.052063492,31,0.619795918,0.351562,G1 - vel 45
-50.218730158,77,0.281269841,0.351562,F5 - vel 45
-50.259365079,83,0.371882086,0.351562,B5 - vel 45
-50.288526077,65,0.419795918,0.351562,F4 - vel 45
-50.354149659,75,0.234376417,0.351562,D#5 - vel 45
-50.520816326,74,0.270839002,0.351562,D5 - vel 45
-50.602063492,84,1.045850340,0.351562,C6 - vel 45
-50.671859410,63,0.826054421,0.351562,D#4 - vel 45
-50.692698412,72,0.880204081,0.351562,C5 - vel 45
-50.692698412,44,0.880204081,0.351562,G#2 - vel 45
-50.692698412,32,0.880204081,0.351562,G#1 - vel 45
--- a/testdata/TRIOS-groundtruth/schubert.lab	Thu May 29 15:18:14 2014 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,402 +0,0 @@
-0.563537414	1.172902493	311.1269837220809
-0.563537414	1.172902493	195.99771799087463
-0.587482993	1.270816326	65.40639132514966
-1.250000000	1.796870748	195.99771799087463
-1.250000000	1.796870748	311.1269837220809
-1.269773242	1.882290248	130.8127826502993
-1.874988662	2.422902494	195.99771799087463
-1.874988662	2.422902494	311.1269837220809
-1.886439909	2.541655328	130.8127826502993
-2.500000000	3.017687074	311.1269837220809
-2.500000000	3.017687074	195.99771799087463
-2.551020408	2.981247165	130.8127826502993
-2.997913832	3.2562358270000002	87.30705785825097
-3.001020408	3.158321995	207.65234878997256
-3.001020408	3.158321995	349.2282314330039
-3.163537414	3.6687301569999997	130.8127826502993
-3.174988662	3.7416553280000002	311.1269837220809
-3.174988662	3.7416553280000002	195.99771799087463
-3.738526077	4.360408163	130.8127826502993
-3.802063492	4.349999999	311.1269837220809
-3.802063492	4.349999999	195.99771799087463
-4.365623582	5.010408161999999	130.8127826502993
-4.394784580	4.942698412	311.1269837220809
-4.394784580	4.942698412	195.99771799087463
-5.000000000	5.453106575	311.1269837220809
-5.000000000	5.453106575	195.99771799087463
-5.018730158	5.4687301580000005	130.8127826502993
-5.444784580	5.595827663	349.2282314330039
-5.444784580	5.595827663	207.65234878997256
-5.480204081	5.71249433	87.30705785825097
-5.593741496	6.906235827	783.9908719634985
-5.593741496	6.906235827	391.99543598174927
-5.593741496	6.203106575	195.99771799087463
-5.593741496	6.255192743	155.56349186104046
-5.593741496	6.255192743	130.8127826502993
-5.595827664	6.203106575	311.1269837220809
-5.595827664	6.255192742999999	195.99771799087463
-5.657278911	6.320816325	130.8127826502993
-6.263537414	6.863537414	195.99771799087463
-6.286439909	6.901020407000001	195.99771799087463
-6.286439909	6.901020407000001	155.56349186104046
-6.286439909	6.901020407000001	130.8127826502993
-6.861451247	8.324988660999999	311.1269837220809
-6.932290249	8.156235827	783.9908719634985
-6.932290249	8.156235827	391.99543598174927
-6.932290249	7.557278911	195.99771799087463
-6.932290249	7.557278911	155.56349186104046
-6.932290249	7.557278911	130.8127826502993
-7.578117913	8.171859409	195.99771799087463
-7.578117913	8.171859409	155.56349186104046
-7.578117913	8.171859409	130.8127826502993
-8.187482993	8.416666666	830.6093951598903
-8.187482993	9.968730158	523.2511306011972
-8.187482993	8.817687074	207.65234878997256
-8.187482993	8.817687074	174.61411571650194
-8.187482993	8.817687074	130.8127826502993
-8.333333333	8.630204081	932.3275230361799
-8.505192743	9.979160996000001	1046.5022612023945
-8.655192743	9.432290248000001	207.65234878997256
-8.854149659	9.577074829	207.65234878997256
-8.854149659	9.432290248000001	174.61411571650194
-8.854149659	9.432290248000001	130.8127826502993
-9.290612244	10.46249433	349.2282314330039
-9.479160997	9.989569159999999	207.65234878997256
-9.479160997	9.989569159999999	174.61411571650194
-9.479160997	9.989569159999999	130.8127826502993
-10.031247165	10.640612244	932.3275230361799
-10.031247165	10.640612244	466.1637615180899
-10.031247165	10.588526076	207.65234878997256
-10.031247165	10.588526076	174.61411571650194
-10.031247165	10.588526076	130.8127826502993
-10.294784580	10.637482992	293.6647679174076
-10.343741496	10.828117913	830.6093951598903
-10.343741496	10.828117913	415.3046975799451
-10.643741496	11.301020407000001	311.1269837220809
-10.651020408	11.869773242	783.9908719634985
-10.651020408	11.869773242	391.99543598174927
-10.651020408	11.218730158000001	195.99771799087463
-10.651020408	11.218730158000001	155.56349186104046
-10.651020408	11.218730158000001	130.8127826502993
-11.206235827	11.874988661	195.99771799087463
-11.235396825	12.042698412	195.99771799087463
-11.260408163	11.874988661	1244.5079348883237
-11.260408163	11.874988661	622.2539674441618
-11.260408163	12.463537414	195.99771799087463
-11.260408163	11.874988661	155.56349186104046
-11.260408163	11.874988661	130.8127826502993
-11.850000000	12.757278911	349.2282314330039
-11.885396825	12.124988661000001	987.7666025122483
-11.885396825	12.468730158000001	493.8833012561241
-11.885396825	12.793741496	195.99771799087463
-11.885396825	12.463537414000001	174.61411571650194
-11.885396825	12.463537414000001	146.8323839587038
-11.885396825	12.463537414000001	97.99885899543733
-11.911451247	12.499999999	415.3046975799451
-12.031247165	12.208321994	1046.5022612023945
-12.130204081	12.31249433	987.7666025122483
-12.218730158	12.38020408	1046.5022612023945
-12.322902494	12.760408162	987.7666025122483
-12.395827664	12.760408162000001	1046.5022612023945
-12.474988662	12.841655328	391.99543598174927
-12.479160997	13.052063490999998	195.99771799087463
-12.479160997	13.052063490999998	174.61411571650194
-12.479160997	13.046870747	146.8323839587038
-12.479160997	13.052063490999998	97.99885899543733
-12.483333333	12.811451245999999	311.1269837220809
-12.781247165	13.067687074	880.0
-12.788526077	13.093741496	293.6647679174076
-12.811451247	13.159365079	349.2282314330039
-12.901020408	13.078117913000002	987.7666025122483
-13.072902494	15.578117913	1046.5022612023945
-13.072902494	15.578117913	523.2511306011972
-13.072902494	13.682290249	195.99771799087463
-13.072902494	13.682290249	155.56349186104046
-13.072902494	13.682290249	130.8127826502993
-13.107278911	15.008321994	261.6255653005986
-13.136439909	14.463537414	311.1269837220809
-13.703106575	14.291655326999999	195.99771799087463
-13.703106575	14.291655326999999	155.56349186104046
-13.703106575	14.291655326999999	130.8127826502993
-14.338526077	14.927074828999999	195.99771799087463
-14.338526077	14.927074828999999	155.56349186104046
-14.338526077	14.927074828999999	130.8127826502993
-14.958321995	15.583333332	195.99771799087463
-14.958321995	15.583333332	155.56349186104046
-14.958321995	15.583333332	130.8127826502993
-15.432290249	15.588526075999999	207.65234878997256
-15.432290249	15.588526075999999	174.61411571650194
-15.604149659	17.48435374	1046.5022612023945
-15.604149659	17.48435374	523.2511306011972
-15.604149659	16.23435374	195.99771799087463
-15.604149659	16.23435374	155.56349186104046
-15.604149659	16.23435374	130.8127826502993
-16.244784580	16.859365078	195.99771799087463
-16.260408163	16.904149659	195.99771799087463
-16.260408163	16.859365079	155.56349186104046
-16.260408163	16.859365079	130.8127826502993
-16.885396825	17.484353741	195.99771799087463
-16.885396825	17.484353741	155.56349186104046
-16.885396825	17.484353741	130.8127826502993
-16.915623582	18.335396824	311.1269837220809
-17.500000000	18.088526077	1046.5022612023945
-17.500000000	18.088526077	523.2511306011972
-17.500000000	18.098956916	195.99771799087463
-17.500000000	18.098956916	155.56349186104046
-18.109365079	18.765623582	1046.5022612023945
-18.109365079	18.765623582	523.2511306011972
-18.114580498	18.765623581	195.99771799087463
-18.114580498	18.765623581	155.56349186104046
-18.447913832	19.531247165	932.3275230361799
-18.447913832	19.531247165	466.1637615180899
-18.602063492	19.401020408	195.99771799087463
-18.796870748	19.69478458	195.99771799087463
-18.796870748	19.401020407	155.56349186104046
-19.248956916	20.340612244000003	311.1269837220809
-19.411451247	20.614580498	783.9908719634985
-19.411451247	20.614580498	391.99543598174927
-19.411451247	20.036439909	195.99771799087463
-19.411451247	20.036439909	155.56349186104046
-20.046870748	20.619773242	195.99771799087463
-20.046870748	20.619773242	155.56349186104046
-20.046870748	20.619773242	130.8127826502993
-20.314580498	20.657278910000002	349.2282314330039
-20.607278911	21.252063491	311.1269837220809
-20.635396825	21.838526076	783.9908719634985
-20.635396825	21.838526076	391.99543598174927
-20.635396825	21.255192743000002	195.99771799087463
-20.635396825	21.255192743000002	155.56349186104046
-20.635396825	21.255192743000002	130.8127826502993
-20.635396825	21.255192743000002	97.99885899543733
-21.245827664	21.918730158	391.99543598174927
-21.250000000	21.874988662	195.99771799087463
-21.270816326	21.880204081	1244.5079348883237
-21.270816326	21.880204081	622.2539674441618
-21.270816326	21.880204081	195.99771799087463
-21.270816326	21.880204081	155.56349186104046
-21.270816326	21.880204081	130.8127826502993
-21.270816326	21.880204081	97.99885899543733
-21.850000000	22.488526077	349.2282314330039
-21.887482993	22.529160996999998	415.3046975799451
-21.895827664	22.114580498	987.7666025122483
-21.895827664	22.442698412	493.8833012561241
-21.895827664	22.442698412	195.99771799087463
-21.895827664	22.442698412	174.61411571650194
-21.895827664	22.442698412	146.8323839587038
-21.895827664	22.442698412	97.99885899543733
-22.036439909	22.208321995	1046.5022612023945
-22.124988662	22.296870748	987.7666025122483
-22.223945578	22.411451246	1046.5022612023945
-22.312494331	22.437482993	987.7666025122483
-22.432290249	22.791655328	1046.5022612023945
-22.447913832	22.791655328	987.7666025122483
-22.459365079	22.754149659000003	311.1269837220809
-22.468730158	23.078117913	195.99771799087463
-22.468730158	23.078117913	174.61411571650194
-22.468730158	23.078117913	146.8323839587038
-22.468730158	23.078117913	97.99885899543733
-22.537482993	22.861451246	391.99543598174927
-22.720816326	23.114580498000002	293.6647679174076
-22.807278911	23.197913831	880.0
-22.813537414	23.135396823999997	349.2282314330039
-22.927074829	23.333333332	987.7666025122483
-23.083333333	25.588526075999997	1046.5022612023945
-23.083333333	25.588526075999997	523.2511306011972
-23.083333333	23.703106575	195.99771799087463
-23.083333333	23.703106575	155.56349186104046
-23.083333333	23.703106575	130.8127826502993
-23.097913832	24.335396825	261.6255653005986
-23.138526077	24.843741496	311.1269837220809
-23.734353741	24.328117913	195.99771799087463
-23.734353741	24.328117913	155.56349186104046
-23.734353741	24.328117913	130.8127826502993
-24.364580498	24.979160995999997	195.99771799087463
-24.364580498	24.979160995999997	155.56349186104046
-24.364580498	24.979160995999997	130.8127826502993
-25.000000000	25.604149659	195.99771799087463
-25.000000000	25.604149659	155.56349186104046
-25.000000000	25.604149659	130.8127826502993
-25.447913832	25.614580498000002	207.65234878997256
-25.447913832	25.614580498000002	174.61411571650194
-25.630204081	26.864580498	1244.5079348883237
-25.630204081	26.864580498	622.2539674441618
-25.630204081	26.255192743	195.99771799087463
-25.630204081	26.255192743	155.56349186104046
-25.630204081	26.255192743	130.8127826502993
-26.227074829	26.859365078	195.99771799087463
-26.286439909	26.874988661	195.99771799087463
-26.286439909	26.859365079	130.8127826502993
-26.870816326	28.520816326	391.99543598174927
-26.890612244	28.109365078	1174.6590716696303
-26.890612244	28.109365078	587.3295358348151
-26.890612244	27.499999999	195.99771799087463
-26.890612244	27.499999999	146.8323839587038
-26.890612244	27.499999999	116.54094037952248
-27.526031746	28.109365079	195.99771799087463
-27.526031746	28.109365079	146.8323839587038
-27.526031746	28.109365079	116.54094037952248
-28.130204081	29.947913830999997	1174.6590716696303
-28.130204081	29.947913830999997	587.3295358348151
-28.135396825	28.786439908000002	195.99771799087463
-28.135396825	28.786439908000002	155.56349186104046
-28.479160997	29.973945577000002	783.9908719634985
-28.479160997	29.973945577000002	391.99543598174927
-28.700000000	29.395827664	195.99771799087463
-28.807278911	29.619773242	195.99771799087463
-28.807278911	29.395827663000002	155.56349186104046
-29.358321995	30.961451246	233.08188075904496
-29.411451247	29.984353741	195.99771799087463
-29.411451247	29.984353741	155.56349186104046
-29.989569160	30.598956915	783.9908719634985
-29.989569160	30.598956915	391.99543598174927
-29.989569160	30.598956915	195.99771799087463
-29.989569160	30.598956915	155.56349186104046
-30.614580498	31.848956915	783.9908719634985
-30.614580498	31.848956915	391.99543598174927
-30.614580498	31.23435374	195.99771799087463
-30.614580498	31.23435374	130.8127826502993
-31.155192743	31.987482992	261.6255653005986
-31.236439909	32.152063491	155.56349186104046
-31.250000000	31.848956916	195.99771799087463
-31.250000000	31.848956916	130.8127826502993
-31.852063492	33.157278911	261.6255653005986
-31.864580498	33.119773241	880.0
-31.864580498	33.119773241	440.0
-31.864580498	32.484353739999996	195.99771799087463
-31.864580498	32.484353739999996	130.8127826502993
-31.874988662	33.137482993	311.1269837220809
-32.500000000	33.114580498	184.9972113558172
-32.500000000	33.114580498	130.8127826502993
-32.791655328	33.114580497999995	783.9908719634985
-32.791655328	33.114580497999995	391.99543598174927
-33.100000000	36.180204081	293.6647679174076
-33.130204081	34.937482992	783.9908719634985
-33.130204081	34.937482992	391.99543598174927
-33.130204081	33.73435374	195.99771799087463
-33.130204081	33.73435374	97.99885899543733
-33.152063492	36.23435374100001	246.94165062806206
-33.750000000	34.333333333	195.99771799087463
-33.750000000	34.333333333	97.99885899543733
-34.343741496	34.953106575	195.99771799087463
-34.343741496	34.953106575	97.99885899543733
-34.968730158	35.578117913	783.9908719634985
-35.593741496	36.177074829	391.99543598174927
-36.192698412	36.828117913	195.99771799087463
-36.211451247	36.888526076	261.6255653005986
-36.229160997	36.741655328	311.1269837220809
-36.820816326	38.664580498	293.6647679174076
-36.854149659	37.473945577	97.99885899543733
-36.856235827	38.664580498	246.94165062806206
-37.473945578	38.104149659	783.9908719634985
-38.124988662	39.609365079	391.99543598174927
-38.672902494	39.337482992	261.6255653005986
-38.695827664	39.133333332	311.1269837220809
-38.739569160	39.338526076	195.99771799087463
-39.218730158	40.654149659	293.6647679174076
-39.348956916	39.927074829	97.99885899543733
-39.352063492	40.683333333	246.94165062806206
-39.651020408	39.932290249	391.99543598174927
-39.942698412	40.229160997	440.0
-39.942698412	40.161451246	87.30705785825097
-40.078117913	40.23435374	97.99885899543733
-40.177074829	40.31249433	87.30705785825097
-40.244784580	40.567687074	493.8833012561241
-40.244784580	40.380204081	97.99885899543733
-40.328117913	40.437482992	87.30705785825097
-40.395827664	40.520816326	97.99885899543733
-40.453106575	40.578117911999996	87.30705785825097
-40.588526077	41.166666666	523.2511306011972
-40.588526077	41.166666666	77.78174593052023
-40.624988662	41.36249433	311.1269837220809
-40.676031746	41.432290249	261.6255653005986
-41.171859410	41.796870747	1244.5079348883237
-41.171859410	41.796870747	622.2539674441618
-41.171859410	41.796870747	261.6255653005986
-41.171859410	41.796870747	195.99771799087463
-41.171859410	41.796870747	130.8127826502993
-41.817687074	42.739569159999995	1046.5022612023945
-41.817687074	42.739569159999995	523.2511306011972
-41.817687074	42.432290248	261.6255653005986
-41.817687074	42.432290248	195.99771799087463
-41.817687074	42.432290248	130.8127826502993
-42.219773242	42.483333332	311.1269837220809
-42.458321995	43.057278911	261.6255653005986
-42.458321995	43.057278911	155.56349186104046
-42.486439909	42.795827664	349.2282314330039
-42.765623582	43.07811791300001	622.2539674441618
-42.812494331	43.177074829000006	391.99543598174927
-43.083333333	43.687482992	587.3295358348151
-43.083333333	43.687482992	261.6255653005986
-43.083333333	43.687482992	174.61411571650194
-43.142698412	44.33956916	415.3046975799451
-43.692698412	44.640612243999996	587.3295358348151
-43.692698412	44.31249433	261.6255653005986
-43.692698412	44.31249433	174.61411571650194
-44.338526077	44.985396824999995	391.99543598174927
-44.343741496	44.963537414	246.94165062806206
-44.343741496	44.963537414	195.99771799087463
-44.661451247	44.963537414	622.2539674441618
-44.674988662	45.27185941	391.99543598174927
-44.807278911	45.088526076	698.4564628660078
-44.979160997	45.447913831	783.9908719634985
-44.979160997	45.572902493	349.2282314330039
-44.979160997	45.572902493	246.94165062806206
-44.979160997	45.572902493	195.99771799087463
-44.988526077	45.280204081	440.0
-45.124988662	45.552063491	698.4564628660078
-45.203106575	45.788526076	349.2282314330039
-45.255192743	45.593741495	622.2539674441618
-45.284353741	45.615623582	493.8833012561241
-45.401020408	45.593741496	587.3295358348151
-45.604149659	46.229160996	523.2511306011972
-45.604149659	46.229160996	311.1269837220809
-45.604149659	46.229160996	261.6255653005986
-45.604149659	46.229160996	207.65234878997256
-45.615623582	46.483333332	523.2511306011972
-45.624988662	46.887482993	311.1269837220809
-46.239569160	46.864580497	1244.5079348883237
-46.239569160	46.864580497	622.2539674441618
-46.239569160	46.848956915	261.6255653005986
-46.239569160	46.848956915	207.65234878997256
-46.497913832	46.988526076	523.2511306011972
-46.885396825	47.781247165	1046.5022612023945
-46.885396825	47.781247165	523.2511306011972
-46.885396825	47.484353741	261.6255653005986
-46.885396825	47.484353741	195.99771799087463
-46.885396825	47.484353741	155.56349186104046
-46.892698412	47.560408162	622.2539674441618
-47.170816326	47.479160997	311.1269837220809
-47.472902494	47.820816326000006	349.2282314330039
-47.515623582	48.104149659	261.6255653005986
-47.515623582	48.104149659	195.99771799087463
-47.515623582	48.104149659	155.56349186104046
-47.519773242	48.172902493	523.2511306011972
-47.786439909	48.161451246	391.99543598174927
-47.796870748	48.098956915	622.2539674441618
-48.114580498	48.749999999	587.3295358348151
-48.114580498	48.749999999	261.6255653005986
-48.114580498	48.749999999	174.61411571650194
-48.146870748	49.363537414	415.3046975799451
-48.770816326	49.73435374	587.3295358348151
-48.770816326	49.395827663	261.6255653005986
-48.770816326	49.395827663	174.61411571650194
-49.342698412	50.31249433	391.99543598174927
-49.411451247	50.026031745000004	246.94165062806206
-49.411451247	50.026031745000004	195.99771799087463
-49.620816326	49.97290249300001	783.9908719634985
-49.744784580	49.963537414	622.2539674441618
-49.906235827	50.124988661	698.4564628660078
-49.963537414	50.30727891	880.0
-50.052063492	50.333333333	783.9908719634985
-50.052063492	50.67185941	97.99885899543733
-50.052063492	50.67185941	48.999429497718666
-50.218730158	50.499999998999996	698.4564628660078
-50.259365079	50.631247165	987.7666025122483
-50.288526077	50.708321995	349.2282314330039
-50.354149659	50.588526076	622.2539674441618
-50.520816326	50.791655328000004	587.3295358348151
-50.602063492	51.647913832	1046.5022612023945
-50.671859410	51.497913831000005	311.1269837220809
-50.692698412	51.572902493	523.2511306011972
-50.692698412	51.572902493	103.82617439498628
-50.692698412	51.572902493	51.91308719749314
Binary file testdata/TRIOS-groundtruth/schubert.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/schubert/cello.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,53 @@
+0.5875	1.2708333333333333	65.40639132514966
+1.2697916666666667	1.8822916666666667	130.8127826502993
+1.8864583333333333	2.5416666666666665	130.8127826502993
+2.551041666666667	2.98125	130.8127826502993
+2.997916666666667	3.25625	87.30705785825097
+3.1635416666666667	3.66875	130.8127826502993
+3.738541666666667	4.360416666666667	130.8127826502993
+4.365625	5.010416666666667	130.8127826502993
+5.01875	5.46875	130.8127826502993
+5.480208333333334	5.7125	87.30705785825097
+5.657291666666667	6.320833333333334	130.8127826502993
+8.655208333333333	9.577083333333333	207.65234878997256
+9.290625	10.4625	349.2282314330039
+10.294791666666667	10.6375	293.6647679174076
+10.64375	11.301041666666666	311.1269837220809
+11.235416666666667	12.79375	195.99771799087463
+11.85	12.757291666666667	349.2282314330039
+12.483333333333333	12.811458333333333	311.1269837220809
+12.788541666666667	13.09375	293.6647679174076
+13.107291666666667	15.008333333333333	261.6255653005986
+18.602083333333333	19.694791666666667	195.99771799087463
+19.248958333333334	20.340625	311.1269837220809
+20.314583333333335	20.657291666666666	349.2282314330039
+20.607291666666665	21.252083333333335	311.1269837220809
+21.245833333333334	21.91875	391.99543598174927
+21.8875	22.529166666666665	415.3046975799451
+22.5375	22.861458333333335	391.99543598174927
+22.813541666666666	23.135416666666668	349.2282314330039
+23.138541666666665	24.84375	311.1269837220809
+28.7	29.619791666666668	195.99771799087463
+29.358333333333334	30.961458333333333	233.08188075904496
+31.236458333333335	32.15208333333333	155.56349186104046
+31.852083333333333	33.157291666666666	261.6255653005986
+33.15208333333333	36.234375	246.94165062806206
+36.21145833333333	36.88854166666667	261.6255653005986
+36.85625	38.66458333333333	246.94165062806206
+38.672916666666666	39.3375	261.6255653005986
+39.35208333333333	40.68333333333333	246.94165062806206
+40.67604166666667	41.432291666666664	261.6255653005986
+42.219791666666666	42.483333333333334	311.1269837220809
+42.48645833333333	42.795833333333334	349.2282314330039
+42.8125	43.177083333333336	391.99543598174927
+43.14270833333333	44.33958333333333	415.3046975799451
+44.338541666666664	45.271875	391.99543598174927
+45.203125	45.78854166666667	349.2282314330039
+45.625	46.8875	311.1269837220809
+47.170833333333334	47.479166666666664	311.1269837220809
+47.47291666666667	47.82083333333333	349.2282314330039
+47.786458333333336	48.161458333333336	391.99543598174927
+48.146875	49.36354166666667	415.3046975799451
+49.342708333333334	50.3125	391.99543598174927
+50.28854166666667	50.708333333333336	349.2282314330039
+50.671875	51.49791666666667	311.1269837220809
Binary file testdata/TRIOS-groundtruth/schubert/cello.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/schubert/mix.csv	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,402 @@
+0.563537414,63,0.609365079,0.351562,D#4 - vel 45
+0.563537414,55,0.609365079,0.351562,G3 - vel 45
+0.587482993,36,0.683333333,0.351562,C2 - vel 45
+1.250000000,55,0.546870748,0.351562,G3 - vel 45
+1.250000000,63,0.546870748,0.351562,D#4 - vel 45
+1.269773242,48,0.612517006,0.351562,C3 - vel 45
+1.874988662,55,0.547913832,0.351562,G3 - vel 45
+1.874988662,63,0.547913832,0.351562,D#4 - vel 45
+1.886439909,48,0.655215419,0.351562,C3 - vel 45
+2.500000000,63,0.517687074,0.492188,D#4 - vel 63
+2.500000000,55,0.517687074,0.492188,G3 - vel 63
+2.551020408,48,0.430226757,0.492188,C3 - vel 63
+2.997913832,41,0.258321995,0.351562,F2 - vel 45
+3.001020408,56,0.157301587,0.351562,G#3 - vel 45
+3.001020408,65,0.157301587,0.351562,F4 - vel 45
+3.163537414,48,0.505192743,0.351562,C3 - vel 45
+3.174988662,63,0.566666666,0.351562,D#4 - vel 45
+3.174988662,55,0.566666666,0.351562,G3 - vel 45
+3.738526077,48,0.621882086,0.351562,C3 - vel 45
+3.802063492,63,0.547936507,0.351562,D#4 - vel 45
+3.802063492,55,0.547936507,0.351562,G3 - vel 45
+4.365623582,48,0.644784580,0.351562,C3 - vel 45
+4.394784580,63,0.547913832,0.351562,D#4 - vel 45
+4.394784580,55,0.547913832,0.351562,G3 - vel 45
+5.000000000,63,0.453106575,0.492188,D#4 - vel 63
+5.000000000,55,0.453106575,0.492188,G3 - vel 63
+5.018730158,48,0.450000000,0.492188,C3 - vel 63
+5.444784580,65,0.151043083,0.351562,F4 - vel 45
+5.444784580,56,0.151043083,0.351562,G#3 - vel 45
+5.480204081,41,0.232290249,0.351562,F2 - vel 45
+5.593741496,79,1.312494331,0.351562,G5 - vel 45
+5.593741496,67,1.312494331,0.351562,G4 - vel 45
+5.593741496,55,0.609365079,0.351562,G3 - vel 45
+5.593741496,51,0.661451247,0.351562,D#3 - vel 45
+5.593741496,48,0.661451247,0.351562,C3 - vel 45
+5.595827664,63,0.607278911,0.351562,D#4 - vel 45
+5.595827664,55,0.659365079,0.351562,G3 - vel 45
+5.657278911,48,0.663537414,0.351562,C3 - vel 45
+6.263537414,55,0.600000000,0.351562,G3 - vel 45
+6.286439909,55,0.614580498,0.351562,G3 - vel 45
+6.286439909,51,0.614580498,0.351562,D#3 - vel 45
+6.286439909,48,0.614580498,0.351562,C3 - vel 45
+6.861451247,63,1.463537414,0.492188,D#4 - vel 63
+6.932290249,79,1.223945578,0.351562,G5 - vel 45
+6.932290249,67,1.223945578,0.351562,G4 - vel 45
+6.932290249,55,0.624988662,0.351562,G3 - vel 45
+6.932290249,51,0.624988662,0.351562,D#3 - vel 45
+6.932290249,48,0.624988662,0.351562,C3 - vel 45
+7.578117913,55,0.593741496,0.351562,G3 - vel 45
+7.578117913,51,0.593741496,0.351562,D#3 - vel 45
+7.578117913,48,0.593741496,0.351562,C3 - vel 45
+8.187482993,80,0.229183673,0.351562,G#5 - vel 45
+8.187482993,72,1.781247165,0.351562,C5 - vel 45
+8.187482993,56,0.630204081,0.351562,G#3 - vel 45
+8.187482993,53,0.630204081,0.351562,F3 - vel 45
+8.187482993,48,0.630204081,0.351562,C3 - vel 45
+8.333333333,82,0.296870748,0.351562,A#5 - vel 45
+8.505192743,84,1.473968253,0.351562,C6 - vel 45
+8.655192743,56,0.777097505,0.351562,G#3 - vel 45
+8.854149659,56,0.722925170,0.351562,G#3 - vel 45
+8.854149659,53,0.578140589,0.351562,F3 - vel 45
+8.854149659,48,0.578140589,0.351562,C3 - vel 45
+9.290612244,65,1.171882086,0.492188,F4 - vel 63
+9.479160997,56,0.510408163,0.351562,G#3 - vel 45
+9.479160997,53,0.510408163,0.351562,F3 - vel 45
+9.479160997,48,0.510408163,0.351562,C3 - vel 45
+10.031247165,82,0.609365079,0.351562,A#5 - vel 45
+10.031247165,70,0.609365079,0.351562,A#4 - vel 45
+10.031247165,56,0.557278911,0.351562,G#3 - vel 45
+10.031247165,53,0.557278911,0.351562,F3 - vel 45
+10.031247165,48,0.557278911,0.351562,C3 - vel 45
+10.294784580,62,0.342698412,0.351562,D4 - vel 45
+10.343741496,80,0.484376417,0.351562,G#5 - vel 45
+10.343741496,68,0.484376417,0.351562,G#4 - vel 45
+10.643741496,63,0.657278911,0.351562,D#4 - vel 45
+10.651020408,79,1.218752834,0.351562,G5 - vel 45
+10.651020408,67,1.218752834,0.351562,G4 - vel 45
+10.651020408,55,0.567709750,0.351562,G3 - vel 45
+10.651020408,51,0.567709750,0.351562,D#3 - vel 45
+10.651020408,48,0.567709750,0.351562,C3 - vel 45
+11.206235827,55,0.668752834,0.351562,G3 - vel 45
+11.235396825,55,0.807301587,0.351562,G3 - vel 45
+11.260408163,87,0.614580498,0.46875,D#6 - vel 60
+11.260408163,75,0.614580498,0.46875,D#5 - vel 60
+11.260408163,55,1.203129251,0.351562,G3 - vel 45
+11.260408163,51,0.614580498,0.351562,D#3 - vel 45
+11.260408163,48,0.614580498,0.351562,C3 - vel 45
+11.850000000,65,0.907278911,0.492188,F4 - vel 63
+11.885396825,83,0.239591836,0.5625,B5 - vel 72
+11.885396825,71,0.583333333,0.5625,B4 - vel 72
+11.885396825,55,0.908344671,0.5625,G3 - vel 72
+11.885396825,53,0.578140589,0.570312,F3 - vel 73
+11.885396825,50,0.578140589,0.570312,D3 - vel 73
+11.885396825,43,0.578140589,0.5625,G2 - vel 72
+11.911451247,68,0.588548752,0.46875,G#4 - vel 60
+12.031247165,84,0.177074829,0.5625,C6 - vel 72
+12.130204081,83,0.182290249,0.53125,B5 - vel 68
+12.218730158,84,0.161473922,0.5,C6 - vel 64
+12.322902494,83,0.437505668,0.492188,B5 - vel 63
+12.395827664,84,0.364580498,0.460938,C6 - vel 59
+12.474988662,67,0.366666666,0.570312,G4 - vel 73
+12.479160997,55,0.572902494,0.46875,G3 - vel 60
+12.479160997,53,0.572902494,0.46875,F3 - vel 60
+12.479160997,50,0.567709750,0.46875,D3 - vel 60
+12.479160997,43,0.572902494,0.46875,G2 - vel 60
+12.483333333,63,0.328117913,0.492188,D#4 - vel 63
+12.781247165,81,0.286439909,0.429688,A5 - vel 55
+12.788526077,62,0.305215419,0.351562,D4 - vel 45
+12.811451247,65,0.347913832,0.46875,F4 - vel 60
+12.901020408,83,0.177097505,0.390625,B5 - vel 50
+13.072902494,84,2.505215419,0.351562,C6 - vel 45
+13.072902494,72,2.505215419,0.351562,C5 - vel 45
+13.072902494,55,0.609387755,0.351562,G3 - vel 45
+13.072902494,51,0.609387755,0.351562,D#3 - vel 45
+13.072902494,48,0.609387755,0.351562,C3 - vel 45
+13.107278911,60,1.901043083,0.351562,C4 - vel 45
+13.136439909,63,1.327097505,0.351562,D#4 - vel 45
+13.703106575,55,0.588548752,0.351562,G3 - vel 45
+13.703106575,51,0.588548752,0.351562,D#3 - vel 45
+13.703106575,48,0.588548752,0.351562,C3 - vel 45
+14.338526077,55,0.588548752,0.351562,G3 - vel 45
+14.338526077,51,0.588548752,0.351562,D#3 - vel 45
+14.338526077,48,0.588548752,0.351562,C3 - vel 45
+14.958321995,55,0.625011337,0.492188,G3 - vel 63
+14.958321995,51,0.625011337,0.492188,D#3 - vel 63
+14.958321995,48,0.625011337,0.492188,C3 - vel 63
+15.432290249,56,0.156235827,0.351562,G#3 - vel 45
+15.432290249,53,0.156235827,0.351562,F3 - vel 45
+15.604149659,84,1.880204081,0.351562,C6 - vel 45
+15.604149659,72,1.880204081,0.351562,C5 - vel 45
+15.604149659,55,0.630204081,0.351562,G3 - vel 45
+15.604149659,51,0.630204081,0.351562,D#3 - vel 45
+15.604149659,48,0.630204081,0.351562,C3 - vel 45
+16.244784580,55,0.614580498,0.351562,G3 - vel 45
+16.260408163,55,0.643741496,0.351562,G3 - vel 45
+16.260408163,51,0.598956916,0.351562,D#3 - vel 45
+16.260408163,48,0.598956916,0.351562,C3 - vel 45
+16.885396825,55,0.598956916,0.351562,G3 - vel 45
+16.885396825,51,0.598956916,0.351562,D#3 - vel 45
+16.885396825,48,0.598956916,0.351562,C3 - vel 45
+16.915623582,63,1.419773242,0.492188,D#4 - vel 63
+17.500000000,84,0.588526077,0.351562,C6 - vel 45
+17.500000000,72,0.588526077,0.351562,C5 - vel 45
+17.500000000,55,0.598956916,0.351562,G3 - vel 45
+17.500000000,51,0.598956916,0.351562,D#3 - vel 45
+18.109365079,84,0.656258503,0.351562,C6 - vel 45
+18.109365079,72,0.656258503,0.351562,C5 - vel 45
+18.114580498,55,0.651043083,0.351562,G3 - vel 45
+18.114580498,51,0.651043083,0.351562,D#3 - vel 45
+18.447913832,82,1.083333333,0.351562,A#5 - vel 45
+18.447913832,70,1.083333333,0.351562,A#4 - vel 45
+18.602063492,55,0.798956916,0.351562,G3 - vel 45
+18.796870748,55,0.897913832,0.351562,G3 - vel 45
+18.796870748,51,0.604149659,0.351562,D#3 - vel 45
+19.248956916,63,1.091655328,0.492188,D#4 - vel 63
+19.411451247,79,1.203129251,0.351562,G5 - vel 45
+19.411451247,67,1.203129251,0.351562,G4 - vel 45
+19.411451247,55,0.624988662,0.351562,G3 - vel 45
+19.411451247,51,0.624988662,0.351562,D#3 - vel 45
+20.046870748,55,0.572902494,0.351562,G3 - vel 45
+20.046870748,51,0.572902494,0.351562,D#3 - vel 45
+20.046870748,48,0.572902494,0.351562,C3 - vel 45
+20.314580498,65,0.342698412,0.351562,F4 - vel 45
+20.607278911,63,0.644784580,0.351562,D#4 - vel 45
+20.635396825,79,1.203129251,0.351562,G5 - vel 45
+20.635396825,67,1.203129251,0.351562,G4 - vel 45
+20.635396825,55,0.619795918,0.351562,G3 - vel 45
+20.635396825,51,0.619795918,0.351562,D#3 - vel 45
+20.635396825,48,0.619795918,0.351562,C3 - vel 45
+20.635396825,43,0.619795918,0.351562,G2 - vel 45
+21.245827664,67,0.672902494,0.351562,G4 - vel 45
+21.250000000,55,0.624988662,0.351562,G3 - vel 45
+21.270816326,87,0.609387755,0.46875,D#6 - vel 60
+21.270816326,75,0.609387755,0.46875,D#5 - vel 60
+21.270816326,55,0.609387755,0.46875,G3 - vel 60
+21.270816326,51,0.609387755,0.46875,D#3 - vel 60
+21.270816326,48,0.609387755,0.46875,C3 - vel 60
+21.270816326,43,0.609387755,0.46875,G2 - vel 60
+21.850000000,65,0.638526077,0.46875,F4 - vel 60
+21.887482993,68,0.641678004,0.492188,G#4 - vel 63
+21.895827664,83,0.218752834,0.5625,B5 - vel 72
+21.895827664,71,0.546870748,0.5625,B4 - vel 72
+21.895827664,55,0.546870748,0.5625,G3 - vel 72
+21.895827664,53,0.546870748,0.5625,F3 - vel 72
+21.895827664,50,0.546870748,0.5625,D3 - vel 72
+21.895827664,43,0.546870748,0.5625,G2 - vel 72
+22.036439909,84,0.171882086,0.5625,C6 - vel 72
+22.124988662,83,0.171882086,0.53125,B5 - vel 68
+22.223945578,84,0.187505668,0.5,C6 - vel 64
+22.312494331,83,0.124988662,0.492188,B5 - vel 63
+22.432290249,84,0.359365079,0.460938,C6 - vel 59
+22.447913832,83,0.343741496,0.492188,B5 - vel 63
+22.459365079,63,0.294784580,0.570312,D#4 - vel 73
+22.468730158,55,0.609387755,0.46875,G3 - vel 60
+22.468730158,53,0.609387755,0.46875,F3 - vel 60
+22.468730158,50,0.609387755,0.46875,D3 - vel 60
+22.468730158,43,0.609387755,0.46875,G2 - vel 60
+22.537482993,67,0.323968253,0.492188,G4 - vel 63
+22.720816326,62,0.393764172,0.46875,D4 - vel 60
+22.807278911,81,0.390634920,0.429688,A5 - vel 55
+22.813537414,65,0.321859410,0.351562,F4 - vel 45
+22.927074829,83,0.406258503,0.390625,B5 - vel 50
+23.083333333,84,2.505192743,0.351562,C6 - vel 45
+23.083333333,72,2.505192743,0.351562,C5 - vel 45
+23.083333333,55,0.619773242,0.351562,G3 - vel 45
+23.083333333,51,0.619773242,0.351562,D#3 - vel 45
+23.083333333,48,0.619773242,0.351562,C3 - vel 45
+23.097913832,60,1.237482993,0.351562,C4 - vel 45
+23.138526077,63,1.705215419,0.351562,D#4 - vel 45
+23.734353741,55,0.593764172,0.351562,G3 - vel 45
+23.734353741,51,0.593764172,0.351562,D#3 - vel 45
+23.734353741,48,0.593764172,0.351562,C3 - vel 45
+24.364580498,55,0.614580498,0.351562,G3 - vel 45
+24.364580498,51,0.614580498,0.351562,D#3 - vel 45
+24.364580498,48,0.614580498,0.351562,C3 - vel 45
+25.000000000,55,0.604149659,0.492188,G3 - vel 63
+25.000000000,51,0.604149659,0.492188,D#3 - vel 63
+25.000000000,48,0.604149659,0.492188,C3 - vel 63
+25.447913832,56,0.166666666,0.351562,G#3 - vel 45
+25.447913832,53,0.166666666,0.351562,F3 - vel 45
+25.630204081,87,1.234376417,0.351562,D#6 - vel 45
+25.630204081,75,1.234376417,0.351562,D#5 - vel 45
+25.630204081,55,0.624988662,0.351562,G3 - vel 45
+25.630204081,51,0.624988662,0.351562,D#3 - vel 45
+25.630204081,48,0.624988662,0.351562,C3 - vel 45
+26.227074829,55,0.632290249,0.351562,G3 - vel 45
+26.286439909,55,0.588548752,0.351562,G3 - vel 45
+26.286439909,48,0.572925170,0.351562,C3 - vel 45
+26.870816326,67,1.650000000,0.492188,G4 - vel 63
+26.890612244,86,1.218752834,0.351562,D6 - vel 45
+26.890612244,74,1.218752834,0.351562,D5 - vel 45
+26.890612244,55,0.609387755,0.351562,G3 - vel 45
+26.890612244,50,0.609387755,0.351562,D3 - vel 45
+26.890612244,46,0.609387755,0.351562,A#2 - vel 45
+27.526031746,55,0.583333333,0.351562,G3 - vel 45
+27.526031746,50,0.583333333,0.351562,D3 - vel 45
+27.526031746,46,0.583333333,0.351562,A#2 - vel 45
+28.130204081,86,1.817709750,0.351562,D6 - vel 45
+28.130204081,74,1.817709750,0.351562,D5 - vel 45
+28.135396825,55,0.651043083,0.351562,G3 - vel 45
+28.135396825,51,0.651043083,0.351562,D#3 - vel 45
+28.479160997,79,1.494784580,0.351562,G5 - vel 45
+28.479160997,67,1.494784580,0.351562,G4 - vel 45
+28.700000000,55,0.695827664,0.351562,G3 - vel 45
+28.807278911,55,0.812494331,0.351562,G3 - vel 45
+28.807278911,51,0.588548752,0.351562,D#3 - vel 45
+29.358321995,58,1.603129251,0.492188,A#3 - vel 63
+29.411451247,55,0.572902494,0.351562,G3 - vel 45
+29.411451247,51,0.572902494,0.351562,D#3 - vel 45
+29.989569160,79,0.609387755,0.351562,G5 - vel 45
+29.989569160,67,0.609387755,0.351562,G4 - vel 45
+29.989569160,55,0.609387755,0.351562,G3 - vel 45
+29.989569160,51,0.609387755,0.351562,D#3 - vel 45
+30.614580498,79,1.234376417,0.351562,G5 - vel 45
+30.614580498,67,1.234376417,0.351562,G4 - vel 45
+30.614580498,55,0.619773242,0.351562,G3 - vel 45
+30.614580498,48,0.619773242,0.351562,C3 - vel 45
+31.155192743,60,0.832290249,0.351562,C4 - vel 45
+31.236439909,51,0.915623582,0.351562,D#3 - vel 45
+31.250000000,55,0.598956916,0.351562,G3 - vel 45
+31.250000000,48,0.598956916,0.351562,C3 - vel 45
+31.852063492,60,1.305215419,0.351562,C4 - vel 45
+31.864580498,81,1.255192743,0.351562,A5 - vel 45
+31.864580498,69,1.255192743,0.351562,A4 - vel 45
+31.864580498,55,0.619773242,0.351562,G3 - vel 45
+31.864580498,48,0.619773242,0.351562,C3 - vel 45
+31.874988662,63,1.262494331,0.351562,D#4 - vel 45
+32.500000000,54,0.614580498,0.351562,F#3 - vel 45
+32.500000000,48,0.614580498,0.351562,C3 - vel 45
+32.791655328,79,0.322925170,0.351562,G5 - vel 45
+32.791655328,67,0.322925170,0.351562,G4 - vel 45
+33.100000000,62,3.080204081,0.351562,D4 - vel 45
+33.130204081,79,1.807278911,0.351562,G5 - vel 45
+33.130204081,67,1.807278911,0.351562,G4 - vel 45
+33.130204081,55,0.604149659,0.351562,G3 - vel 45
+33.130204081,43,0.604149659,0.351562,G2 - vel 45
+33.152063492,59,3.082290249,0.351562,B3 - vel 45
+33.750000000,55,0.583333333,0.351562,G3 - vel 45
+33.750000000,43,0.583333333,0.351562,G2 - vel 45
+34.343741496,55,0.609365079,0.351562,G3 - vel 45
+34.343741496,43,0.609365079,0.351562,G2 - vel 45
+34.968730158,79,0.609387755,0.492188,G5 - vel 63
+35.593741496,67,0.583333333,0.351562,G4 - vel 45
+36.192698412,55,0.635419501,0.492188,G3 - vel 63
+36.211451247,60,0.677074829,0.492188,C4 - vel 63
+36.229160997,63,0.512494331,0.492188,D#4 - vel 63
+36.820816326,62,1.843764172,0.351562,D4 - vel 45
+36.854149659,43,0.619795918,0.351562,G2 - vel 45
+36.856235827,59,1.808344671,0.351562,B3 - vel 45
+37.473945578,79,0.630204081,0.492188,G5 - vel 63
+38.124988662,67,1.484376417,0.351562,G4 - vel 45
+38.672902494,60,0.664580498,0.492188,C4 - vel 63
+38.695827664,63,0.437505668,0.492188,D#4 - vel 63
+38.739569160,55,0.598956916,0.492188,G3 - vel 63
+39.218730158,62,1.435419501,0.351562,D4 - vel 45
+39.348956916,43,0.578117913,0.351562,G2 - vel 45
+39.352063492,59,1.331269841,0.351562,B3 - vel 45
+39.651020408,67,0.281269841,0.351562,G4 - vel 45
+39.942698412,69,0.286462585,0.351562,A4 - vel 45
+39.942698412,41,0.218752834,0.351562,F2 - vel 45
+40.078117913,43,0.156235827,0.351562,G2 - vel 45
+40.177074829,41,0.135419501,0.351562,F2 - vel 45
+40.244784580,71,0.322902494,0.351562,B4 - vel 45
+40.244784580,43,0.135419501,0.351562,G2 - vel 45
+40.328117913,41,0.109365079,0.351562,F2 - vel 45
+40.395827664,43,0.124988662,0.351562,G2 - vel 45
+40.453106575,41,0.125011337,0.351562,F2 - vel 45
+40.588526077,72,0.578140589,0.351562,C5 - vel 45
+40.588526077,39,0.578140589,0.351562,D#2 - vel 45
+40.624988662,63,0.737505668,0.351562,D#4 - vel 45
+40.676031746,60,0.756258503,0.351562,C4 - vel 45
+41.171859410,87,0.625011337,0.492188,D#6 - vel 63
+41.171859410,75,0.625011337,0.492188,D#5 - vel 63
+41.171859410,60,0.625011337,0.351562,C4 - vel 45
+41.171859410,55,0.625011337,0.351562,G3 - vel 45
+41.171859410,48,0.625011337,0.351562,C3 - vel 45
+41.817687074,84,0.921882086,0.351562,C6 - vel 45
+41.817687074,72,0.921882086,0.351562,C5 - vel 45
+41.817687074,60,0.614603174,0.351562,C4 - vel 45
+41.817687074,55,0.614603174,0.351562,G3 - vel 45
+41.817687074,48,0.614603174,0.351562,C3 - vel 45
+42.219773242,63,0.263560090,0.351562,D#4 - vel 45
+42.458321995,60,0.598956916,0.351562,C4 - vel 45
+42.458321995,51,0.598956916,0.351562,D#3 - vel 45
+42.486439909,65,0.309387755,0.390625,F4 - vel 50
+42.765623582,75,0.312494331,0.351562,D#5 - vel 45
+42.812494331,67,0.364580498,0.429688,G4 - vel 55
+43.083333333,74,0.604149659,0.351562,D5 - vel 45
+43.083333333,60,0.604149659,0.351562,C4 - vel 45
+43.083333333,53,0.604149659,0.351562,F3 - vel 45
+43.142698412,68,1.196870748,0.46875,G#4 - vel 60
+43.692698412,74,0.947913832,0.351562,D5 - vel 45
+43.692698412,60,0.619795918,0.375,C4 - vel 48
+43.692698412,53,0.619795918,0.375,F3 - vel 48
+44.338526077,67,0.646870748,0.46875,G4 - vel 60
+44.343741496,59,0.619795918,0.40625,B3 - vel 52
+44.343741496,55,0.619795918,0.40625,G3 - vel 52
+44.661451247,75,0.302086167,0.40625,D#5 - vel 52
+44.674988662,67,0.596870748,0.351562,G4 - vel 45
+44.807278911,77,0.281247165,0.414062,F5 - vel 53
+44.979160997,79,0.468752834,0.421875,G5 - vel 54
+44.979160997,65,0.593741496,0.4375,F4 - vel 56
+44.979160997,59,0.593741496,0.4375,B3 - vel 56
+44.979160997,55,0.593741496,0.4375,G3 - vel 56
+44.988526077,69,0.291678004,0.382812,A4 - vel 49
+45.124988662,77,0.427074829,0.429688,F5 - vel 55
+45.203106575,65,0.585419501,0.46875,F4 - vel 60
+45.255192743,75,0.338548752,0.4375,D#5 - vel 56
+45.284353741,71,0.331269841,0.414062,B4 - vel 53
+45.401020408,74,0.192721088,0.453125,D5 - vel 58
+45.604149659,72,0.625011337,0.46875,C5 - vel 60
+45.604149659,63,0.625011337,0.46875,D#4 - vel 60
+45.604149659,60,0.625011337,0.46875,C4 - vel 60
+45.604149659,56,0.625011337,0.46875,G#3 - vel 60
+45.615623582,72,0.867709750,0.445312,C5 - vel 57
+45.624988662,63,1.262494331,0.351562,D#4 - vel 45
+46.239569160,87,0.625011337,0.632812,D#6 - vel 81
+46.239569160,75,0.625011337,0.46875,D#5 - vel 60
+46.239569160,60,0.609387755,0.46875,C4 - vel 60
+46.239569160,56,0.609387755,0.46875,G#3 - vel 60
+46.497913832,72,0.490612244,0.53125,C5 - vel 68
+46.885396825,84,0.895850340,0.46875,C6 - vel 60
+46.885396825,72,0.895850340,0.46875,C5 - vel 60
+46.885396825,60,0.598956916,0.46875,C4 - vel 60
+46.885396825,55,0.598956916,0.46875,G3 - vel 60
+46.885396825,51,0.598956916,0.46875,D#3 - vel 60
+46.892698412,75,0.667709750,0.570312,D#5 - vel 73
+47.170816326,63,0.308344671,0.46875,D#4 - vel 60
+47.472902494,65,0.347913832,0.46875,F4 - vel 60
+47.515623582,60,0.588526077,0.46875,C4 - vel 60
+47.515623582,55,0.588526077,0.46875,G3 - vel 60
+47.515623582,51,0.588526077,0.46875,D#3 - vel 60
+47.519773242,72,0.653129251,0.46875,C5 - vel 60
+47.786439909,67,0.375011337,0.46875,G4 - vel 60
+47.796870748,75,0.302086167,0.46875,D#5 - vel 60
+48.114580498,74,0.635419501,0.46875,D5 - vel 60
+48.114580498,60,0.635419501,0.46875,C4 - vel 60
+48.114580498,53,0.635419501,0.46875,F3 - vel 60
+48.146870748,68,1.216666666,0.46875,G#4 - vel 60
+48.770816326,74,0.963537414,0.351562,D5 - vel 45
+48.770816326,60,0.625011337,0.351562,C4 - vel 45
+48.770816326,53,0.625011337,0.351562,F3 - vel 45
+49.342698412,67,0.969795918,0.351562,G4 - vel 45
+49.411451247,59,0.614580498,0.351562,B3 - vel 45
+49.411451247,55,0.614580498,0.351562,G3 - vel 45
+49.620816326,79,0.352086167,0.351562,G5 - vel 45
+49.744784580,75,0.218752834,0.351562,D#5 - vel 45
+49.906235827,77,0.218752834,0.351562,F5 - vel 45
+49.963537414,81,0.343741496,0.351562,A5 - vel 45
+50.052063492,79,0.281269841,0.351562,G5 - vel 45
+50.052063492,43,0.619795918,0.351562,G2 - vel 45
+50.052063492,31,0.619795918,0.351562,G1 - vel 45
+50.218730158,77,0.281269841,0.351562,F5 - vel 45
+50.259365079,83,0.371882086,0.351562,B5 - vel 45
+50.288526077,65,0.419795918,0.351562,F4 - vel 45
+50.354149659,75,0.234376417,0.351562,D#5 - vel 45
+50.520816326,74,0.270839002,0.351562,D5 - vel 45
+50.602063492,84,1.045850340,0.351562,C6 - vel 45
+50.671859410,63,0.826054421,0.351562,D#4 - vel 45
+50.692698412,72,0.880204081,0.351562,C5 - vel 45
+50.692698412,44,0.880204081,0.351562,G#2 - vel 45
+50.692698412,32,0.880204081,0.351562,G#1 - vel 45
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/schubert/mix.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,402 @@
+0.563537414	1.172902493	311.1269837220809
+0.563537414	1.172902493	195.99771799087463
+0.587482993	1.270816326	65.40639132514966
+1.250000000	1.796870748	195.99771799087463
+1.250000000	1.796870748	311.1269837220809
+1.269773242	1.882290248	130.8127826502993
+1.874988662	2.422902494	195.99771799087463
+1.874988662	2.422902494	311.1269837220809
+1.886439909	2.541655328	130.8127826502993
+2.500000000	3.017687074	311.1269837220809
+2.500000000	3.017687074	195.99771799087463
+2.551020408	2.981247165	130.8127826502993
+2.997913832	3.2562358270000002	87.30705785825097
+3.001020408	3.158321995	207.65234878997256
+3.001020408	3.158321995	349.2282314330039
+3.163537414	3.6687301569999997	130.8127826502993
+3.174988662	3.7416553280000002	311.1269837220809
+3.174988662	3.7416553280000002	195.99771799087463
+3.738526077	4.360408163	130.8127826502993
+3.802063492	4.349999999	311.1269837220809
+3.802063492	4.349999999	195.99771799087463
+4.365623582	5.010408161999999	130.8127826502993
+4.394784580	4.942698412	311.1269837220809
+4.394784580	4.942698412	195.99771799087463
+5.000000000	5.453106575	311.1269837220809
+5.000000000	5.453106575	195.99771799087463
+5.018730158	5.4687301580000005	130.8127826502993
+5.444784580	5.595827663	349.2282314330039
+5.444784580	5.595827663	207.65234878997256
+5.480204081	5.71249433	87.30705785825097
+5.593741496	6.906235827	783.9908719634985
+5.593741496	6.906235827	391.99543598174927
+5.593741496	6.203106575	195.99771799087463
+5.593741496	6.255192743	155.56349186104046
+5.593741496	6.255192743	130.8127826502993
+5.595827664	6.203106575	311.1269837220809
+5.595827664	6.255192742999999	195.99771799087463
+5.657278911	6.320816325	130.8127826502993
+6.263537414	6.863537414	195.99771799087463
+6.286439909	6.901020407000001	195.99771799087463
+6.286439909	6.901020407000001	155.56349186104046
+6.286439909	6.901020407000001	130.8127826502993
+6.861451247	8.324988660999999	311.1269837220809
+6.932290249	8.156235827	783.9908719634985
+6.932290249	8.156235827	391.99543598174927
+6.932290249	7.557278911	195.99771799087463
+6.932290249	7.557278911	155.56349186104046
+6.932290249	7.557278911	130.8127826502993
+7.578117913	8.171859409	195.99771799087463
+7.578117913	8.171859409	155.56349186104046
+7.578117913	8.171859409	130.8127826502993
+8.187482993	8.416666666	830.6093951598903
+8.187482993	9.968730158	523.2511306011972
+8.187482993	8.817687074	207.65234878997256
+8.187482993	8.817687074	174.61411571650194
+8.187482993	8.817687074	130.8127826502993
+8.333333333	8.630204081	932.3275230361799
+8.505192743	9.979160996000001	1046.5022612023945
+8.655192743	9.432290248000001	207.65234878997256
+8.854149659	9.577074829	207.65234878997256
+8.854149659	9.432290248000001	174.61411571650194
+8.854149659	9.432290248000001	130.8127826502993
+9.290612244	10.46249433	349.2282314330039
+9.479160997	9.989569159999999	207.65234878997256
+9.479160997	9.989569159999999	174.61411571650194
+9.479160997	9.989569159999999	130.8127826502993
+10.031247165	10.640612244	932.3275230361799
+10.031247165	10.640612244	466.1637615180899
+10.031247165	10.588526076	207.65234878997256
+10.031247165	10.588526076	174.61411571650194
+10.031247165	10.588526076	130.8127826502993
+10.294784580	10.637482992	293.6647679174076
+10.343741496	10.828117913	830.6093951598903
+10.343741496	10.828117913	415.3046975799451
+10.643741496	11.301020407000001	311.1269837220809
+10.651020408	11.869773242	783.9908719634985
+10.651020408	11.869773242	391.99543598174927
+10.651020408	11.218730158000001	195.99771799087463
+10.651020408	11.218730158000001	155.56349186104046
+10.651020408	11.218730158000001	130.8127826502993
+11.206235827	11.874988661	195.99771799087463
+11.235396825	12.042698412	195.99771799087463
+11.260408163	11.874988661	1244.5079348883237
+11.260408163	11.874988661	622.2539674441618
+11.260408163	12.463537414	195.99771799087463
+11.260408163	11.874988661	155.56349186104046
+11.260408163	11.874988661	130.8127826502993
+11.850000000	12.757278911	349.2282314330039
+11.885396825	12.124988661000001	987.7666025122483
+11.885396825	12.468730158000001	493.8833012561241
+11.885396825	12.793741496	195.99771799087463
+11.885396825	12.463537414000001	174.61411571650194
+11.885396825	12.463537414000001	146.8323839587038
+11.885396825	12.463537414000001	97.99885899543733
+11.911451247	12.499999999	415.3046975799451
+12.031247165	12.208321994	1046.5022612023945
+12.130204081	12.31249433	987.7666025122483
+12.218730158	12.38020408	1046.5022612023945
+12.322902494	12.760408162	987.7666025122483
+12.395827664	12.760408162000001	1046.5022612023945
+12.474988662	12.841655328	391.99543598174927
+12.479160997	13.052063490999998	195.99771799087463
+12.479160997	13.052063490999998	174.61411571650194
+12.479160997	13.046870747	146.8323839587038
+12.479160997	13.052063490999998	97.99885899543733
+12.483333333	12.811451245999999	311.1269837220809
+12.781247165	13.067687074	880.0
+12.788526077	13.093741496	293.6647679174076
+12.811451247	13.159365079	349.2282314330039
+12.901020408	13.078117913000002	987.7666025122483
+13.072902494	15.578117913	1046.5022612023945
+13.072902494	15.578117913	523.2511306011972
+13.072902494	13.682290249	195.99771799087463
+13.072902494	13.682290249	155.56349186104046
+13.072902494	13.682290249	130.8127826502993
+13.107278911	15.008321994	261.6255653005986
+13.136439909	14.463537414	311.1269837220809
+13.703106575	14.291655326999999	195.99771799087463
+13.703106575	14.291655326999999	155.56349186104046
+13.703106575	14.291655326999999	130.8127826502993
+14.338526077	14.927074828999999	195.99771799087463
+14.338526077	14.927074828999999	155.56349186104046
+14.338526077	14.927074828999999	130.8127826502993
+14.958321995	15.583333332	195.99771799087463
+14.958321995	15.583333332	155.56349186104046
+14.958321995	15.583333332	130.8127826502993
+15.432290249	15.588526075999999	207.65234878997256
+15.432290249	15.588526075999999	174.61411571650194
+15.604149659	17.48435374	1046.5022612023945
+15.604149659	17.48435374	523.2511306011972
+15.604149659	16.23435374	195.99771799087463
+15.604149659	16.23435374	155.56349186104046
+15.604149659	16.23435374	130.8127826502993
+16.244784580	16.859365078	195.99771799087463
+16.260408163	16.904149659	195.99771799087463
+16.260408163	16.859365079	155.56349186104046
+16.260408163	16.859365079	130.8127826502993
+16.885396825	17.484353741	195.99771799087463
+16.885396825	17.484353741	155.56349186104046
+16.885396825	17.484353741	130.8127826502993
+16.915623582	18.335396824	311.1269837220809
+17.500000000	18.088526077	1046.5022612023945
+17.500000000	18.088526077	523.2511306011972
+17.500000000	18.098956916	195.99771799087463
+17.500000000	18.098956916	155.56349186104046
+18.109365079	18.765623582	1046.5022612023945
+18.109365079	18.765623582	523.2511306011972
+18.114580498	18.765623581	195.99771799087463
+18.114580498	18.765623581	155.56349186104046
+18.447913832	19.531247165	932.3275230361799
+18.447913832	19.531247165	466.1637615180899
+18.602063492	19.401020408	195.99771799087463
+18.796870748	19.69478458	195.99771799087463
+18.796870748	19.401020407	155.56349186104046
+19.248956916	20.340612244000003	311.1269837220809
+19.411451247	20.614580498	783.9908719634985
+19.411451247	20.614580498	391.99543598174927
+19.411451247	20.036439909	195.99771799087463
+19.411451247	20.036439909	155.56349186104046
+20.046870748	20.619773242	195.99771799087463
+20.046870748	20.619773242	155.56349186104046
+20.046870748	20.619773242	130.8127826502993
+20.314580498	20.657278910000002	349.2282314330039
+20.607278911	21.252063491	311.1269837220809
+20.635396825	21.838526076	783.9908719634985
+20.635396825	21.838526076	391.99543598174927
+20.635396825	21.255192743000002	195.99771799087463
+20.635396825	21.255192743000002	155.56349186104046
+20.635396825	21.255192743000002	130.8127826502993
+20.635396825	21.255192743000002	97.99885899543733
+21.245827664	21.918730158	391.99543598174927
+21.250000000	21.874988662	195.99771799087463
+21.270816326	21.880204081	1244.5079348883237
+21.270816326	21.880204081	622.2539674441618
+21.270816326	21.880204081	195.99771799087463
+21.270816326	21.880204081	155.56349186104046
+21.270816326	21.880204081	130.8127826502993
+21.270816326	21.880204081	97.99885899543733
+21.850000000	22.488526077	349.2282314330039
+21.887482993	22.529160996999998	415.3046975799451
+21.895827664	22.114580498	987.7666025122483
+21.895827664	22.442698412	493.8833012561241
+21.895827664	22.442698412	195.99771799087463
+21.895827664	22.442698412	174.61411571650194
+21.895827664	22.442698412	146.8323839587038
+21.895827664	22.442698412	97.99885899543733
+22.036439909	22.208321995	1046.5022612023945
+22.124988662	22.296870748	987.7666025122483
+22.223945578	22.411451246	1046.5022612023945
+22.312494331	22.437482993	987.7666025122483
+22.432290249	22.791655328	1046.5022612023945
+22.447913832	22.791655328	987.7666025122483
+22.459365079	22.754149659000003	311.1269837220809
+22.468730158	23.078117913	195.99771799087463
+22.468730158	23.078117913	174.61411571650194
+22.468730158	23.078117913	146.8323839587038
+22.468730158	23.078117913	97.99885899543733
+22.537482993	22.861451246	391.99543598174927
+22.720816326	23.114580498000002	293.6647679174076
+22.807278911	23.197913831	880.0
+22.813537414	23.135396823999997	349.2282314330039
+22.927074829	23.333333332	987.7666025122483
+23.083333333	25.588526075999997	1046.5022612023945
+23.083333333	25.588526075999997	523.2511306011972
+23.083333333	23.703106575	195.99771799087463
+23.083333333	23.703106575	155.56349186104046
+23.083333333	23.703106575	130.8127826502993
+23.097913832	24.335396825	261.6255653005986
+23.138526077	24.843741496	311.1269837220809
+23.734353741	24.328117913	195.99771799087463
+23.734353741	24.328117913	155.56349186104046
+23.734353741	24.328117913	130.8127826502993
+24.364580498	24.979160995999997	195.99771799087463
+24.364580498	24.979160995999997	155.56349186104046
+24.364580498	24.979160995999997	130.8127826502993
+25.000000000	25.604149659	195.99771799087463
+25.000000000	25.604149659	155.56349186104046
+25.000000000	25.604149659	130.8127826502993
+25.447913832	25.614580498000002	207.65234878997256
+25.447913832	25.614580498000002	174.61411571650194
+25.630204081	26.864580498	1244.5079348883237
+25.630204081	26.864580498	622.2539674441618
+25.630204081	26.255192743	195.99771799087463
+25.630204081	26.255192743	155.56349186104046
+25.630204081	26.255192743	130.8127826502993
+26.227074829	26.859365078	195.99771799087463
+26.286439909	26.874988661	195.99771799087463
+26.286439909	26.859365079	130.8127826502993
+26.870816326	28.520816326	391.99543598174927
+26.890612244	28.109365078	1174.6590716696303
+26.890612244	28.109365078	587.3295358348151
+26.890612244	27.499999999	195.99771799087463
+26.890612244	27.499999999	146.8323839587038
+26.890612244	27.499999999	116.54094037952248
+27.526031746	28.109365079	195.99771799087463
+27.526031746	28.109365079	146.8323839587038
+27.526031746	28.109365079	116.54094037952248
+28.130204081	29.947913830999997	1174.6590716696303
+28.130204081	29.947913830999997	587.3295358348151
+28.135396825	28.786439908000002	195.99771799087463
+28.135396825	28.786439908000002	155.56349186104046
+28.479160997	29.973945577000002	783.9908719634985
+28.479160997	29.973945577000002	391.99543598174927
+28.700000000	29.395827664	195.99771799087463
+28.807278911	29.619773242	195.99771799087463
+28.807278911	29.395827663000002	155.56349186104046
+29.358321995	30.961451246	233.08188075904496
+29.411451247	29.984353741	195.99771799087463
+29.411451247	29.984353741	155.56349186104046
+29.989569160	30.598956915	783.9908719634985
+29.989569160	30.598956915	391.99543598174927
+29.989569160	30.598956915	195.99771799087463
+29.989569160	30.598956915	155.56349186104046
+30.614580498	31.848956915	783.9908719634985
+30.614580498	31.848956915	391.99543598174927
+30.614580498	31.23435374	195.99771799087463
+30.614580498	31.23435374	130.8127826502993
+31.155192743	31.987482992	261.6255653005986
+31.236439909	32.152063491	155.56349186104046
+31.250000000	31.848956916	195.99771799087463
+31.250000000	31.848956916	130.8127826502993
+31.852063492	33.157278911	261.6255653005986
+31.864580498	33.119773241	880.0
+31.864580498	33.119773241	440.0
+31.864580498	32.484353739999996	195.99771799087463
+31.864580498	32.484353739999996	130.8127826502993
+31.874988662	33.137482993	311.1269837220809
+32.500000000	33.114580498	184.9972113558172
+32.500000000	33.114580498	130.8127826502993
+32.791655328	33.114580497999995	783.9908719634985
+32.791655328	33.114580497999995	391.99543598174927
+33.100000000	36.180204081	293.6647679174076
+33.130204081	34.937482992	783.9908719634985
+33.130204081	34.937482992	391.99543598174927
+33.130204081	33.73435374	195.99771799087463
+33.130204081	33.73435374	97.99885899543733
+33.152063492	36.23435374100001	246.94165062806206
+33.750000000	34.333333333	195.99771799087463
+33.750000000	34.333333333	97.99885899543733
+34.343741496	34.953106575	195.99771799087463
+34.343741496	34.953106575	97.99885899543733
+34.968730158	35.578117913	783.9908719634985
+35.593741496	36.177074829	391.99543598174927
+36.192698412	36.828117913	195.99771799087463
+36.211451247	36.888526076	261.6255653005986
+36.229160997	36.741655328	311.1269837220809
+36.820816326	38.664580498	293.6647679174076
+36.854149659	37.473945577	97.99885899543733
+36.856235827	38.664580498	246.94165062806206
+37.473945578	38.104149659	783.9908719634985
+38.124988662	39.609365079	391.99543598174927
+38.672902494	39.337482992	261.6255653005986
+38.695827664	39.133333332	311.1269837220809
+38.739569160	39.338526076	195.99771799087463
+39.218730158	40.654149659	293.6647679174076
+39.348956916	39.927074829	97.99885899543733
+39.352063492	40.683333333	246.94165062806206
+39.651020408	39.932290249	391.99543598174927
+39.942698412	40.229160997	440.0
+39.942698412	40.161451246	87.30705785825097
+40.078117913	40.23435374	97.99885899543733
+40.177074829	40.31249433	87.30705785825097
+40.244784580	40.567687074	493.8833012561241
+40.244784580	40.380204081	97.99885899543733
+40.328117913	40.437482992	87.30705785825097
+40.395827664	40.520816326	97.99885899543733
+40.453106575	40.578117911999996	87.30705785825097
+40.588526077	41.166666666	523.2511306011972
+40.588526077	41.166666666	77.78174593052023
+40.624988662	41.36249433	311.1269837220809
+40.676031746	41.432290249	261.6255653005986
+41.171859410	41.796870747	1244.5079348883237
+41.171859410	41.796870747	622.2539674441618
+41.171859410	41.796870747	261.6255653005986
+41.171859410	41.796870747	195.99771799087463
+41.171859410	41.796870747	130.8127826502993
+41.817687074	42.739569159999995	1046.5022612023945
+41.817687074	42.739569159999995	523.2511306011972
+41.817687074	42.432290248	261.6255653005986
+41.817687074	42.432290248	195.99771799087463
+41.817687074	42.432290248	130.8127826502993
+42.219773242	42.483333332	311.1269837220809
+42.458321995	43.057278911	261.6255653005986
+42.458321995	43.057278911	155.56349186104046
+42.486439909	42.795827664	349.2282314330039
+42.765623582	43.07811791300001	622.2539674441618
+42.812494331	43.177074829000006	391.99543598174927
+43.083333333	43.687482992	587.3295358348151
+43.083333333	43.687482992	261.6255653005986
+43.083333333	43.687482992	174.61411571650194
+43.142698412	44.33956916	415.3046975799451
+43.692698412	44.640612243999996	587.3295358348151
+43.692698412	44.31249433	261.6255653005986
+43.692698412	44.31249433	174.61411571650194
+44.338526077	44.985396824999995	391.99543598174927
+44.343741496	44.963537414	246.94165062806206
+44.343741496	44.963537414	195.99771799087463
+44.661451247	44.963537414	622.2539674441618
+44.674988662	45.27185941	391.99543598174927
+44.807278911	45.088526076	698.4564628660078
+44.979160997	45.447913831	783.9908719634985
+44.979160997	45.572902493	349.2282314330039
+44.979160997	45.572902493	246.94165062806206
+44.979160997	45.572902493	195.99771799087463
+44.988526077	45.280204081	440.0
+45.124988662	45.552063491	698.4564628660078
+45.203106575	45.788526076	349.2282314330039
+45.255192743	45.593741495	622.2539674441618
+45.284353741	45.615623582	493.8833012561241
+45.401020408	45.593741496	587.3295358348151
+45.604149659	46.229160996	523.2511306011972
+45.604149659	46.229160996	311.1269837220809
+45.604149659	46.229160996	261.6255653005986
+45.604149659	46.229160996	207.65234878997256
+45.615623582	46.483333332	523.2511306011972
+45.624988662	46.887482993	311.1269837220809
+46.239569160	46.864580497	1244.5079348883237
+46.239569160	46.864580497	622.2539674441618
+46.239569160	46.848956915	261.6255653005986
+46.239569160	46.848956915	207.65234878997256
+46.497913832	46.988526076	523.2511306011972
+46.885396825	47.781247165	1046.5022612023945
+46.885396825	47.781247165	523.2511306011972
+46.885396825	47.484353741	261.6255653005986
+46.885396825	47.484353741	195.99771799087463
+46.885396825	47.484353741	155.56349186104046
+46.892698412	47.560408162	622.2539674441618
+47.170816326	47.479160997	311.1269837220809
+47.472902494	47.820816326000006	349.2282314330039
+47.515623582	48.104149659	261.6255653005986
+47.515623582	48.104149659	195.99771799087463
+47.515623582	48.104149659	155.56349186104046
+47.519773242	48.172902493	523.2511306011972
+47.786439909	48.161451246	391.99543598174927
+47.796870748	48.098956915	622.2539674441618
+48.114580498	48.749999999	587.3295358348151
+48.114580498	48.749999999	261.6255653005986
+48.114580498	48.749999999	174.61411571650194
+48.146870748	49.363537414	415.3046975799451
+48.770816326	49.73435374	587.3295358348151
+48.770816326	49.395827663	261.6255653005986
+48.770816326	49.395827663	174.61411571650194
+49.342698412	50.31249433	391.99543598174927
+49.411451247	50.026031745000004	246.94165062806206
+49.411451247	50.026031745000004	195.99771799087463
+49.620816326	49.97290249300001	783.9908719634985
+49.744784580	49.963537414	622.2539674441618
+49.906235827	50.124988661	698.4564628660078
+49.963537414	50.30727891	880.0
+50.052063492	50.333333333	783.9908719634985
+50.052063492	50.67185941	97.99885899543733
+50.052063492	50.67185941	48.999429497718666
+50.218730158	50.499999998999996	698.4564628660078
+50.259365079	50.631247165	987.7666025122483
+50.288526077	50.708321995	349.2282314330039
+50.354149659	50.588526076	622.2539674441618
+50.520816326	50.791655328000004	587.3295358348151
+50.602063492	51.647913832	1046.5022612023945
+50.671859410	51.497913831000005	311.1269837220809
+50.692698412	51.572902493	523.2511306011972
+50.692698412	51.572902493	103.82617439498628
+50.692698412	51.572902493	51.91308719749314
Binary file testdata/TRIOS-groundtruth/schubert/mix.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/schubert/piano.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,292 @@
+5.59375	6.255208333333333	130.8127826502993
+5.59375	6.255208333333333	155.56349186104046
+5.59375	6.255208333333333	195.99771799087463
+5.59375	6.90625	391.99543598174927
+5.59375	6.90625	783.9908719634985
+6.286458333333333	6.901041666666667	130.8127826502993
+6.286458333333333	6.901041666666667	155.56349186104046
+6.286458333333333	6.901041666666667	195.99771799087463
+6.932291666666667	7.557291666666667	130.8127826502993
+6.932291666666667	7.557291666666667	155.56349186104046
+6.932291666666667	7.557291666666667	195.99771799087463
+6.932291666666667	8.15625	391.99543598174927
+6.932291666666667	8.15625	783.9908719634985
+7.578125	8.171875	130.8127826502993
+7.578125	8.171875	155.56349186104046
+7.578125	8.171875	195.99771799087463
+8.1875	8.817708333333334	130.8127826502993
+8.1875	8.817708333333334	174.61411571650194
+8.1875	8.817708333333334	207.65234878997256
+8.1875	9.96875	523.2511306011972
+8.1875	8.416666666666666	830.6093951598903
+8.333333333333334	8.630208333333334	932.3275230361799
+8.505208333333334	9.979166666666666	1046.5022612023945
+8.854166666666666	9.432291666666666	130.8127826502993
+8.854166666666666	9.432291666666666	174.61411571650194
+8.854166666666666	9.432291666666666	207.65234878997256
+9.479166666666666	9.989583333333334	130.8127826502993
+9.479166666666666	9.989583333333334	174.61411571650194
+9.479166666666666	9.989583333333334	207.65234878997256
+10.03125	10.588541666666666	130.8127826502993
+10.03125	10.588541666666666	174.61411571650194
+10.03125	10.588541666666666	207.65234878997256
+10.03125	10.640625	466.1637615180899
+10.03125	10.640625	932.3275230361799
+10.34375	10.828125	415.3046975799451
+10.34375	10.828125	830.6093951598903
+10.651041666666666	11.21875	130.8127826502993
+10.651041666666666	11.21875	155.56349186104046
+10.651041666666666	11.21875	195.99771799087463
+10.651041666666666	11.869791666666666	391.99543598174927
+10.651041666666666	11.869791666666666	783.9908719634985
+11.260416666666666	11.875	130.8127826502993
+11.260416666666666	11.875	155.56349186104046
+11.260416666666666	11.875	195.99771799087463
+11.260416666666666	11.875	622.2539674441618
+11.260416666666666	11.875	1244.5079348883237
+11.885416666666666	12.463541666666666	97.99885899543733
+11.885416666666666	12.463541666666666	146.8323839587038
+11.885416666666666	12.463541666666666	174.61411571650194
+11.885416666666666	12.463541666666666	195.99771799087463
+11.885416666666666	12.46875	493.8833012561241
+11.885416666666666	12.125	987.7666025122483
+12.03125	12.208333333333334	1046.5022612023945
+12.130208333333334	12.3125	987.7666025122483
+12.21875	12.380208333333334	1046.5022612023945
+12.322916666666666	12.760416666666666	987.7666025122483
+12.395833333333334	12.760416666666666	1046.5022612023945
+12.479166666666666	13.052083333333334	97.99885899543733
+12.479166666666666	13.046875	146.8323839587038
+12.479166666666666	13.052083333333334	174.61411571650194
+12.479166666666666	13.052083333333334	195.99771799087463
+12.78125	13.067708333333334	880.0
+12.901041666666666	13.078125	987.7666025122483
+13.072916666666666	13.682291666666666	130.8127826502993
+13.072916666666666	13.682291666666666	155.56349186104046
+13.072916666666666	13.682291666666666	195.99771799087463
+13.072916666666666	15.578125	523.2511306011972
+13.072916666666666	15.578125	1046.5022612023945
+13.703125	14.291666666666666	130.8127826502993
+13.703125	14.291666666666666	155.56349186104046
+13.703125	14.291666666666666	195.99771799087463
+14.338541666666666	14.927083333333334	130.8127826502993
+14.338541666666666	14.927083333333334	155.56349186104046
+14.338541666666666	14.927083333333334	195.99771799087463
+14.958333333333334	15.583333333333334	130.8127826502993
+14.958333333333334	15.583333333333334	155.56349186104046
+14.958333333333334	15.583333333333334	195.99771799087463
+15.432291666666666	15.588541666666666	174.61411571650194
+15.432291666666666	15.588541666666666	207.65234878997256
+15.604166666666666	16.234375	130.8127826502993
+15.604166666666666	16.234375	155.56349186104046
+15.604166666666666	16.234375	195.99771799087463
+15.604166666666666	17.484375	523.2511306011972
+15.604166666666666	17.484375	1046.5022612023945
+16.260416666666668	16.859375	130.8127826502993
+16.260416666666668	16.859375	155.56349186104046
+16.260416666666668	16.859375	195.99771799087463
+16.885416666666668	17.484375	130.8127826502993
+16.885416666666668	17.484375	155.56349186104046
+16.885416666666668	17.484375	195.99771799087463
+17.5	18.098958333333332	155.56349186104046
+17.5	18.098958333333332	195.99771799087463
+17.5	18.088541666666668	523.2511306011972
+17.5	18.088541666666668	1046.5022612023945
+18.109375	18.765625	523.2511306011972
+18.109375	18.765625	1046.5022612023945
+18.114583333333332	18.765625	155.56349186104046
+18.114583333333332	18.765625	195.99771799087463
+18.447916666666668	19.53125	466.1637615180899
+18.447916666666668	19.53125	932.3275230361799
+18.796875	19.401041666666668	155.56349186104046
+18.796875	19.401041666666668	195.99771799087463
+19.411458333333332	20.036458333333332	155.56349186104046
+19.411458333333332	20.036458333333332	195.99771799087463
+19.411458333333332	20.614583333333332	391.99543598174927
+19.411458333333332	20.614583333333332	783.9908719634985
+20.046875	20.619791666666668	130.8127826502993
+20.046875	20.619791666666668	155.56349186104046
+20.046875	20.619791666666668	195.99771799087463
+20.635416666666668	21.255208333333332	97.99885899543733
+20.635416666666668	21.255208333333332	130.8127826502993
+20.635416666666668	21.255208333333332	155.56349186104046
+20.635416666666668	21.255208333333332	195.99771799087463
+20.635416666666668	21.838541666666668	391.99543598174927
+20.635416666666668	21.838541666666668	783.9908719634985
+21.270833333333332	21.880208333333332	97.99885899543733
+21.270833333333332	21.880208333333332	130.8127826502993
+21.270833333333332	21.880208333333332	155.56349186104046
+21.270833333333332	21.880208333333332	195.99771799087463
+21.270833333333332	21.880208333333332	622.2539674441618
+21.270833333333332	21.880208333333332	1244.5079348883237
+21.895833333333332	22.442708333333332	97.99885899543733
+21.895833333333332	22.442708333333332	146.8323839587038
+21.895833333333332	22.442708333333332	174.61411571650194
+21.895833333333332	22.442708333333332	195.99771799087463
+21.895833333333332	22.442708333333332	493.8833012561241
+21.895833333333332	22.114583333333332	987.7666025122483
+22.036458333333332	22.208333333333332	1046.5022612023945
+22.125	22.296875	987.7666025122483
+22.223958333333332	22.411458333333332	1046.5022612023945
+22.3125	22.4375	987.7666025122483
+22.432291666666668	22.791666666666668	1046.5022612023945
+22.447916666666668	22.791666666666668	987.7666025122483
+22.46875	23.078125	97.99885899543733
+22.46875	23.078125	146.8323839587038
+22.46875	23.078125	174.61411571650194
+22.46875	23.078125	195.99771799087463
+22.807291666666668	23.197916666666668	880.0
+22.927083333333332	23.333333333333332	987.7666025122483
+23.083333333333332	23.703125	130.8127826502993
+23.083333333333332	23.703125	155.56349186104046
+23.083333333333332	23.703125	195.99771799087463
+23.083333333333332	25.588541666666668	523.2511306011972
+23.083333333333332	25.588541666666668	1046.5022612023945
+23.734375	24.328125	130.8127826502993
+23.734375	24.328125	155.56349186104046
+23.734375	24.328125	195.99771799087463
+24.364583333333332	24.979166666666668	130.8127826502993
+24.364583333333332	24.979166666666668	155.56349186104046
+24.364583333333332	24.979166666666668	195.99771799087463
+25	25.604166666666668	130.8127826502993
+25	25.604166666666668	155.56349186104046
+25	25.604166666666668	195.99771799087463
+25.447916666666668	25.614583333333332	174.61411571650194
+25.447916666666668	25.614583333333332	207.65234878997256
+25.630208333333332	26.255208333333332	130.8127826502993
+25.630208333333332	26.255208333333332	155.56349186104046
+25.630208333333332	26.255208333333332	195.99771799087463
+25.630208333333332	26.864583333333332	622.2539674441618
+25.630208333333332	26.864583333333332	1244.5079348883237
+26.286458333333332	26.859375	130.8127826502993
+26.286458333333332	26.859375	195.99771799087463
+26.890625	27.5	116.54094037952248
+26.890625	27.5	146.8323839587038
+26.890625	27.5	195.99771799087463
+26.890625	28.109375	587.3295358348151
+26.890625	28.109375	1174.6590716696303
+27.526041666666668	28.109375	116.54094037952248
+27.526041666666668	28.109375	146.8323839587038
+27.526041666666668	28.109375	195.99771799087463
+28.130208333333332	29.947916666666668	587.3295358348151
+28.130208333333332	29.947916666666668	1174.6590716696303
+28.135416666666668	28.786458333333332	155.56349186104046
+28.135416666666668	28.786458333333332	195.99771799087463
+28.479166666666668	29.973958333333332	391.99543598174927
+28.479166666666668	29.973958333333332	783.9908719634985
+28.807291666666668	29.395833333333332	155.56349186104046
+28.807291666666668	29.395833333333332	195.99771799087463
+29.411458333333332	29.984375	155.56349186104046
+29.411458333333332	29.984375	195.99771799087463
+29.989583333333332	30.598958333333332	155.56349186104046
+29.989583333333332	30.598958333333332	195.99771799087463
+29.989583333333332	30.598958333333332	391.99543598174927
+29.989583333333332	30.598958333333332	783.9908719634985
+30.614583333333332	31.234375	130.8127826502993
+30.614583333333332	31.234375	195.99771799087463
+30.614583333333332	31.848958333333332	391.99543598174927
+30.614583333333332	31.848958333333332	783.9908719634985
+31.25	31.848958333333332	130.8127826502993
+31.25	31.848958333333332	195.99771799087463
+31.864583333333332	32.484375	130.8127826502993
+31.864583333333332	32.484375	195.99771799087463
+31.864583333333332	33.119791666666664	440.0
+31.864583333333332	33.119791666666664	880.0
+32.5	33.114583333333336	130.8127826502993
+32.5	33.114583333333336	184.9972113558172
+32.791666666666664	33.114583333333336	391.99543598174927
+32.791666666666664	33.114583333333336	783.9908719634985
+33.130208333333336	33.734375	97.99885899543733
+33.130208333333336	33.734375	195.99771799087463
+33.130208333333336	34.9375	391.99543598174927
+33.130208333333336	34.9375	783.9908719634985
+33.75	34.333333333333336	97.99885899543733
+33.75	34.333333333333336	195.99771799087463
+34.34375	34.953125	97.99885899543733
+34.34375	34.953125	195.99771799087463
+34.96875	35.578125	783.9908719634985
+35.59375	36.177083333333336	391.99543598174927
+36.192708333333336	36.828125	195.99771799087463
+36.854166666666664	37.473958333333336	97.99885899543733
+37.473958333333336	38.104166666666664	783.9908719634985
+38.125	39.609375	391.99543598174927
+38.739583333333336	39.338541666666664	195.99771799087463
+39.348958333333336	39.927083333333336	97.99885899543733
+39.651041666666664	39.932291666666664	391.99543598174927
+39.942708333333336	40.161458333333336	87.30705785825097
+39.942708333333336	40.229166666666664	440.0
+40.078125	40.234375	97.99885899543733
+40.177083333333336	40.3125	87.30705785825097
+40.244791666666664	40.380208333333336	97.99885899543733
+40.244791666666664	40.567708333333336	493.8833012561241
+40.328125	40.4375	87.30705785825097
+40.395833333333336	40.520833333333336	97.99885899543733
+40.453125	40.578125	87.30705785825097
+40.588541666666664	41.166666666666664	77.78174593052023
+40.588541666666664	41.166666666666664	523.2511306011972
+41.171875	41.796875	130.8127826502993
+41.171875	41.796875	195.99771799087463
+41.171875	41.796875	261.6255653005986
+41.171875	41.796875	622.2539674441618
+41.171875	41.796875	1244.5079348883237
+41.817708333333336	42.432291666666664	130.8127826502993
+41.817708333333336	42.432291666666664	195.99771799087463
+41.817708333333336	42.432291666666664	261.6255653005986
+41.817708333333336	42.739583333333336	523.2511306011972
+41.817708333333336	42.739583333333336	1046.5022612023945
+42.458333333333336	43.057291666666664	155.56349186104046
+42.458333333333336	43.057291666666664	261.6255653005986
+42.765625	43.078125	622.2539674441618
+43.083333333333336	43.6875	174.61411571650194
+43.083333333333336	43.6875	261.6255653005986
+43.083333333333336	43.6875	587.3295358348151
+43.692708333333336	44.3125	174.61411571650194
+43.692708333333336	44.3125	261.6255653005986
+43.692708333333336	44.640625	587.3295358348151
+44.34375	44.963541666666664	195.99771799087463
+44.34375	44.963541666666664	246.94165062806206
+44.661458333333336	44.963541666666664	622.2539674441618
+44.807291666666664	45.088541666666664	698.4564628660078
+44.979166666666664	45.572916666666664	195.99771799087463
+44.979166666666664	45.572916666666664	246.94165062806206
+44.979166666666664	45.572916666666664	349.2282314330039
+44.979166666666664	45.447916666666664	783.9908719634985
+45.125	45.552083333333336	698.4564628660078
+45.255208333333336	45.59375	622.2539674441618
+45.401041666666664	45.59375	587.3295358348151
+45.604166666666664	46.229166666666664	207.65234878997256
+45.604166666666664	46.229166666666664	261.6255653005986
+45.604166666666664	46.229166666666664	311.1269837220809
+45.604166666666664	46.229166666666664	523.2511306011972
+46.239583333333336	46.848958333333336	207.65234878997256
+46.239583333333336	46.848958333333336	261.6255653005986
+46.239583333333336	46.864583333333336	622.2539674441618
+46.239583333333336	46.864583333333336	1244.5079348883237
+46.885416666666664	47.484375	155.56349186104046
+46.885416666666664	47.484375	195.99771799087463
+46.885416666666664	47.484375	261.6255653005986
+46.885416666666664	47.78125	523.2511306011972
+46.885416666666664	47.78125	1046.5022612023945
+47.515625	48.104166666666664	155.56349186104046
+47.515625	48.104166666666664	195.99771799087463
+47.515625	48.104166666666664	261.6255653005986
+47.796875	48.098958333333336	622.2539674441618
+48.114583333333336	48.75	174.61411571650194
+48.114583333333336	48.75	261.6255653005986
+48.114583333333336	48.75	587.3295358348151
+48.770833333333336	49.395833333333336	174.61411571650194
+48.770833333333336	49.395833333333336	261.6255653005986
+48.770833333333336	49.734375	587.3295358348151
+49.411458333333336	50.026041666666664	195.99771799087463
+49.411458333333336	50.026041666666664	246.94165062806206
+49.744791666666664	49.963541666666664	622.2539674441618
+49.90625	50.125	698.4564628660078
+50.052083333333336	50.671875	48.999429497718666
+50.052083333333336	50.671875	97.99885899543733
+50.052083333333336	50.333333333333336	783.9908719634985
+50.21875	50.5	698.4564628660078
+50.354166666666664	50.588541666666664	622.2539674441618
+50.520833333333336	50.791666666666664	587.3295358348151
+50.692708333333336	51.572916666666664	51.91308719749314
+50.692708333333336	51.572916666666664	103.82617439498628
+50.692708333333336	51.572916666666664	523.2511306011972
Binary file testdata/TRIOS-groundtruth/schubert/piano.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/schubert/violin.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,57 @@
+0.5635416666666667	1.1729166666666666	195.99771799087463
+0.5635416666666667	1.1729166666666666	311.1269837220809
+1.25	1.796875	311.1269837220809
+1.25	1.796875	195.99771799087463
+1.875	2.4229166666666666	311.1269837220809
+1.875	2.4229166666666666	195.99771799087463
+2.5	3.017708333333333	195.99771799087463
+2.5	3.017708333333333	311.1269837220809
+3.0010416666666666	3.158333333333333	349.2282314330039
+3.0010416666666666	3.158333333333333	207.65234878997256
+3.175	3.7416666666666667	195.99771799087463
+3.175	3.7416666666666667	311.1269837220809
+3.8020833333333335	4.35	195.99771799087463
+3.8020833333333335	4.35	311.1269837220809
+4.394791666666666	4.942708333333333	195.99771799087463
+4.394791666666666	4.942708333333333	311.1269837220809
+5	5.453125	195.99771799087463
+5	5.453125	311.1269837220809
+5.444791666666666	5.595833333333333	207.65234878997256
+5.444791666666666	5.595833333333333	349.2282314330039
+5.595833333333333	6.203125	195.99771799087463
+5.595833333333333	6.203125	311.1269837220809
+6.263541666666667	6.863541666666666	195.99771799087463
+6.861458333333333	8.325	311.1269837220809
+11.20625	12.042708333333334	195.99771799087463
+11.911458333333334	12.5	415.3046975799451
+12.475	12.841666666666667	391.99543598174927
+12.811458333333333	13.159375	349.2282314330039
+13.136458333333334	14.463541666666666	311.1269837220809
+16.244791666666668	16.904166666666665	195.99771799087463
+16.915625	18.335416666666667	311.1269837220809
+21.25	21.875	195.99771799087463
+21.85	22.488541666666666	349.2282314330039
+22.459375	22.754166666666666	311.1269837220809
+22.720833333333335	23.114583333333332	293.6647679174076
+23.097916666666666	24.335416666666667	261.6255653005986
+26.227083333333333	26.875	195.99771799087463
+26.870833333333334	28.520833333333332	391.99543598174927
+31.155208333333334	31.9875	261.6255653005986
+31.875	33.1375	311.1269837220809
+33.1	36.18020833333333	293.6647679174076
+36.229166666666664	36.74166666666667	311.1269837220809
+36.82083333333333	38.66458333333333	293.6647679174076
+38.69583333333333	39.13333333333333	311.1269837220809
+39.21875	40.65416666666667	293.6647679174076
+40.625	41.3625	311.1269837220809
+44.675	44.985416666666666	391.99543598174927
+44.98854166666667	45.280208333333334	440.0
+45.284375	45.615625	493.8833012561241
+45.615625	46.483333333333334	523.2511306011972
+46.49791666666667	46.98854166666667	523.2511306011972
+46.89270833333333	47.56041666666667	622.2539674441618
+47.51979166666667	48.172916666666666	523.2511306011972
+49.62083333333333	49.97291666666667	783.9908719634985
+49.963541666666664	50.307291666666664	880.0
+50.259375	50.63125	987.7666025122483
+50.60208333333333	51.64791666666667	1046.5022612023945
Binary file testdata/TRIOS-groundtruth/schubert/violin.mid has changed
--- a/testdata/TRIOS-groundtruth/take_five.csv	Thu May 29 15:18:14 2014 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,322 +0,0 @@
-7.333333333,39,0.520816326,0.609375,D#2 - vel 78
-7.541655328,63,0.312494331,0.609375,D#4 - vel 78
-7.541655328,58,0.312494331,0.609375,A#3 - vel 78
-7.541655328,54,0.312494331,0.609375,F#3 - vel 78
-7.864580498,39,0.479160997,0.609375,D#2 - vel 78
-8.020816326,63,0.328140589,0.609375,D#4 - vel 78
-8.020816326,58,0.328140589,0.609375,A#3 - vel 78
-8.020816326,54,0.328140589,0.609375,F#3 - vel 78
-8.354149659,46,0.661473922,0.609375,A#2 - vel 78
-8.682290249,61,0.333333333,0.609375,C#4 - vel 78
-8.682290249,56,0.333333333,0.609375,G#3 - vel 78
-8.682290249,53,0.333333333,0.609375,F3 - vel 78
-9.020816326,39,0.515623582,0.609375,D#2 - vel 78
-9.213537414,63,0.322902494,0.609375,D#4 - vel 78
-9.213537414,58,0.322902494,0.609375,A#3 - vel 78
-9.213537414,54,0.322902494,0.609375,F#3 - vel 78
-9.541655328,39,0.484376417,0.609375,D#2 - vel 78
-9.692698412,63,0.333333333,0.609375,D#4 - vel 78
-9.692698412,58,0.333333333,0.609375,A#3 - vel 78
-9.692698412,54,0.333333333,0.609375,F#3 - vel 78
-10.031247165,46,0.651043083,0.609375,A#2 - vel 78
-10.364580498,61,0.312494331,0.609375,C#4 - vel 78
-10.364580498,56,0.312494331,0.609375,G#3 - vel 78
-10.364580498,53,0.312494331,0.609375,F3 - vel 78
-10.687482993,39,0.526054421,0.609375,D#2 - vel 78
-10.916666666,63,0.296870748,0.609375,D#4 - vel 78
-10.916666666,58,0.296870748,0.609375,A#3 - vel 78
-10.916666666,54,0.296870748,0.609375,F#3 - vel 78
-11.223945578,39,0.473968253,0.609375,D#2 - vel 78
-11.390612244,63,0.312494331,0.609375,D#4 - vel 78
-11.390612244,58,0.312494331,0.609375,A#3 - vel 78
-11.390612244,54,0.312494331,0.609375,F#3 - vel 78
-11.708321995,46,0.640634920,0.609375,A#2 - vel 78
-12.031247165,61,0.317709750,0.609375,C#4 - vel 78
-12.031247165,56,0.317709750,0.609375,G#3 - vel 78
-12.031247165,53,0.317709750,0.609375,F3 - vel 78
-12.359365079,39,0.510408163,0.609375,D#2 - vel 78
-12.562494331,63,0.307278911,0.609375,D#4 - vel 78
-12.562494331,58,0.307278911,0.609375,A#3 - vel 78
-12.562494331,54,0.307278911,0.609375,F#3 - vel 78
-12.874988662,39,0.473968253,0.609375,D#2 - vel 78
-13.046870748,63,0.302086167,0.609375,D#4 - vel 78
-13.046870748,58,0.302086167,0.609375,A#3 - vel 78
-13.046870748,54,0.302086167,0.609375,F#3 - vel 78
-13.348956916,58,0.234376417,0.609375,A#3 - vel 78
-13.354149659,46,0.656258503,0.609375,A#2 - vel 78
-13.572902494,63,0.130204081,0.609375,D#4 - vel 78
-13.677074829,61,0.333333333,0.609375,C#4 - vel 78
-13.677074829,56,0.333333333,0.609375,G#3 - vel 78
-13.677074829,53,0.333333333,0.609375,F3 - vel 78
-13.703106575,66,0.192721088,0.609375,F#4 - vel 78
-13.880204081,68,0.156235827,0.609375,G#4 - vel 78
-14.015623582,39,0.515623582,0.609375,D#2 - vel 78
-14.026031746,69,0.223968253,0.609375,A4 - vel 78
-14.213537414,63,0.317709750,0.609375,D#4 - vel 78
-14.213537414,58,0.317709750,0.609375,A#3 - vel 78
-14.213537414,54,0.317709750,0.609375,F#3 - vel 78
-14.244784580,70,0.124988662,0.609375,A#4 - vel 78
-14.359365079,69,0.197913832,0.609375,A4 - vel 78
-14.536439909,39,0.473968253,0.609375,D#2 - vel 78
-14.546870748,68,0.182290249,0.609375,G#4 - vel 78
-14.697913832,63,0.312494331,0.609375,D#4 - vel 78
-14.697913832,58,0.312494331,0.609375,A#3 - vel 78
-14.697913832,54,0.312494331,0.609375,F#3 - vel 78
-14.713537414,66,0.208321995,0.609375,F#4 - vel 78
-15.005192743,58,0.369795918,0.609375,A#3 - vel 78
-15.020816326,46,0.661473922,0.609375,A#2 - vel 78
-15.354149659,61,0.296870748,0.609375,C#4 - vel 78
-15.354149659,56,0.333333333,0.609375,G#3 - vel 78
-15.354149659,53,0.333333333,0.609375,F3 - vel 78
-15.359365079,61,0.328117913,0.609375,C#4 - vel 78
-15.692698412,39,0.526031746,0.609375,D#2 - vel 78
-15.713537414,63,0.505192743,0.609375,D#4 - vel 78
-15.885396825,63,0.682290249,0.609375,D#4 - vel 78
-15.885396825,58,0.333333333,0.609375,A#3 - vel 78
-15.885396825,54,0.333333333,0.609375,F#3 - vel 78
-16.223945578,39,0.453129251,0.609375,D#2 - vel 78
-16.380204081,63,0.302086167,0.609375,D#4 - vel 78
-16.380204081,58,0.302086167,0.609375,A#3 - vel 78
-16.380204081,54,0.302086167,0.609375,F#3 - vel 78
-16.661451247,65,0.119795918,0.609375,F4 - vel 78
-16.692698412,46,0.666666666,0.609375,A#2 - vel 78
-16.755192743,66,0.104172335,0.609375,F#4 - vel 78
-16.854149659,63,0.119795918,0.609375,D#4 - vel 78
-16.958321995,61,0.364580498,0.609375,C#4 - vel 78
-17.015623582,61,0.343741496,0.609375,C#4 - vel 78
-17.015623582,56,0.343741496,0.609375,G#3 - vel 78
-17.015623582,53,0.343741496,0.609375,F3 - vel 78
-17.312494331,63,0.557278911,0.609375,D#4 - vel 78
-17.364580498,39,0.505192743,0.609375,D#2 - vel 78
-17.557278911,63,0.682290249,0.609375,D#4 - vel 78
-17.557278911,58,0.312494331,0.609375,A#3 - vel 78
-17.557278911,54,0.312494331,0.609375,F#3 - vel 78
-17.874988662,39,0.468752834,0.609375,D#2 - vel 78
-18.046870748,63,0.296870748,0.609375,D#4 - vel 78
-18.046870748,58,0.296870748,0.609375,A#3 - vel 78
-18.046870748,54,0.296870748,0.609375,F#3 - vel 78
-18.359365079,46,0.671882086,0.609375,A#2 - vel 78
-18.369773242,61,0.104172335,0.609375,C#4 - vel 78
-18.453106575,63,0.062517006,0.609375,D#4 - vel 78
-18.500000000,61,0.130204081,0.609375,C#4 - vel 78
-18.604149659,58,0.088548752,0.609375,A#3 - vel 78
-18.677074829,56,0.338548752,0.609375,G#3 - vel 78
-18.697913832,61,0.333333333,0.609375,C#4 - vel 78
-18.697913832,56,0.333333333,0.609375,G#3 - vel 78
-18.697913832,53,0.333333333,0.609375,F3 - vel 78
-19.005192743,58,0.536462585,0.609375,A#3 - vel 78
-19.041655328,39,0.500000000,0.609375,D#2 - vel 78
-19.244784580,63,0.296870748,0.609375,D#4 - vel 78
-19.244784580,58,0.708321995,0.609375,A#3 - vel 78
-19.244784580,54,0.296870748,0.609375,F#3 - vel 78
-19.546870748,39,0.484376417,0.609375,D#2 - vel 78
-19.723945578,63,0.307301587,0.609375,D#4 - vel 78
-19.723945578,58,0.307301587,0.609375,A#3 - vel 78
-19.723945578,54,0.307301587,0.609375,F#3 - vel 78
-20.041655328,46,0.651043083,0.609375,A#2 - vel 78
-20.072902494,58,0.203129251,0.609375,A#3 - vel 78
-20.260408163,63,0.119795918,0.609375,D#4 - vel 78
-20.364580498,61,0.328117913,0.609375,C#4 - vel 78
-20.364580498,56,0.328117913,0.609375,G#3 - vel 78
-20.364580498,53,0.328117913,0.609375,F3 - vel 78
-20.390612244,66,0.187505668,0.609375,F#4 - vel 78
-20.557278911,68,0.140634920,0.609375,G#4 - vel 78
-20.687482993,69,0.213537414,0.609375,A4 - vel 78
-20.703106575,39,0.494807256,0.609375,D#2 - vel 78
-20.885396825,70,0.161473922,0.609375,A#4 - vel 78
-20.906235827,63,0.296870748,0.609375,D#4 - vel 78
-20.906235827,58,0.296870748,0.609375,A#3 - vel 78
-20.906235827,54,0.296870748,0.609375,F#3 - vel 78
-21.020816326,69,0.213537414,0.609375,A4 - vel 78
-21.208321995,39,0.484376417,0.609375,D#2 - vel 78
-21.218730158,68,0.156258503,0.609375,G#4 - vel 78
-21.359365079,66,0.223968253,0.609375,F#4 - vel 78
-21.380204081,63,0.317709750,0.609375,D#4 - vel 78
-21.380204081,58,0.317709750,0.609375,A#3 - vel 78
-21.380204081,54,0.317709750,0.609375,F#3 - vel 78
-21.697913832,58,0.385419501,0.609375,A#3 - vel 78
-21.703106575,46,0.645850340,0.609375,A#2 - vel 78
-22.026031746,61,0.302086167,0.609375,C#4 - vel 78
-22.026031746,56,0.322925170,0.609375,G#3 - vel 78
-22.026031746,53,0.322925170,0.609375,F3 - vel 78
-22.062494331,61,0.286462585,0.609375,C#4 - vel 78
-22.354149659,39,0.515623582,0.609375,D#2 - vel 78
-22.390612244,63,0.479160997,0.609375,D#4 - vel 78
-22.557278911,63,0.625011337,0.609375,D#4 - vel 78
-22.557278911,58,0.312494331,0.609375,A#3 - vel 78
-22.557278911,54,0.312494331,0.609375,F#3 - vel 78
-22.874988662,39,0.468752834,0.609375,D#2 - vel 78
-23.036439909,63,0.307301587,0.609375,D#4 - vel 78
-23.036439909,58,0.307301587,0.609375,A#3 - vel 78
-23.036439909,54,0.307301587,0.609375,F#3 - vel 78
-23.354149659,46,0.666666666,0.609375,A#2 - vel 78
-23.359365079,61,0.062494331,0.609375,C#4 - vel 78
-23.411451247,63,0.078117913,0.609375,D#4 - vel 78
-23.479160997,61,0.114580498,0.609375,C#4 - vel 78
-23.567687074,58,0.104172335,0.609375,A#3 - vel 78
-23.645827664,56,0.307278911,0.609375,G#3 - vel 78
-23.687482993,61,0.338548752,0.609375,C#4 - vel 78
-23.687482993,56,0.338548752,0.609375,G#3 - vel 78
-23.687482993,53,0.338548752,0.609375,F3 - vel 78
-24.000000000,58,0.541655328,0.609375,A#3 - vel 78
-24.031247165,39,0.510408163,0.609375,D#2 - vel 78
-24.229160997,63,0.312494331,0.609375,D#4 - vel 78
-24.229160997,58,0.656235827,0.609375,A#3 - vel 78
-24.229160997,54,0.312494331,0.609375,F#3 - vel 78
-24.546870748,39,0.479160997,0.609375,D#2 - vel 78
-24.708321995,63,0.312494331,0.609375,D#4 - vel 78
-24.708321995,58,0.312494331,0.609375,A#3 - vel 78
-24.708321995,54,0.312494331,0.609375,F#3 - vel 78
-25.000000000,65,0.067687074,0.609375,F4 - vel 78
-25.031247165,46,0.671859410,0.609375,A#2 - vel 78
-25.052063492,66,0.109387755,0.609375,F#4 - vel 78
-25.151020408,65,0.046893424,0.609375,F4 - vel 78
-25.197913832,63,0.098956916,0.609375,D#4 - vel 78
-25.286439909,61,0.354172335,0.609375,C#4 - vel 78
-25.359365079,61,0.348956916,0.609375,C#4 - vel 78
-25.359365079,56,0.348956916,0.609375,G#3 - vel 78
-25.359365079,53,0.348956916,0.609375,F3 - vel 78
-25.630204081,63,0.583333333,0.609375,D#4 - vel 78
-25.713537414,39,0.500000000,0.609375,D#2 - vel 78
-25.901020408,63,0.781269841,0.609375,D#4 - vel 78
-25.901020408,58,0.312517006,0.609375,A#3 - vel 78
-25.901020408,54,0.312517006,0.609375,F#3 - vel 78
-26.218730158,39,0.458344671,0.609375,D#2 - vel 78
-26.374988662,63,0.385419501,0.609375,D#4 - vel 78
-26.374988662,58,0.307301587,0.609375,A#3 - vel 78
-26.374988662,54,0.307301587,0.609375,F#3 - vel 78
-26.687482993,46,0.661473922,0.609375,A#2 - vel 78
-27.010408163,61,0.343741496,0.609375,C#4 - vel 78
-27.010408163,56,0.343741496,0.609375,G#3 - vel 78
-27.010408163,53,0.343741496,0.609375,F3 - vel 78
-27.359365079,47,0.505215419,0.609375,B2 - vel 78
-27.369773242,75,0.223968253,0.609375,D#5 - vel 78
-27.541655328,63,0.322925170,0.609375,D#4 - vel 78
-27.541655328,58,0.322925170,0.609375,A#3 - vel 78
-27.583333333,78,0.177074829,0.609375,F#5 - vel 78
-27.874988662,51,0.479160997,0.609375,D#3 - vel 78
-27.895827664,75,0.161451247,0.609375,D#5 - vel 78
-28.020816326,63,0.333333333,0.609375,D#4 - vel 78
-28.020816326,58,0.333333333,0.609375,A#3 - vel 78
-28.041655328,71,0.291678004,0.609375,B4 - vel 78
-28.348956916,68,0.229160997,0.609375,G#4 - vel 78
-28.364580498,53,0.645827664,0.609375,F3 - vel 78
-28.562494331,70,0.145827664,0.609375,A#4 - vel 78
-28.682290249,63,0.328117913,0.609375,D#4 - vel 78
-28.682290249,56,0.328117913,0.609375,G#3 - vel 78
-28.692698412,71,0.192698412,0.609375,B4 - vel 78
-28.869773242,72,0.156258503,0.609375,C5 - vel 78
-29.010408163,73,0.218752834,0.609375,C#5 - vel 78
-29.015623582,46,0.500000000,0.609375,A#2 - vel 78
-29.213537414,77,0.187482993,0.609375,F5 - vel 78
-29.223945578,61,0.291678004,0.609375,C#4 - vel 78
-29.223945578,56,0.291678004,0.609375,G#3 - vel 78
-29.505192743,73,0.192721088,0.609375,C#5 - vel 78
-29.526031746,49,0.479160997,0.609375,C#3 - vel 78
-29.656235827,70,0.307301587,0.609375,A#4 - vel 78
-29.692698412,61,0.312494331,0.609375,C#4 - vel 78
-29.692698412,56,0.312494331,0.609375,G#3 - vel 78
-29.994784580,66,0.208321995,0.609375,F#4 - vel 78
-30.015623582,51,0.661451247,0.609375,D#3 - vel 78
-30.187482993,68,0.161473922,0.609375,G#4 - vel 78
-30.328117913,61,0.348956916,0.609375,C#4 - vel 78
-30.328117913,54,0.348956916,0.609375,F#3 - vel 78
-30.333333333,69,0.197913832,0.609375,A4 - vel 78
-30.515623582,70,0.161451247,0.609375,A#4 - vel 78
-30.661451247,71,0.213537414,0.609375,B4 - vel 78
-30.682290249,44,0.510408163,0.609375,G#2 - vel 78
-30.864580498,75,0.187482993,0.609375,D#5 - vel 78
-30.874988662,59,0.317709750,0.609375,B3 - vel 78
-30.874988662,54,0.317709750,0.609375,F#3 - vel 78
-31.151020408,71,0.182312925,0.609375,B4 - vel 78
-31.203106575,47,0.473968253,0.609375,B2 - vel 78
-31.307278911,68,0.328117913,0.609375,G#4 - vel 78
-31.364580498,59,0.312494331,0.609375,B3 - vel 78
-31.364580498,54,0.312494331,0.609375,F#3 - vel 78
-31.640612244,65,0.239591836,0.609375,F4 - vel 78
-31.692698412,49,0.645827664,0.609375,C#3 - vel 78
-31.854149659,66,0.130204081,0.609375,F#4 - vel 78
-31.973945578,68,0.223968253,0.609375,G#4 - vel 78
-32.031247165,59,0.307278911,0.609375,B3 - vel 78
-32.031247165,53,0.307278911,0.609375,F3 - vel 78
-32.182290249,69,0.151043083,0.609375,A4 - vel 78
-32.317687074,70,0.213560090,0.609375,A#4 - vel 78
-32.343741496,42,0.505215419,0.609375,F#2 - vel 78
-32.515623582,69,0.151043083,0.609375,A4 - vel 78
-32.541655328,58,0.307301587,0.609375,A#3 - vel 78
-32.541655328,53,0.307301587,0.609375,F3 - vel 78
-32.651020408,70,0.197936507,0.609375,A#4 - vel 78
-32.838526077,71,0.177097505,0.609375,B4 - vel 78
-32.854149659,42,0.463537414,0.609375,F#2 - vel 78
-32.994784580,73,0.218752834,0.609375,C#5 - vel 78
-33.010408163,58,0.307278911,0.609375,A#3 - vel 78
-33.010408163,53,0.307278911,0.609375,F3 - vel 78
-33.322902494,73,0.239591836,0.609375,C#5 - vel 78
-33.333333333,46,0.666666666,0.609375,A#2 - vel 78
-33.536439909,72,0.151043083,0.609375,C5 - vel 78
-33.666666666,62,0.333333333,0.609375,D4 - vel 78
-33.666666666,56,0.333333333,0.609375,G#3 - vel 78
-33.666666666,73,0.208321995,0.609375,C#5 - vel 78
-33.859365079,74,0.177074829,0.609375,D5 - vel 78
-34.005192743,47,0.500000000,0.609375,B2 - vel 78
-34.026031746,75,0.182290249,0.609375,D#5 - vel 78
-34.197913832,63,0.307278911,0.609375,D#4 - vel 78
-34.197913832,58,0.307278911,0.609375,A#3 - vel 78
-34.197913832,78,0.197913832,0.609375,F#5 - vel 78
-34.515623582,51,0.473945578,0.609375,D#3 - vel 78
-34.541655328,75,0.135419501,0.609375,D#5 - vel 78
-34.661451247,63,0.328117913,0.609375,D#4 - vel 78
-34.661451247,58,0.328117913,0.609375,A#3 - vel 78
-34.666666666,71,0.307278911,0.609375,B4 - vel 78
-35.000000000,53,0.666666666,0.609375,F3 - vel 78
-35.005192743,68,0.229160997,0.609375,G#4 - vel 78
-35.223945578,70,0.135419501,0.609375,A#4 - vel 78
-35.312494331,63,0.354172335,0.609375,D#4 - vel 78
-35.312494331,56,0.354172335,0.609375,G#3 - vel 78
-35.343741496,71,0.203129251,0.609375,B4 - vel 78
-35.526031746,72,0.161451247,0.609375,C5 - vel 78
-35.666666666,73,0.239569160,0.609375,C#5 - vel 78
-35.671859410,46,0.500000000,0.609375,A#2 - vel 78
-35.864580498,61,0.307278911,0.609375,C#4 - vel 78
-35.864580498,56,0.307278911,0.609375,G#3 - vel 78
-35.885396825,77,0.182290249,0.609375,F5 - vel 78
-36.177074829,49,0.489591836,0.609375,C#3 - vel 78
-36.208321995,73,0.182290249,0.609375,C#5 - vel 78
-36.343741496,61,0.322925170,0.609375,C#4 - vel 78
-36.343741496,56,0.322925170,0.609375,G#3 - vel 78
-36.359365079,70,0.286462585,0.609375,A#4 - vel 78
-36.671859410,51,0.682290249,0.609375,D#3 - vel 78
-36.687482993,66,0.197913832,0.609375,F#4 - vel 78
-36.874988662,68,0.151043083,0.609375,G#4 - vel 78
-37.000000000,61,0.354149659,0.609375,C#4 - vel 78
-37.000000000,54,0.354149659,0.609375,F#3 - vel 78
-37.010408163,69,0.197913832,0.609375,A4 - vel 78
-37.192698412,70,0.177074829,0.609375,A#4 - vel 78
-37.354149659,71,0.203129251,0.609375,B4 - vel 78
-37.359365079,44,0.505215419,0.609375,G#2 - vel 78
-37.546870748,75,0.182290249,0.609375,D#5 - vel 78
-37.552063492,59,0.312517006,0.609375,B3 - vel 78
-37.552063492,54,0.312517006,0.609375,F#3 - vel 78
-37.848956916,71,0.187482993,0.609375,B4 - vel 78
-37.869773242,47,0.468752834,0.609375,B2 - vel 78
-38.005192743,68,0.322925170,0.609375,G#4 - vel 78
-38.041655328,59,0.296870748,0.609375,B3 - vel 78
-38.041655328,54,0.296870748,0.609375,F#3 - vel 78
-38.338526077,65,0.213537414,0.609375,F4 - vel 78
-38.343741496,49,0.651043083,0.609375,C#3 - vel 78
-38.536439909,68,0.140634920,0.609375,G#4 - vel 78
-38.666666666,73,0.239569160,0.609375,C#5 - vel 78
-38.671859410,59,0.322925170,0.609375,B3 - vel 78
-38.671859410,53,0.322925170,0.609375,F3 - vel 78
-38.890612244,71,0.140634920,0.609375,B4 - vel 78
-39.000000000,42,0.520816326,0.609375,F#2 - vel 78
-39.020816326,70,1.177097505,0.609375,A#4 - vel 78
-39.213537414,58,0.302086167,0.609375,A#3 - vel 78
-39.213537414,53,0.302086167,0.609375,F3 - vel 78
-39.526031746,42,0.473968253,0.609375,F#2 - vel 78
-39.677074829,58,0.322925170,0.609375,A#3 - vel 78
-39.677074829,53,0.322925170,0.609375,F3 - vel 78
-40.005192743,46,0.682290249,0.609375,A#2 - vel 78
-40.338526077,62,0.348956916,0.609375,D4 - vel 78
-40.338526077,56,0.348956916,0.609375,G#3 - vel 78
-40.692698412,39,0.546870748,0.609375,D#2 - vel 78
--- a/testdata/TRIOS-groundtruth/take_five.lab	Thu May 29 15:18:14 2014 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,322 +0,0 @@
-7.333333333	7.854149659	77.78174593052023
-7.541655328	7.854149659	311.1269837220809
-7.541655328	7.854149659	233.08188075904496
-7.541655328	7.854149659	184.9972113558172
-7.864580498	8.343741495	77.78174593052023
-8.020816326	8.348956915	311.1269837220809
-8.020816326	8.348956915	233.08188075904496
-8.020816326	8.348956915	184.9972113558172
-8.354149659	9.015623581000002	116.54094037952248
-8.682290249	9.015623582	277.1826309768721
-8.682290249	9.015623582	207.65234878997256
-8.682290249	9.015623582	174.61411571650194
-9.020816326	9.536439908	77.78174593052023
-9.213537414	9.536439907999998	311.1269837220809
-9.213537414	9.536439907999998	233.08188075904496
-9.213537414	9.536439907999998	184.9972113558172
-9.541655328	10.026031745	77.78174593052023
-9.692698412	10.026031745000001	311.1269837220809
-9.692698412	10.026031745000001	233.08188075904496
-9.692698412	10.026031745000001	184.9972113558172
-10.031247165	10.682290248	116.54094037952248
-10.364580498	10.677074829	277.1826309768721
-10.364580498	10.677074829	207.65234878997256
-10.364580498	10.677074829	174.61411571650194
-10.687482993	11.213537414	77.78174593052023
-10.916666666	11.213537414	311.1269837220809
-10.916666666	11.213537414	233.08188075904496
-10.916666666	11.213537414	184.9972113558172
-11.223945578	11.697913831000001	77.78174593052023
-11.390612244	11.703106575	311.1269837220809
-11.390612244	11.703106575	233.08188075904496
-11.390612244	11.703106575	184.9972113558172
-11.708321995	12.348956915	116.54094037952248
-12.031247165	12.348956915	277.1826309768721
-12.031247165	12.348956915	207.65234878997256
-12.031247165	12.348956915	174.61411571650194
-12.359365079	12.869773241999999	77.78174593052023
-12.562494331	12.869773241999999	311.1269837220809
-12.562494331	12.869773241999999	233.08188075904496
-12.562494331	12.869773241999999	184.9972113558172
-12.874988662	13.348956915	77.78174593052023
-13.046870748	13.348956915	311.1269837220809
-13.046870748	13.348956915	233.08188075904496
-13.046870748	13.348956915	184.9972113558172
-13.348956916	13.583333333	233.08188075904496
-13.354149659	14.010408162000001	116.54094037952248
-13.572902494	13.703106575	311.1269837220809
-13.677074829	14.010408162000001	277.1826309768721
-13.677074829	14.010408162000001	207.65234878997256
-13.677074829	14.010408162000001	174.61411571650194
-13.703106575	13.895827663	369.9944227116344
-13.880204081	14.036439908	415.3046975799451
-14.015623582	14.531247164	77.78174593052023
-14.026031746	14.249999999	440.0
-14.213537414	14.531247164	311.1269837220809
-14.213537414	14.531247164	233.08188075904496
-14.213537414	14.531247164	184.9972113558172
-14.244784580	14.369773242	466.1637615180899
-14.359365079	14.557278911	440.0
-14.536439909	15.010408162000001	77.78174593052023
-14.546870748	14.729160997	415.3046975799451
-14.697913832	15.010408163	311.1269837220809
-14.697913832	15.010408163	233.08188075904496
-14.697913832	15.010408163	184.9972113558172
-14.713537414	14.921859409	369.9944227116344
-15.005192743	15.374988661	233.08188075904496
-15.020816326	15.682290248000001	116.54094037952248
-15.354149659	15.651020407	277.1826309768721
-15.354149659	15.687482992000001	207.65234878997256
-15.354149659	15.687482992000001	174.61411571650194
-15.359365079	15.687482992	277.1826309768721
-15.692698412	16.218730158	77.78174593052023
-15.713537414	16.218730157	311.1269837220809
-15.885396825	16.567687074000002	311.1269837220809
-15.885396825	16.218730158	233.08188075904496
-15.885396825	16.218730158	184.9972113558172
-16.223945578	16.677074829	77.78174593052023
-16.380204081	16.682290247999997	311.1269837220809
-16.380204081	16.682290247999997	233.08188075904496
-16.380204081	16.682290247999997	184.9972113558172
-16.661451247	16.781247165	349.2282314330039
-16.692698412	17.359365078	116.54094037952248
-16.755192743	16.859365078	369.9944227116344
-16.854149659	16.973945577000002	311.1269837220809
-16.958321995	17.322902492999997	277.1826309768721
-17.015623582	17.359365078	277.1826309768721
-17.015623582	17.359365078	207.65234878997256
-17.015623582	17.359365078	174.61411571650194
-17.312494331	17.869773242	311.1269837220809
-17.364580498	17.869773240999997	77.78174593052023
-17.557278911	18.239569160000002	311.1269837220809
-17.557278911	17.869773242	233.08188075904496
-17.557278911	17.869773242	184.9972113558172
-17.874988662	18.343741496	77.78174593052023
-18.046870748	18.343741496	311.1269837220809
-18.046870748	18.343741496	233.08188075904496
-18.046870748	18.343741496	184.9972113558172
-18.359365079	19.031247165	116.54094037952248
-18.369773242	18.473945577000002	277.1826309768721
-18.453106575	18.515623581	311.1269837220809
-18.500000000	18.630204081	277.1826309768721
-18.604149659	18.692698411000002	233.08188075904496
-18.677074829	19.015623581	207.65234878997256
-18.697913832	19.031247165	277.1826309768721
-18.697913832	19.031247165	207.65234878997256
-18.697913832	19.031247165	174.61411571650194
-19.005192743	19.541655327999997	233.08188075904496
-19.041655328	19.541655328	77.78174593052023
-19.244784580	19.541655328	311.1269837220809
-19.244784580	19.953106575	233.08188075904496
-19.244784580	19.541655328	184.9972113558172
-19.546870748	20.031247165	77.78174593052023
-19.723945578	20.031247165	311.1269837220809
-19.723945578	20.031247165	233.08188075904496
-19.723945578	20.031247165	184.9972113558172
-20.041655328	20.692698411000002	116.54094037952248
-20.072902494	20.276031745	233.08188075904496
-20.260408163	20.380204081000002	311.1269837220809
-20.364580498	20.692698411	277.1826309768721
-20.364580498	20.692698411	207.65234878997256
-20.364580498	20.692698411	174.61411571650194
-20.390612244	20.578117912	369.9944227116344
-20.557278911	20.697913831	415.3046975799451
-20.687482993	20.901020407	440.0
-20.703106575	21.197913831	77.78174593052023
-20.885396825	21.046870747	466.1637615180899
-20.906235827	21.203106575	311.1269837220809
-20.906235827	21.203106575	233.08188075904496
-20.906235827	21.203106575	184.9972113558172
-21.020816326	21.23435374	440.0
-21.208321995	21.692698412	77.78174593052023
-21.218730158	21.374988661	415.3046975799451
-21.359365079	21.583333332	369.9944227116344
-21.380204081	21.697913830999997	311.1269837220809
-21.380204081	21.697913830999997	233.08188075904496
-21.380204081	21.697913830999997	184.9972113558172
-21.697913832	22.083333333000002	233.08188075904496
-21.703106575	22.348956915	116.54094037952248
-22.026031746	22.328117913	277.1826309768721
-22.026031746	22.348956916000002	207.65234878997256
-22.026031746	22.348956916000002	174.61411571650194
-22.062494331	22.348956916	277.1826309768721
-22.354149659	22.869773241	77.78174593052023
-22.390612244	22.869773241	311.1269837220809
-22.557278911	23.182290248	311.1269837220809
-22.557278911	22.869773242	233.08188075904496
-22.557278911	22.869773242	184.9972113558172
-22.874988662	23.343741496	77.78174593052023
-23.036439909	23.343741496	311.1269837220809
-23.036439909	23.343741496	233.08188075904496
-23.036439909	23.343741496	184.9972113558172
-23.354149659	24.020816325000002	116.54094037952248
-23.359365079	23.42185941	277.1826309768721
-23.411451247	23.48956916	311.1269837220809
-23.479160997	23.593741495	277.1826309768721
-23.567687074	23.671859409	233.08188075904496
-23.645827664	23.953106575	207.65234878997256
-23.687482993	24.026031745	277.1826309768721
-23.687482993	24.026031745	207.65234878997256
-23.687482993	24.026031745	174.61411571650194
-24.000000000	24.541655328	233.08188075904496
-24.031247165	24.541655328	77.78174593052023
-24.229160997	24.541655328	311.1269837220809
-24.229160997	24.885396824	233.08188075904496
-24.229160997	24.541655328	184.9972113558172
-24.546870748	25.026031745	77.78174593052023
-24.708321995	25.020816326	311.1269837220809
-24.708321995	25.020816326	233.08188075904496
-24.708321995	25.020816326	184.9972113558172
-25.000000000	25.067687074	349.2282314330039
-25.031247165	25.703106575	116.54094037952248
-25.052063492	25.161451247	369.9944227116344
-25.151020408	25.197913832	349.2282314330039
-25.197913832	25.296870748	311.1269837220809
-25.286439909	25.640612244	277.1826309768721
-25.359365079	25.708321995	277.1826309768721
-25.359365079	25.708321995	207.65234878997256
-25.359365079	25.708321995	174.61411571650194
-25.630204081	26.213537413999997	311.1269837220809
-25.713537414	26.213537414	77.78174593052023
-25.901020408	26.682290249	311.1269837220809
-25.901020408	26.213537414	233.08188075904496
-25.901020408	26.213537414	184.9972113558172
-26.218730158	26.677074829	77.78174593052023
-26.374988662	26.760408163	311.1269837220809
-26.374988662	26.682290249	233.08188075904496
-26.374988662	26.682290249	184.9972113558172
-26.687482993	27.348956915	116.54094037952248
-27.010408163	27.354149659	277.1826309768721
-27.010408163	27.354149659	207.65234878997256
-27.010408163	27.354149659	174.61411571650194
-27.359365079	27.864580498	123.47082531403103
-27.369773242	27.593741495	622.2539674441618
-27.541655328	27.864580498000002	311.1269837220809
-27.541655328	27.864580498000002	233.08188075904496
-27.583333333	27.760408161999997	739.9888454232688
-27.874988662	28.354149659	155.56349186104046
-27.895827664	28.057278910999997	622.2539674441618
-28.020816326	28.354149658999997	311.1269837220809
-28.020816326	28.354149658999997	233.08188075904496
-28.041655328	28.333333332000002	493.8833012561241
-28.348956916	28.578117913	415.3046975799451
-28.364580498	29.010408161999997	174.61411571650194
-28.562494331	28.708321995	466.1637615180899
-28.682290249	29.010408162	311.1269837220809
-28.682290249	29.010408162	207.65234878997256
-28.692698412	28.885396823999997	493.8833012561241
-28.869773242	29.026031745	523.2511306011972
-29.010408163	29.229160997	554.3652619537442
-29.015623582	29.515623582	116.54094037952248
-29.213537414	29.401020407	698.4564628660078
-29.223945578	29.515623582	277.1826309768721
-29.223945578	29.515623582	207.65234878997256
-29.505192743	29.697913830999997	554.3652619537442
-29.526031746	30.005192743000002	138.59131548843604
-29.656235827	29.963537414	466.1637615180899
-29.692698412	30.005192743	277.1826309768721
-29.692698412	30.005192743	207.65234878997256
-29.994784580	30.203106575	369.9944227116344
-30.015623582	30.677074829	155.56349186104046
-30.187482993	30.348956915	415.3046975799451
-30.328117913	30.677074829	277.1826309768721
-30.328117913	30.677074829	184.9972113558172
-30.333333333	30.531247165	440.0
-30.515623582	30.677074829	466.1637615180899
-30.661451247	30.874988661	493.8833012561241
-30.682290249	31.192698412000002	103.82617439498628
-30.864580498	31.052063491	622.2539674441618
-30.874988662	31.192698412	246.94165062806206
-30.874988662	31.192698412	184.9972113558172
-31.151020408	31.333333333000002	493.8833012561241
-31.203106575	31.677074828	123.47082531403103
-31.307278911	31.635396824	415.3046975799451
-31.364580498	31.677074829	246.94165062806206
-31.364580498	31.677074829	184.9972113558172
-31.640612244	31.88020408	349.2282314330039
-31.692698412	32.338526076	138.59131548843604
-31.854149659	31.98435374	369.9944227116344
-31.973945578	32.197913831	415.3046975799451
-32.031247165	32.338526076	246.94165062806206
-32.031247165	32.338526076	174.61411571650194
-32.182290249	32.333333331999995	440.0
-32.317687074	32.531247164	466.1637615180899
-32.343741496	32.848956915	92.4986056779086
-32.515623582	32.666666665	440.0
-32.541655328	32.848956914999995	233.08188075904496
-32.541655328	32.848956914999995	174.61411571650194
-32.651020408	32.848956915	466.1637615180899
-32.838526077	33.015623581999996	493.8833012561241
-32.854149659	33.317687073	92.4986056779086
-32.994784580	33.213537414	554.3652619537442
-33.010408163	33.317687074	233.08188075904496
-33.010408163	33.317687074	174.61411571650194
-33.322902494	33.56249433	554.3652619537442
-33.333333333	33.999999998999996	116.54094037952248
-33.536439909	33.687482992	523.2511306011972
-33.666666666	33.999999998999996	293.6647679174076
-33.666666666	33.999999998999996	207.65234878997256
-33.666666666	33.874988660999996	554.3652619537442
-33.859365079	34.036439908	587.3295358348151
-34.005192743	34.505192743	123.47082531403103
-34.026031746	34.208321995	622.2539674441618
-34.197913832	34.505192742999995	311.1269837220809
-34.197913832	34.505192742999995	233.08188075904496
-34.197913832	34.395827663999995	739.9888454232688
-34.515623582	34.98956916	155.56349186104046
-34.541655328	34.677074829	622.2539674441618
-34.661451247	34.98956916	311.1269837220809
-34.661451247	34.98956916	233.08188075904496
-34.666666666	34.973945576999995	493.8833012561241
-35.000000000	35.666666666	174.61411571650194
-35.005192743	35.23435374	415.3046975799451
-35.223945578	35.359365079	466.1637615180899
-35.312494331	35.666666666000005	311.1269837220809
-35.312494331	35.666666666000005	207.65234878997256
-35.343741496	35.546870747	493.8833012561241
-35.526031746	35.687482993	523.2511306011972
-35.666666666	35.906235826	554.3652619537442
-35.671859410	36.17185941	116.54094037952248
-35.864580498	36.171859409	277.1826309768721
-35.864580498	36.171859409	207.65234878997256
-35.885396825	36.067687074	698.4564628660078
-36.177074829	36.666666665	138.59131548843604
-36.208321995	36.390612243999996	554.3652619537442
-36.343741496	36.666666666	277.1826309768721
-36.343741496	36.666666666	207.65234878997256
-36.359365079	36.645827664	466.1637615180899
-36.671859410	37.354149659	155.56349186104046
-36.687482993	36.885396825	369.9944227116344
-36.874988662	37.026031745	415.3046975799451
-37.000000000	37.354149659	277.1826309768721
-37.000000000	37.354149659	184.9972113558172
-37.010408163	37.208321995	440.0
-37.192698412	37.369773241	466.1637615180899
-37.354149659	37.55727891	493.8833012561241
-37.359365079	37.864580498	103.82617439498628
-37.546870748	37.729160997	622.2539674441618
-37.552063492	37.864580498	246.94165062806206
-37.552063492	37.864580498	184.9972113558172
-37.848956916	38.036439909	493.8833012561241
-37.869773242	38.338526076	123.47082531403103
-38.005192743	38.328117913	415.3046975799451
-38.041655328	38.338526076	246.94165062806206
-38.041655328	38.338526076	184.9972113558172
-38.338526077	38.552063491	349.2282314330039
-38.343741496	38.994784579	138.59131548843604
-38.536439909	38.677074829	415.3046975799451
-38.666666666	38.906235826	554.3652619537442
-38.671859410	38.99478458	246.94165062806206
-38.671859410	38.99478458	174.61411571650194
-38.890612244	39.031247164	493.8833012561241
-39.000000000	39.520816326	92.4986056779086
-39.020816326	40.197913831	466.1637615180899
-39.213537414	39.515623581	233.08188075904496
-39.213537414	39.515623581	174.61411571650194
-39.526031746	39.999999999	92.4986056779086
-39.677074829	39.999999998999996	233.08188075904496
-39.677074829	39.999999998999996	174.61411571650194
-40.005192743	40.687482992	116.54094037952248
-40.338526077	40.687482992999996	293.6647679174076
-40.338526077	40.687482992999996	207.65234878997256
-40.692698412	41.23956916	77.78174593052023
Binary file testdata/TRIOS-groundtruth/take_five.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/take_five/kick.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,25 @@
+0.646875	1.39375	65.40639132514966
+2.3333333333333335	3.0791666666666666	65.40639132514966
+3.996875	4.742708333333334	65.40639132514966
+5.61875	6.365625	65.40639132514966
+7.340625	8.086458333333333	65.40639132514966
+8.975	9.720833333333333	65.40639132514966
+10.645833333333334	11.392708333333333	65.40639132514966
+12.26875	13.014583333333333	65.40639132514966
+13.972916666666666	14.71875	65.40639132514966
+15.638541666666667	16.384375	65.40639132514966
+17.313541666666666	18.059375	65.40639132514966
+18.95	19.696875	65.40639132514966
+20.651041666666668	21.396875	65.40639132514966
+22.314583333333335	23.060416666666665	65.40639132514966
+23.991666666666667	24.738541666666666	65.40639132514966
+25.658333333333335	26.404166666666665	65.40639132514966
+27.341666666666665	28.0875	65.40639132514966
+29.028125	29.773958333333333	65.40639132514966
+30.647916666666667	31.39375	65.40639132514966
+32.333333333333336	33.079166666666666	65.40639132514966
+33.985416666666666	34.73125	65.40639132514966
+35.645833333333336	36.391666666666666	65.40639132514966
+37.34375	38.08958333333333	65.40639132514966
+38.983333333333334	39.729166666666664	65.40639132514966
+40.626041666666666	41.371875	65.40639132514966
Binary file testdata/TRIOS-groundtruth/take_five/kick.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/take_five/mix.csv	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,322 @@
+7.333333333,39,0.520816326,0.609375,D#2 - vel 78
+7.541655328,63,0.312494331,0.609375,D#4 - vel 78
+7.541655328,58,0.312494331,0.609375,A#3 - vel 78
+7.541655328,54,0.312494331,0.609375,F#3 - vel 78
+7.864580498,39,0.479160997,0.609375,D#2 - vel 78
+8.020816326,63,0.328140589,0.609375,D#4 - vel 78
+8.020816326,58,0.328140589,0.609375,A#3 - vel 78
+8.020816326,54,0.328140589,0.609375,F#3 - vel 78
+8.354149659,46,0.661473922,0.609375,A#2 - vel 78
+8.682290249,61,0.333333333,0.609375,C#4 - vel 78
+8.682290249,56,0.333333333,0.609375,G#3 - vel 78
+8.682290249,53,0.333333333,0.609375,F3 - vel 78
+9.020816326,39,0.515623582,0.609375,D#2 - vel 78
+9.213537414,63,0.322902494,0.609375,D#4 - vel 78
+9.213537414,58,0.322902494,0.609375,A#3 - vel 78
+9.213537414,54,0.322902494,0.609375,F#3 - vel 78
+9.541655328,39,0.484376417,0.609375,D#2 - vel 78
+9.692698412,63,0.333333333,0.609375,D#4 - vel 78
+9.692698412,58,0.333333333,0.609375,A#3 - vel 78
+9.692698412,54,0.333333333,0.609375,F#3 - vel 78
+10.031247165,46,0.651043083,0.609375,A#2 - vel 78
+10.364580498,61,0.312494331,0.609375,C#4 - vel 78
+10.364580498,56,0.312494331,0.609375,G#3 - vel 78
+10.364580498,53,0.312494331,0.609375,F3 - vel 78
+10.687482993,39,0.526054421,0.609375,D#2 - vel 78
+10.916666666,63,0.296870748,0.609375,D#4 - vel 78
+10.916666666,58,0.296870748,0.609375,A#3 - vel 78
+10.916666666,54,0.296870748,0.609375,F#3 - vel 78
+11.223945578,39,0.473968253,0.609375,D#2 - vel 78
+11.390612244,63,0.312494331,0.609375,D#4 - vel 78
+11.390612244,58,0.312494331,0.609375,A#3 - vel 78
+11.390612244,54,0.312494331,0.609375,F#3 - vel 78
+11.708321995,46,0.640634920,0.609375,A#2 - vel 78
+12.031247165,61,0.317709750,0.609375,C#4 - vel 78
+12.031247165,56,0.317709750,0.609375,G#3 - vel 78
+12.031247165,53,0.317709750,0.609375,F3 - vel 78
+12.359365079,39,0.510408163,0.609375,D#2 - vel 78
+12.562494331,63,0.307278911,0.609375,D#4 - vel 78
+12.562494331,58,0.307278911,0.609375,A#3 - vel 78
+12.562494331,54,0.307278911,0.609375,F#3 - vel 78
+12.874988662,39,0.473968253,0.609375,D#2 - vel 78
+13.046870748,63,0.302086167,0.609375,D#4 - vel 78
+13.046870748,58,0.302086167,0.609375,A#3 - vel 78
+13.046870748,54,0.302086167,0.609375,F#3 - vel 78
+13.348956916,58,0.234376417,0.609375,A#3 - vel 78
+13.354149659,46,0.656258503,0.609375,A#2 - vel 78
+13.572902494,63,0.130204081,0.609375,D#4 - vel 78
+13.677074829,61,0.333333333,0.609375,C#4 - vel 78
+13.677074829,56,0.333333333,0.609375,G#3 - vel 78
+13.677074829,53,0.333333333,0.609375,F3 - vel 78
+13.703106575,66,0.192721088,0.609375,F#4 - vel 78
+13.880204081,68,0.156235827,0.609375,G#4 - vel 78
+14.015623582,39,0.515623582,0.609375,D#2 - vel 78
+14.026031746,69,0.223968253,0.609375,A4 - vel 78
+14.213537414,63,0.317709750,0.609375,D#4 - vel 78
+14.213537414,58,0.317709750,0.609375,A#3 - vel 78
+14.213537414,54,0.317709750,0.609375,F#3 - vel 78
+14.244784580,70,0.124988662,0.609375,A#4 - vel 78
+14.359365079,69,0.197913832,0.609375,A4 - vel 78
+14.536439909,39,0.473968253,0.609375,D#2 - vel 78
+14.546870748,68,0.182290249,0.609375,G#4 - vel 78
+14.697913832,63,0.312494331,0.609375,D#4 - vel 78
+14.697913832,58,0.312494331,0.609375,A#3 - vel 78
+14.697913832,54,0.312494331,0.609375,F#3 - vel 78
+14.713537414,66,0.208321995,0.609375,F#4 - vel 78
+15.005192743,58,0.369795918,0.609375,A#3 - vel 78
+15.020816326,46,0.661473922,0.609375,A#2 - vel 78
+15.354149659,61,0.296870748,0.609375,C#4 - vel 78
+15.354149659,56,0.333333333,0.609375,G#3 - vel 78
+15.354149659,53,0.333333333,0.609375,F3 - vel 78
+15.359365079,61,0.328117913,0.609375,C#4 - vel 78
+15.692698412,39,0.526031746,0.609375,D#2 - vel 78
+15.713537414,63,0.505192743,0.609375,D#4 - vel 78
+15.885396825,63,0.682290249,0.609375,D#4 - vel 78
+15.885396825,58,0.333333333,0.609375,A#3 - vel 78
+15.885396825,54,0.333333333,0.609375,F#3 - vel 78
+16.223945578,39,0.453129251,0.609375,D#2 - vel 78
+16.380204081,63,0.302086167,0.609375,D#4 - vel 78
+16.380204081,58,0.302086167,0.609375,A#3 - vel 78
+16.380204081,54,0.302086167,0.609375,F#3 - vel 78
+16.661451247,65,0.119795918,0.609375,F4 - vel 78
+16.692698412,46,0.666666666,0.609375,A#2 - vel 78
+16.755192743,66,0.104172335,0.609375,F#4 - vel 78
+16.854149659,63,0.119795918,0.609375,D#4 - vel 78
+16.958321995,61,0.364580498,0.609375,C#4 - vel 78
+17.015623582,61,0.343741496,0.609375,C#4 - vel 78
+17.015623582,56,0.343741496,0.609375,G#3 - vel 78
+17.015623582,53,0.343741496,0.609375,F3 - vel 78
+17.312494331,63,0.557278911,0.609375,D#4 - vel 78
+17.364580498,39,0.505192743,0.609375,D#2 - vel 78
+17.557278911,63,0.682290249,0.609375,D#4 - vel 78
+17.557278911,58,0.312494331,0.609375,A#3 - vel 78
+17.557278911,54,0.312494331,0.609375,F#3 - vel 78
+17.874988662,39,0.468752834,0.609375,D#2 - vel 78
+18.046870748,63,0.296870748,0.609375,D#4 - vel 78
+18.046870748,58,0.296870748,0.609375,A#3 - vel 78
+18.046870748,54,0.296870748,0.609375,F#3 - vel 78
+18.359365079,46,0.671882086,0.609375,A#2 - vel 78
+18.369773242,61,0.104172335,0.609375,C#4 - vel 78
+18.453106575,63,0.062517006,0.609375,D#4 - vel 78
+18.500000000,61,0.130204081,0.609375,C#4 - vel 78
+18.604149659,58,0.088548752,0.609375,A#3 - vel 78
+18.677074829,56,0.338548752,0.609375,G#3 - vel 78
+18.697913832,61,0.333333333,0.609375,C#4 - vel 78
+18.697913832,56,0.333333333,0.609375,G#3 - vel 78
+18.697913832,53,0.333333333,0.609375,F3 - vel 78
+19.005192743,58,0.536462585,0.609375,A#3 - vel 78
+19.041655328,39,0.500000000,0.609375,D#2 - vel 78
+19.244784580,63,0.296870748,0.609375,D#4 - vel 78
+19.244784580,58,0.708321995,0.609375,A#3 - vel 78
+19.244784580,54,0.296870748,0.609375,F#3 - vel 78
+19.546870748,39,0.484376417,0.609375,D#2 - vel 78
+19.723945578,63,0.307301587,0.609375,D#4 - vel 78
+19.723945578,58,0.307301587,0.609375,A#3 - vel 78
+19.723945578,54,0.307301587,0.609375,F#3 - vel 78
+20.041655328,46,0.651043083,0.609375,A#2 - vel 78
+20.072902494,58,0.203129251,0.609375,A#3 - vel 78
+20.260408163,63,0.119795918,0.609375,D#4 - vel 78
+20.364580498,61,0.328117913,0.609375,C#4 - vel 78
+20.364580498,56,0.328117913,0.609375,G#3 - vel 78
+20.364580498,53,0.328117913,0.609375,F3 - vel 78
+20.390612244,66,0.187505668,0.609375,F#4 - vel 78
+20.557278911,68,0.140634920,0.609375,G#4 - vel 78
+20.687482993,69,0.213537414,0.609375,A4 - vel 78
+20.703106575,39,0.494807256,0.609375,D#2 - vel 78
+20.885396825,70,0.161473922,0.609375,A#4 - vel 78
+20.906235827,63,0.296870748,0.609375,D#4 - vel 78
+20.906235827,58,0.296870748,0.609375,A#3 - vel 78
+20.906235827,54,0.296870748,0.609375,F#3 - vel 78
+21.020816326,69,0.213537414,0.609375,A4 - vel 78
+21.208321995,39,0.484376417,0.609375,D#2 - vel 78
+21.218730158,68,0.156258503,0.609375,G#4 - vel 78
+21.359365079,66,0.223968253,0.609375,F#4 - vel 78
+21.380204081,63,0.317709750,0.609375,D#4 - vel 78
+21.380204081,58,0.317709750,0.609375,A#3 - vel 78
+21.380204081,54,0.317709750,0.609375,F#3 - vel 78
+21.697913832,58,0.385419501,0.609375,A#3 - vel 78
+21.703106575,46,0.645850340,0.609375,A#2 - vel 78
+22.026031746,61,0.302086167,0.609375,C#4 - vel 78
+22.026031746,56,0.322925170,0.609375,G#3 - vel 78
+22.026031746,53,0.322925170,0.609375,F3 - vel 78
+22.062494331,61,0.286462585,0.609375,C#4 - vel 78
+22.354149659,39,0.515623582,0.609375,D#2 - vel 78
+22.390612244,63,0.479160997,0.609375,D#4 - vel 78
+22.557278911,63,0.625011337,0.609375,D#4 - vel 78
+22.557278911,58,0.312494331,0.609375,A#3 - vel 78
+22.557278911,54,0.312494331,0.609375,F#3 - vel 78
+22.874988662,39,0.468752834,0.609375,D#2 - vel 78
+23.036439909,63,0.307301587,0.609375,D#4 - vel 78
+23.036439909,58,0.307301587,0.609375,A#3 - vel 78
+23.036439909,54,0.307301587,0.609375,F#3 - vel 78
+23.354149659,46,0.666666666,0.609375,A#2 - vel 78
+23.359365079,61,0.062494331,0.609375,C#4 - vel 78
+23.411451247,63,0.078117913,0.609375,D#4 - vel 78
+23.479160997,61,0.114580498,0.609375,C#4 - vel 78
+23.567687074,58,0.104172335,0.609375,A#3 - vel 78
+23.645827664,56,0.307278911,0.609375,G#3 - vel 78
+23.687482993,61,0.338548752,0.609375,C#4 - vel 78
+23.687482993,56,0.338548752,0.609375,G#3 - vel 78
+23.687482993,53,0.338548752,0.609375,F3 - vel 78
+24.000000000,58,0.541655328,0.609375,A#3 - vel 78
+24.031247165,39,0.510408163,0.609375,D#2 - vel 78
+24.229160997,63,0.312494331,0.609375,D#4 - vel 78
+24.229160997,58,0.656235827,0.609375,A#3 - vel 78
+24.229160997,54,0.312494331,0.609375,F#3 - vel 78
+24.546870748,39,0.479160997,0.609375,D#2 - vel 78
+24.708321995,63,0.312494331,0.609375,D#4 - vel 78
+24.708321995,58,0.312494331,0.609375,A#3 - vel 78
+24.708321995,54,0.312494331,0.609375,F#3 - vel 78
+25.000000000,65,0.067687074,0.609375,F4 - vel 78
+25.031247165,46,0.671859410,0.609375,A#2 - vel 78
+25.052063492,66,0.109387755,0.609375,F#4 - vel 78
+25.151020408,65,0.046893424,0.609375,F4 - vel 78
+25.197913832,63,0.098956916,0.609375,D#4 - vel 78
+25.286439909,61,0.354172335,0.609375,C#4 - vel 78
+25.359365079,61,0.348956916,0.609375,C#4 - vel 78
+25.359365079,56,0.348956916,0.609375,G#3 - vel 78
+25.359365079,53,0.348956916,0.609375,F3 - vel 78
+25.630204081,63,0.583333333,0.609375,D#4 - vel 78
+25.713537414,39,0.500000000,0.609375,D#2 - vel 78
+25.901020408,63,0.781269841,0.609375,D#4 - vel 78
+25.901020408,58,0.312517006,0.609375,A#3 - vel 78
+25.901020408,54,0.312517006,0.609375,F#3 - vel 78
+26.218730158,39,0.458344671,0.609375,D#2 - vel 78
+26.374988662,63,0.385419501,0.609375,D#4 - vel 78
+26.374988662,58,0.307301587,0.609375,A#3 - vel 78
+26.374988662,54,0.307301587,0.609375,F#3 - vel 78
+26.687482993,46,0.661473922,0.609375,A#2 - vel 78
+27.010408163,61,0.343741496,0.609375,C#4 - vel 78
+27.010408163,56,0.343741496,0.609375,G#3 - vel 78
+27.010408163,53,0.343741496,0.609375,F3 - vel 78
+27.359365079,47,0.505215419,0.609375,B2 - vel 78
+27.369773242,75,0.223968253,0.609375,D#5 - vel 78
+27.541655328,63,0.322925170,0.609375,D#4 - vel 78
+27.541655328,58,0.322925170,0.609375,A#3 - vel 78
+27.583333333,78,0.177074829,0.609375,F#5 - vel 78
+27.874988662,51,0.479160997,0.609375,D#3 - vel 78
+27.895827664,75,0.161451247,0.609375,D#5 - vel 78
+28.020816326,63,0.333333333,0.609375,D#4 - vel 78
+28.020816326,58,0.333333333,0.609375,A#3 - vel 78
+28.041655328,71,0.291678004,0.609375,B4 - vel 78
+28.348956916,68,0.229160997,0.609375,G#4 - vel 78
+28.364580498,53,0.645827664,0.609375,F3 - vel 78
+28.562494331,70,0.145827664,0.609375,A#4 - vel 78
+28.682290249,63,0.328117913,0.609375,D#4 - vel 78
+28.682290249,56,0.328117913,0.609375,G#3 - vel 78
+28.692698412,71,0.192698412,0.609375,B4 - vel 78
+28.869773242,72,0.156258503,0.609375,C5 - vel 78
+29.010408163,73,0.218752834,0.609375,C#5 - vel 78
+29.015623582,46,0.500000000,0.609375,A#2 - vel 78
+29.213537414,77,0.187482993,0.609375,F5 - vel 78
+29.223945578,61,0.291678004,0.609375,C#4 - vel 78
+29.223945578,56,0.291678004,0.609375,G#3 - vel 78
+29.505192743,73,0.192721088,0.609375,C#5 - vel 78
+29.526031746,49,0.479160997,0.609375,C#3 - vel 78
+29.656235827,70,0.307301587,0.609375,A#4 - vel 78
+29.692698412,61,0.312494331,0.609375,C#4 - vel 78
+29.692698412,56,0.312494331,0.609375,G#3 - vel 78
+29.994784580,66,0.208321995,0.609375,F#4 - vel 78
+30.015623582,51,0.661451247,0.609375,D#3 - vel 78
+30.187482993,68,0.161473922,0.609375,G#4 - vel 78
+30.328117913,61,0.348956916,0.609375,C#4 - vel 78
+30.328117913,54,0.348956916,0.609375,F#3 - vel 78
+30.333333333,69,0.197913832,0.609375,A4 - vel 78
+30.515623582,70,0.161451247,0.609375,A#4 - vel 78
+30.661451247,71,0.213537414,0.609375,B4 - vel 78
+30.682290249,44,0.510408163,0.609375,G#2 - vel 78
+30.864580498,75,0.187482993,0.609375,D#5 - vel 78
+30.874988662,59,0.317709750,0.609375,B3 - vel 78
+30.874988662,54,0.317709750,0.609375,F#3 - vel 78
+31.151020408,71,0.182312925,0.609375,B4 - vel 78
+31.203106575,47,0.473968253,0.609375,B2 - vel 78
+31.307278911,68,0.328117913,0.609375,G#4 - vel 78
+31.364580498,59,0.312494331,0.609375,B3 - vel 78
+31.364580498,54,0.312494331,0.609375,F#3 - vel 78
+31.640612244,65,0.239591836,0.609375,F4 - vel 78
+31.692698412,49,0.645827664,0.609375,C#3 - vel 78
+31.854149659,66,0.130204081,0.609375,F#4 - vel 78
+31.973945578,68,0.223968253,0.609375,G#4 - vel 78
+32.031247165,59,0.307278911,0.609375,B3 - vel 78
+32.031247165,53,0.307278911,0.609375,F3 - vel 78
+32.182290249,69,0.151043083,0.609375,A4 - vel 78
+32.317687074,70,0.213560090,0.609375,A#4 - vel 78
+32.343741496,42,0.505215419,0.609375,F#2 - vel 78
+32.515623582,69,0.151043083,0.609375,A4 - vel 78
+32.541655328,58,0.307301587,0.609375,A#3 - vel 78
+32.541655328,53,0.307301587,0.609375,F3 - vel 78
+32.651020408,70,0.197936507,0.609375,A#4 - vel 78
+32.838526077,71,0.177097505,0.609375,B4 - vel 78
+32.854149659,42,0.463537414,0.609375,F#2 - vel 78
+32.994784580,73,0.218752834,0.609375,C#5 - vel 78
+33.010408163,58,0.307278911,0.609375,A#3 - vel 78
+33.010408163,53,0.307278911,0.609375,F3 - vel 78
+33.322902494,73,0.239591836,0.609375,C#5 - vel 78
+33.333333333,46,0.666666666,0.609375,A#2 - vel 78
+33.536439909,72,0.151043083,0.609375,C5 - vel 78
+33.666666666,62,0.333333333,0.609375,D4 - vel 78
+33.666666666,56,0.333333333,0.609375,G#3 - vel 78
+33.666666666,73,0.208321995,0.609375,C#5 - vel 78
+33.859365079,74,0.177074829,0.609375,D5 - vel 78
+34.005192743,47,0.500000000,0.609375,B2 - vel 78
+34.026031746,75,0.182290249,0.609375,D#5 - vel 78
+34.197913832,63,0.307278911,0.609375,D#4 - vel 78
+34.197913832,58,0.307278911,0.609375,A#3 - vel 78
+34.197913832,78,0.197913832,0.609375,F#5 - vel 78
+34.515623582,51,0.473945578,0.609375,D#3 - vel 78
+34.541655328,75,0.135419501,0.609375,D#5 - vel 78
+34.661451247,63,0.328117913,0.609375,D#4 - vel 78
+34.661451247,58,0.328117913,0.609375,A#3 - vel 78
+34.666666666,71,0.307278911,0.609375,B4 - vel 78
+35.000000000,53,0.666666666,0.609375,F3 - vel 78
+35.005192743,68,0.229160997,0.609375,G#4 - vel 78
+35.223945578,70,0.135419501,0.609375,A#4 - vel 78
+35.312494331,63,0.354172335,0.609375,D#4 - vel 78
+35.312494331,56,0.354172335,0.609375,G#3 - vel 78
+35.343741496,71,0.203129251,0.609375,B4 - vel 78
+35.526031746,72,0.161451247,0.609375,C5 - vel 78
+35.666666666,73,0.239569160,0.609375,C#5 - vel 78
+35.671859410,46,0.500000000,0.609375,A#2 - vel 78
+35.864580498,61,0.307278911,0.609375,C#4 - vel 78
+35.864580498,56,0.307278911,0.609375,G#3 - vel 78
+35.885396825,77,0.182290249,0.609375,F5 - vel 78
+36.177074829,49,0.489591836,0.609375,C#3 - vel 78
+36.208321995,73,0.182290249,0.609375,C#5 - vel 78
+36.343741496,61,0.322925170,0.609375,C#4 - vel 78
+36.343741496,56,0.322925170,0.609375,G#3 - vel 78
+36.359365079,70,0.286462585,0.609375,A#4 - vel 78
+36.671859410,51,0.682290249,0.609375,D#3 - vel 78
+36.687482993,66,0.197913832,0.609375,F#4 - vel 78
+36.874988662,68,0.151043083,0.609375,G#4 - vel 78
+37.000000000,61,0.354149659,0.609375,C#4 - vel 78
+37.000000000,54,0.354149659,0.609375,F#3 - vel 78
+37.010408163,69,0.197913832,0.609375,A4 - vel 78
+37.192698412,70,0.177074829,0.609375,A#4 - vel 78
+37.354149659,71,0.203129251,0.609375,B4 - vel 78
+37.359365079,44,0.505215419,0.609375,G#2 - vel 78
+37.546870748,75,0.182290249,0.609375,D#5 - vel 78
+37.552063492,59,0.312517006,0.609375,B3 - vel 78
+37.552063492,54,0.312517006,0.609375,F#3 - vel 78
+37.848956916,71,0.187482993,0.609375,B4 - vel 78
+37.869773242,47,0.468752834,0.609375,B2 - vel 78
+38.005192743,68,0.322925170,0.609375,G#4 - vel 78
+38.041655328,59,0.296870748,0.609375,B3 - vel 78
+38.041655328,54,0.296870748,0.609375,F#3 - vel 78
+38.338526077,65,0.213537414,0.609375,F4 - vel 78
+38.343741496,49,0.651043083,0.609375,C#3 - vel 78
+38.536439909,68,0.140634920,0.609375,G#4 - vel 78
+38.666666666,73,0.239569160,0.609375,C#5 - vel 78
+38.671859410,59,0.322925170,0.609375,B3 - vel 78
+38.671859410,53,0.322925170,0.609375,F3 - vel 78
+38.890612244,71,0.140634920,0.609375,B4 - vel 78
+39.000000000,42,0.520816326,0.609375,F#2 - vel 78
+39.020816326,70,1.177097505,0.609375,A#4 - vel 78
+39.213537414,58,0.302086167,0.609375,A#3 - vel 78
+39.213537414,53,0.302086167,0.609375,F3 - vel 78
+39.526031746,42,0.473968253,0.609375,F#2 - vel 78
+39.677074829,58,0.322925170,0.609375,A#3 - vel 78
+39.677074829,53,0.322925170,0.609375,F3 - vel 78
+40.005192743,46,0.682290249,0.609375,A#2 - vel 78
+40.338526077,62,0.348956916,0.609375,D4 - vel 78
+40.338526077,56,0.348956916,0.609375,G#3 - vel 78
+40.692698412,39,0.546870748,0.609375,D#2 - vel 78
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/take_five/mix.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,322 @@
+7.333333333	7.854149659	77.78174593052023
+7.541655328	7.854149659	311.1269837220809
+7.541655328	7.854149659	233.08188075904496
+7.541655328	7.854149659	184.9972113558172
+7.864580498	8.343741495	77.78174593052023
+8.020816326	8.348956915	311.1269837220809
+8.020816326	8.348956915	233.08188075904496
+8.020816326	8.348956915	184.9972113558172
+8.354149659	9.015623581000002	116.54094037952248
+8.682290249	9.015623582	277.1826309768721
+8.682290249	9.015623582	207.65234878997256
+8.682290249	9.015623582	174.61411571650194
+9.020816326	9.536439908	77.78174593052023
+9.213537414	9.536439907999998	311.1269837220809
+9.213537414	9.536439907999998	233.08188075904496
+9.213537414	9.536439907999998	184.9972113558172
+9.541655328	10.026031745	77.78174593052023
+9.692698412	10.026031745000001	311.1269837220809
+9.692698412	10.026031745000001	233.08188075904496
+9.692698412	10.026031745000001	184.9972113558172
+10.031247165	10.682290248	116.54094037952248
+10.364580498	10.677074829	277.1826309768721
+10.364580498	10.677074829	207.65234878997256
+10.364580498	10.677074829	174.61411571650194
+10.687482993	11.213537414	77.78174593052023
+10.916666666	11.213537414	311.1269837220809
+10.916666666	11.213537414	233.08188075904496
+10.916666666	11.213537414	184.9972113558172
+11.223945578	11.697913831000001	77.78174593052023
+11.390612244	11.703106575	311.1269837220809
+11.390612244	11.703106575	233.08188075904496
+11.390612244	11.703106575	184.9972113558172
+11.708321995	12.348956915	116.54094037952248
+12.031247165	12.348956915	277.1826309768721
+12.031247165	12.348956915	207.65234878997256
+12.031247165	12.348956915	174.61411571650194
+12.359365079	12.869773241999999	77.78174593052023
+12.562494331	12.869773241999999	311.1269837220809
+12.562494331	12.869773241999999	233.08188075904496
+12.562494331	12.869773241999999	184.9972113558172
+12.874988662	13.348956915	77.78174593052023
+13.046870748	13.348956915	311.1269837220809
+13.046870748	13.348956915	233.08188075904496
+13.046870748	13.348956915	184.9972113558172
+13.348956916	13.583333333	233.08188075904496
+13.354149659	14.010408162000001	116.54094037952248
+13.572902494	13.703106575	311.1269837220809
+13.677074829	14.010408162000001	277.1826309768721
+13.677074829	14.010408162000001	207.65234878997256
+13.677074829	14.010408162000001	174.61411571650194
+13.703106575	13.895827663	369.9944227116344
+13.880204081	14.036439908	415.3046975799451
+14.015623582	14.531247164	77.78174593052023
+14.026031746	14.249999999	440.0
+14.213537414	14.531247164	311.1269837220809
+14.213537414	14.531247164	233.08188075904496
+14.213537414	14.531247164	184.9972113558172
+14.244784580	14.369773242	466.1637615180899
+14.359365079	14.557278911	440.0
+14.536439909	15.010408162000001	77.78174593052023
+14.546870748	14.729160997	415.3046975799451
+14.697913832	15.010408163	311.1269837220809
+14.697913832	15.010408163	233.08188075904496
+14.697913832	15.010408163	184.9972113558172
+14.713537414	14.921859409	369.9944227116344
+15.005192743	15.374988661	233.08188075904496
+15.020816326	15.682290248000001	116.54094037952248
+15.354149659	15.651020407	277.1826309768721
+15.354149659	15.687482992000001	207.65234878997256
+15.354149659	15.687482992000001	174.61411571650194
+15.359365079	15.687482992	277.1826309768721
+15.692698412	16.218730158	77.78174593052023
+15.713537414	16.218730157	311.1269837220809
+15.885396825	16.567687074000002	311.1269837220809
+15.885396825	16.218730158	233.08188075904496
+15.885396825	16.218730158	184.9972113558172
+16.223945578	16.677074829	77.78174593052023
+16.380204081	16.682290247999997	311.1269837220809
+16.380204081	16.682290247999997	233.08188075904496
+16.380204081	16.682290247999997	184.9972113558172
+16.661451247	16.781247165	349.2282314330039
+16.692698412	17.359365078	116.54094037952248
+16.755192743	16.859365078	369.9944227116344
+16.854149659	16.973945577000002	311.1269837220809
+16.958321995	17.322902492999997	277.1826309768721
+17.015623582	17.359365078	277.1826309768721
+17.015623582	17.359365078	207.65234878997256
+17.015623582	17.359365078	174.61411571650194
+17.312494331	17.869773242	311.1269837220809
+17.364580498	17.869773240999997	77.78174593052023
+17.557278911	18.239569160000002	311.1269837220809
+17.557278911	17.869773242	233.08188075904496
+17.557278911	17.869773242	184.9972113558172
+17.874988662	18.343741496	77.78174593052023
+18.046870748	18.343741496	311.1269837220809
+18.046870748	18.343741496	233.08188075904496
+18.046870748	18.343741496	184.9972113558172
+18.359365079	19.031247165	116.54094037952248
+18.369773242	18.473945577000002	277.1826309768721
+18.453106575	18.515623581	311.1269837220809
+18.500000000	18.630204081	277.1826309768721
+18.604149659	18.692698411000002	233.08188075904496
+18.677074829	19.015623581	207.65234878997256
+18.697913832	19.031247165	277.1826309768721
+18.697913832	19.031247165	207.65234878997256
+18.697913832	19.031247165	174.61411571650194
+19.005192743	19.541655327999997	233.08188075904496
+19.041655328	19.541655328	77.78174593052023
+19.244784580	19.541655328	311.1269837220809
+19.244784580	19.953106575	233.08188075904496
+19.244784580	19.541655328	184.9972113558172
+19.546870748	20.031247165	77.78174593052023
+19.723945578	20.031247165	311.1269837220809
+19.723945578	20.031247165	233.08188075904496
+19.723945578	20.031247165	184.9972113558172
+20.041655328	20.692698411000002	116.54094037952248
+20.072902494	20.276031745	233.08188075904496
+20.260408163	20.380204081000002	311.1269837220809
+20.364580498	20.692698411	277.1826309768721
+20.364580498	20.692698411	207.65234878997256
+20.364580498	20.692698411	174.61411571650194
+20.390612244	20.578117912	369.9944227116344
+20.557278911	20.697913831	415.3046975799451
+20.687482993	20.901020407	440.0
+20.703106575	21.197913831	77.78174593052023
+20.885396825	21.046870747	466.1637615180899
+20.906235827	21.203106575	311.1269837220809
+20.906235827	21.203106575	233.08188075904496
+20.906235827	21.203106575	184.9972113558172
+21.020816326	21.23435374	440.0
+21.208321995	21.692698412	77.78174593052023
+21.218730158	21.374988661	415.3046975799451
+21.359365079	21.583333332	369.9944227116344
+21.380204081	21.697913830999997	311.1269837220809
+21.380204081	21.697913830999997	233.08188075904496
+21.380204081	21.697913830999997	184.9972113558172
+21.697913832	22.083333333000002	233.08188075904496
+21.703106575	22.348956915	116.54094037952248
+22.026031746	22.328117913	277.1826309768721
+22.026031746	22.348956916000002	207.65234878997256
+22.026031746	22.348956916000002	174.61411571650194
+22.062494331	22.348956916	277.1826309768721
+22.354149659	22.869773241	77.78174593052023
+22.390612244	22.869773241	311.1269837220809
+22.557278911	23.182290248	311.1269837220809
+22.557278911	22.869773242	233.08188075904496
+22.557278911	22.869773242	184.9972113558172
+22.874988662	23.343741496	77.78174593052023
+23.036439909	23.343741496	311.1269837220809
+23.036439909	23.343741496	233.08188075904496
+23.036439909	23.343741496	184.9972113558172
+23.354149659	24.020816325000002	116.54094037952248
+23.359365079	23.42185941	277.1826309768721
+23.411451247	23.48956916	311.1269837220809
+23.479160997	23.593741495	277.1826309768721
+23.567687074	23.671859409	233.08188075904496
+23.645827664	23.953106575	207.65234878997256
+23.687482993	24.026031745	277.1826309768721
+23.687482993	24.026031745	207.65234878997256
+23.687482993	24.026031745	174.61411571650194
+24.000000000	24.541655328	233.08188075904496
+24.031247165	24.541655328	77.78174593052023
+24.229160997	24.541655328	311.1269837220809
+24.229160997	24.885396824	233.08188075904496
+24.229160997	24.541655328	184.9972113558172
+24.546870748	25.026031745	77.78174593052023
+24.708321995	25.020816326	311.1269837220809
+24.708321995	25.020816326	233.08188075904496
+24.708321995	25.020816326	184.9972113558172
+25.000000000	25.067687074	349.2282314330039
+25.031247165	25.703106575	116.54094037952248
+25.052063492	25.161451247	369.9944227116344
+25.151020408	25.197913832	349.2282314330039
+25.197913832	25.296870748	311.1269837220809
+25.286439909	25.640612244	277.1826309768721
+25.359365079	25.708321995	277.1826309768721
+25.359365079	25.708321995	207.65234878997256
+25.359365079	25.708321995	174.61411571650194
+25.630204081	26.213537413999997	311.1269837220809
+25.713537414	26.213537414	77.78174593052023
+25.901020408	26.682290249	311.1269837220809
+25.901020408	26.213537414	233.08188075904496
+25.901020408	26.213537414	184.9972113558172
+26.218730158	26.677074829	77.78174593052023
+26.374988662	26.760408163	311.1269837220809
+26.374988662	26.682290249	233.08188075904496
+26.374988662	26.682290249	184.9972113558172
+26.687482993	27.348956915	116.54094037952248
+27.010408163	27.354149659	277.1826309768721
+27.010408163	27.354149659	207.65234878997256
+27.010408163	27.354149659	174.61411571650194
+27.359365079	27.864580498	123.47082531403103
+27.369773242	27.593741495	622.2539674441618
+27.541655328	27.864580498000002	311.1269837220809
+27.541655328	27.864580498000002	233.08188075904496
+27.583333333	27.760408161999997	739.9888454232688
+27.874988662	28.354149659	155.56349186104046
+27.895827664	28.057278910999997	622.2539674441618
+28.020816326	28.354149658999997	311.1269837220809
+28.020816326	28.354149658999997	233.08188075904496
+28.041655328	28.333333332000002	493.8833012561241
+28.348956916	28.578117913	415.3046975799451
+28.364580498	29.010408161999997	174.61411571650194
+28.562494331	28.708321995	466.1637615180899
+28.682290249	29.010408162	311.1269837220809
+28.682290249	29.010408162	207.65234878997256
+28.692698412	28.885396823999997	493.8833012561241
+28.869773242	29.026031745	523.2511306011972
+29.010408163	29.229160997	554.3652619537442
+29.015623582	29.515623582	116.54094037952248
+29.213537414	29.401020407	698.4564628660078
+29.223945578	29.515623582	277.1826309768721
+29.223945578	29.515623582	207.65234878997256
+29.505192743	29.697913830999997	554.3652619537442
+29.526031746	30.005192743000002	138.59131548843604
+29.656235827	29.963537414	466.1637615180899
+29.692698412	30.005192743	277.1826309768721
+29.692698412	30.005192743	207.65234878997256
+29.994784580	30.203106575	369.9944227116344
+30.015623582	30.677074829	155.56349186104046
+30.187482993	30.348956915	415.3046975799451
+30.328117913	30.677074829	277.1826309768721
+30.328117913	30.677074829	184.9972113558172
+30.333333333	30.531247165	440.0
+30.515623582	30.677074829	466.1637615180899
+30.661451247	30.874988661	493.8833012561241
+30.682290249	31.192698412000002	103.82617439498628
+30.864580498	31.052063491	622.2539674441618
+30.874988662	31.192698412	246.94165062806206
+30.874988662	31.192698412	184.9972113558172
+31.151020408	31.333333333000002	493.8833012561241
+31.203106575	31.677074828	123.47082531403103
+31.307278911	31.635396824	415.3046975799451
+31.364580498	31.677074829	246.94165062806206
+31.364580498	31.677074829	184.9972113558172
+31.640612244	31.88020408	349.2282314330039
+31.692698412	32.338526076	138.59131548843604
+31.854149659	31.98435374	369.9944227116344
+31.973945578	32.197913831	415.3046975799451
+32.031247165	32.338526076	246.94165062806206
+32.031247165	32.338526076	174.61411571650194
+32.182290249	32.333333331999995	440.0
+32.317687074	32.531247164	466.1637615180899
+32.343741496	32.848956915	92.4986056779086
+32.515623582	32.666666665	440.0
+32.541655328	32.848956914999995	233.08188075904496
+32.541655328	32.848956914999995	174.61411571650194
+32.651020408	32.848956915	466.1637615180899
+32.838526077	33.015623581999996	493.8833012561241
+32.854149659	33.317687073	92.4986056779086
+32.994784580	33.213537414	554.3652619537442
+33.010408163	33.317687074	233.08188075904496
+33.010408163	33.317687074	174.61411571650194
+33.322902494	33.56249433	554.3652619537442
+33.333333333	33.999999998999996	116.54094037952248
+33.536439909	33.687482992	523.2511306011972
+33.666666666	33.999999998999996	293.6647679174076
+33.666666666	33.999999998999996	207.65234878997256
+33.666666666	33.874988660999996	554.3652619537442
+33.859365079	34.036439908	587.3295358348151
+34.005192743	34.505192743	123.47082531403103
+34.026031746	34.208321995	622.2539674441618
+34.197913832	34.505192742999995	311.1269837220809
+34.197913832	34.505192742999995	233.08188075904496
+34.197913832	34.395827663999995	739.9888454232688
+34.515623582	34.98956916	155.56349186104046
+34.541655328	34.677074829	622.2539674441618
+34.661451247	34.98956916	311.1269837220809
+34.661451247	34.98956916	233.08188075904496
+34.666666666	34.973945576999995	493.8833012561241
+35.000000000	35.666666666	174.61411571650194
+35.005192743	35.23435374	415.3046975799451
+35.223945578	35.359365079	466.1637615180899
+35.312494331	35.666666666000005	311.1269837220809
+35.312494331	35.666666666000005	207.65234878997256
+35.343741496	35.546870747	493.8833012561241
+35.526031746	35.687482993	523.2511306011972
+35.666666666	35.906235826	554.3652619537442
+35.671859410	36.17185941	116.54094037952248
+35.864580498	36.171859409	277.1826309768721
+35.864580498	36.171859409	207.65234878997256
+35.885396825	36.067687074	698.4564628660078
+36.177074829	36.666666665	138.59131548843604
+36.208321995	36.390612243999996	554.3652619537442
+36.343741496	36.666666666	277.1826309768721
+36.343741496	36.666666666	207.65234878997256
+36.359365079	36.645827664	466.1637615180899
+36.671859410	37.354149659	155.56349186104046
+36.687482993	36.885396825	369.9944227116344
+36.874988662	37.026031745	415.3046975799451
+37.000000000	37.354149659	277.1826309768721
+37.000000000	37.354149659	184.9972113558172
+37.010408163	37.208321995	440.0
+37.192698412	37.369773241	466.1637615180899
+37.354149659	37.55727891	493.8833012561241
+37.359365079	37.864580498	103.82617439498628
+37.546870748	37.729160997	622.2539674441618
+37.552063492	37.864580498	246.94165062806206
+37.552063492	37.864580498	184.9972113558172
+37.848956916	38.036439909	493.8833012561241
+37.869773242	38.338526076	123.47082531403103
+38.005192743	38.328117913	415.3046975799451
+38.041655328	38.338526076	246.94165062806206
+38.041655328	38.338526076	184.9972113558172
+38.338526077	38.552063491	349.2282314330039
+38.343741496	38.994784579	138.59131548843604
+38.536439909	38.677074829	415.3046975799451
+38.666666666	38.906235826	554.3652619537442
+38.671859410	38.99478458	246.94165062806206
+38.671859410	38.99478458	174.61411571650194
+38.890612244	39.031247164	493.8833012561241
+39.000000000	39.520816326	92.4986056779086
+39.020816326	40.197913831	466.1637615180899
+39.213537414	39.515623581	233.08188075904496
+39.213537414	39.515623581	174.61411571650194
+39.526031746	39.999999999	92.4986056779086
+39.677074829	39.999999998999996	233.08188075904496
+39.677074829	39.999999998999996	174.61411571650194
+40.005192743	40.687482992	116.54094037952248
+40.338526077	40.687482992999996	293.6647679174076
+40.338526077	40.687482992999996	207.65234878997256
+40.692698412	41.23956916	77.78174593052023
Binary file testdata/TRIOS-groundtruth/take_five/mix.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/take_five/piano.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,217 @@
+7.333333333333333	7.854166666666667	77.78174593052023
+7.541666666666667	7.854166666666667	184.9972113558172
+7.541666666666667	7.854166666666667	233.08188075904496
+7.541666666666667	7.854166666666667	311.1269837220809
+7.864583333333333	8.34375	77.78174593052023
+8.020833333333334	8.348958333333334	184.9972113558172
+8.020833333333334	8.348958333333334	233.08188075904496
+8.020833333333334	8.348958333333334	311.1269837220809
+8.354166666666666	9.015625	116.54094037952248
+8.682291666666666	9.015625	174.61411571650194
+8.682291666666666	9.015625	207.65234878997256
+8.682291666666666	9.015625	277.1826309768721
+9.020833333333334	9.536458333333334	77.78174593052023
+9.213541666666666	9.536458333333334	184.9972113558172
+9.213541666666666	9.536458333333334	233.08188075904496
+9.213541666666666	9.536458333333334	311.1269837220809
+9.541666666666666	10.026041666666666	77.78174593052023
+9.692708333333334	10.026041666666666	184.9972113558172
+9.692708333333334	10.026041666666666	233.08188075904496
+9.692708333333334	10.026041666666666	311.1269837220809
+10.03125	10.682291666666666	116.54094037952248
+10.364583333333334	10.677083333333334	174.61411571650194
+10.364583333333334	10.677083333333334	207.65234878997256
+10.364583333333334	10.677083333333334	277.1826309768721
+10.6875	11.213541666666666	77.78174593052023
+10.916666666666666	11.213541666666666	184.9972113558172
+10.916666666666666	11.213541666666666	233.08188075904496
+10.916666666666666	11.213541666666666	311.1269837220809
+11.223958333333334	11.697916666666666	77.78174593052023
+11.390625	11.703125	184.9972113558172
+11.390625	11.703125	233.08188075904496
+11.390625	11.703125	311.1269837220809
+11.708333333333334	12.348958333333334	116.54094037952248
+12.03125	12.348958333333334	174.61411571650194
+12.03125	12.348958333333334	207.65234878997256
+12.03125	12.348958333333334	277.1826309768721
+12.359375	12.869791666666666	77.78174593052023
+12.5625	12.869791666666666	184.9972113558172
+12.5625	12.869791666666666	233.08188075904496
+12.5625	12.869791666666666	311.1269837220809
+12.875	13.348958333333334	77.78174593052023
+13.046875	13.348958333333334	184.9972113558172
+13.046875	13.348958333333334	233.08188075904496
+13.046875	13.348958333333334	311.1269837220809
+13.354166666666666	14.010416666666666	116.54094037952248
+13.677083333333334	14.010416666666666	174.61411571650194
+13.677083333333334	14.010416666666666	207.65234878997256
+13.677083333333334	14.010416666666666	277.1826309768721
+14.015625	14.53125	77.78174593052023
+14.213541666666666	14.53125	184.9972113558172
+14.213541666666666	14.53125	233.08188075904496
+14.213541666666666	14.53125	311.1269837220809
+14.536458333333334	15.010416666666666	77.78174593052023
+14.697916666666666	15.010416666666666	184.9972113558172
+14.697916666666666	15.010416666666666	233.08188075904496
+14.697916666666666	15.010416666666666	311.1269837220809
+15.020833333333334	15.682291666666666	116.54094037952248
+15.354166666666666	15.6875	174.61411571650194
+15.354166666666666	15.6875	207.65234878997256
+15.354166666666666	15.6875	277.1826309768721
+15.692708333333334	16.21875	77.78174593052023
+15.885416666666666	16.21875	184.9972113558172
+15.885416666666666	16.21875	233.08188075904496
+15.885416666666666	16.21875	311.1269837220809
+16.223958333333332	16.677083333333332	77.78174593052023
+16.380208333333332	16.682291666666668	184.9972113558172
+16.380208333333332	16.682291666666668	233.08188075904496
+16.380208333333332	16.682291666666668	311.1269837220809
+16.692708333333332	17.359375	116.54094037952248
+17.015625	17.359375	174.61411571650194
+17.015625	17.359375	207.65234878997256
+17.015625	17.359375	277.1826309768721
+17.364583333333332	17.869791666666668	77.78174593052023
+17.557291666666668	17.869791666666668	184.9972113558172
+17.557291666666668	17.869791666666668	233.08188075904496
+17.557291666666668	17.869791666666668	311.1269837220809
+17.875	18.34375	77.78174593052023
+18.046875	18.34375	184.9972113558172
+18.046875	18.34375	233.08188075904496
+18.046875	18.34375	311.1269837220809
+18.359375	19.03125	116.54094037952248
+18.697916666666668	19.03125	174.61411571650194
+18.697916666666668	19.03125	207.65234878997256
+18.697916666666668	19.03125	277.1826309768721
+19.041666666666668	19.541666666666668	77.78174593052023
+19.244791666666668	19.541666666666668	184.9972113558172
+19.244791666666668	19.541666666666668	233.08188075904496
+19.244791666666668	19.541666666666668	311.1269837220809
+19.546875	20.03125	77.78174593052023
+19.723958333333332	20.03125	184.9972113558172
+19.723958333333332	20.03125	233.08188075904496
+19.723958333333332	20.03125	311.1269837220809
+20.041666666666668	20.692708333333332	116.54094037952248
+20.364583333333332	20.692708333333332	174.61411571650194
+20.364583333333332	20.692708333333332	207.65234878997256
+20.364583333333332	20.692708333333332	277.1826309768721
+20.703125	21.197916666666668	77.78174593052023
+20.90625	21.203125	184.9972113558172
+20.90625	21.203125	233.08188075904496
+20.90625	21.203125	311.1269837220809
+21.208333333333332	21.692708333333332	77.78174593052023
+21.380208333333332	21.697916666666668	184.9972113558172
+21.380208333333332	21.697916666666668	233.08188075904496
+21.380208333333332	21.697916666666668	311.1269837220809
+21.703125	22.348958333333332	116.54094037952248
+22.026041666666668	22.348958333333332	174.61411571650194
+22.026041666666668	22.348958333333332	207.65234878997256
+22.026041666666668	22.348958333333332	277.1826309768721
+22.354166666666668	22.869791666666668	77.78174593052023
+22.557291666666668	22.869791666666668	184.9972113558172
+22.557291666666668	22.869791666666668	233.08188075904496
+22.557291666666668	22.869791666666668	311.1269837220809
+22.875	23.34375	77.78174593052023
+23.036458333333332	23.34375	184.9972113558172
+23.036458333333332	23.34375	233.08188075904496
+23.036458333333332	23.34375	311.1269837220809
+23.354166666666668	24.020833333333332	116.54094037952248
+23.6875	24.026041666666668	174.61411571650194
+23.6875	24.026041666666668	207.65234878997256
+23.6875	24.026041666666668	277.1826309768721
+24.03125	24.541666666666668	77.78174593052023
+24.229166666666668	24.541666666666668	184.9972113558172
+24.229166666666668	24.541666666666668	233.08188075904496
+24.229166666666668	24.541666666666668	311.1269837220809
+24.546875	25.026041666666668	77.78174593052023
+24.708333333333332	25.020833333333332	184.9972113558172
+24.708333333333332	25.020833333333332	233.08188075904496
+24.708333333333332	25.020833333333332	311.1269837220809
+25.03125	25.703125	116.54094037952248
+25.359375	25.708333333333332	174.61411571650194
+25.359375	25.708333333333332	207.65234878997256
+25.359375	25.708333333333332	277.1826309768721
+25.713541666666668	26.213541666666668	77.78174593052023
+25.901041666666668	26.213541666666668	184.9972113558172
+25.901041666666668	26.213541666666668	233.08188075904496
+25.901041666666668	26.213541666666668	311.1269837220809
+26.21875	26.677083333333332	77.78174593052023
+26.375	26.682291666666668	184.9972113558172
+26.375	26.682291666666668	233.08188075904496
+26.375	26.682291666666668	311.1269837220809
+26.6875	27.348958333333332	116.54094037952248
+27.010416666666668	27.354166666666668	174.61411571650194
+27.010416666666668	27.354166666666668	207.65234878997256
+27.010416666666668	27.354166666666668	277.1826309768721
+27.359375	27.864583333333332	123.47082531403103
+27.541666666666668	27.864583333333332	233.08188075904496
+27.541666666666668	27.864583333333332	311.1269837220809
+27.875	28.354166666666668	155.56349186104046
+28.020833333333332	28.354166666666668	233.08188075904496
+28.020833333333332	28.354166666666668	311.1269837220809
+28.364583333333332	29.010416666666668	174.61411571650194
+28.682291666666668	29.010416666666668	207.65234878997256
+28.682291666666668	29.010416666666668	311.1269837220809
+29.015625	29.515625	116.54094037952248
+29.223958333333332	29.515625	207.65234878997256
+29.223958333333332	29.515625	277.1826309768721
+29.526041666666668	30.005208333333332	138.59131548843604
+29.692708333333332	30.005208333333332	207.65234878997256
+29.692708333333332	30.005208333333332	277.1826309768721
+30.015625	30.677083333333332	155.56349186104046
+30.328125	30.677083333333332	184.9972113558172
+30.328125	30.677083333333332	277.1826309768721
+30.682291666666668	31.192708333333332	103.82617439498628
+30.875	31.192708333333332	184.9972113558172
+30.875	31.192708333333332	246.94165062806206
+31.203125	31.677083333333332	123.47082531403103
+31.364583333333332	31.677083333333332	184.9972113558172
+31.364583333333332	31.677083333333332	246.94165062806206
+31.692708333333332	32.338541666666664	138.59131548843604
+32.03125	32.338541666666664	174.61411571650194
+32.03125	32.338541666666664	246.94165062806206
+32.34375	32.848958333333336	92.4986056779086
+32.541666666666664	32.848958333333336	174.61411571650194
+32.541666666666664	32.848958333333336	233.08188075904496
+32.854166666666664	33.317708333333336	92.4986056779086
+33.010416666666664	33.317708333333336	174.61411571650194
+33.010416666666664	33.317708333333336	233.08188075904496
+33.333333333333336	34	116.54094037952248
+33.666666666666664	34	207.65234878997256
+33.666666666666664	34	293.6647679174076
+34.005208333333336	34.505208333333336	123.47082531403103
+34.197916666666664	34.505208333333336	233.08188075904496
+34.197916666666664	34.505208333333336	311.1269837220809
+34.515625	34.989583333333336	155.56349186104046
+34.661458333333336	34.989583333333336	233.08188075904496
+34.661458333333336	34.989583333333336	311.1269837220809
+35	35.666666666666664	174.61411571650194
+35.3125	35.666666666666664	207.65234878997256
+35.3125	35.666666666666664	311.1269837220809
+35.671875	36.171875	116.54094037952248
+35.864583333333336	36.171875	207.65234878997256
+35.864583333333336	36.171875	277.1826309768721
+36.177083333333336	36.666666666666664	138.59131548843604
+36.34375	36.666666666666664	207.65234878997256
+36.34375	36.666666666666664	277.1826309768721
+36.671875	37.354166666666664	155.56349186104046
+37	37.354166666666664	184.9972113558172
+37	37.354166666666664	277.1826309768721
+37.359375	37.864583333333336	103.82617439498628
+37.552083333333336	37.864583333333336	184.9972113558172
+37.552083333333336	37.864583333333336	246.94165062806206
+37.869791666666664	38.338541666666664	123.47082531403103
+38.041666666666664	38.338541666666664	184.9972113558172
+38.041666666666664	38.338541666666664	246.94165062806206
+38.34375	38.994791666666664	138.59131548843604
+38.671875	38.994791666666664	174.61411571650194
+38.671875	38.994791666666664	246.94165062806206
+39	39.520833333333336	92.4986056779086
+39.213541666666664	39.515625	174.61411571650194
+39.213541666666664	39.515625	233.08188075904496
+39.526041666666664	40	92.4986056779086
+39.677083333333336	40	174.61411571650194
+39.677083333333336	40	233.08188075904496
+40.005208333333336	40.6875	116.54094037952248
+40.338541666666664	40.6875	207.65234878997256
+40.338541666666664	40.6875	293.6647679174076
+40.692708333333336	41.239583333333336	77.78174593052023
Binary file testdata/TRIOS-groundtruth/take_five/piano.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/take_five/ride.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,151 @@
+0.671875	0.9916666666666667	246.94165062806206
+1	1.2125	246.94165062806206
+1.21875	1.325	246.94165062806206
+1.3333333333333333	1.64375	246.94165062806206
+1.653125	1.975	246.94165062806206
+1.9854166666666666	2.3333333333333335	246.94165062806206
+2.3427083333333334	2.6666666666666665	246.94165062806206
+2.6770833333333335	2.8666666666666667	246.94165062806206
+2.877083333333333	2.9895833333333335	246.94165062806206
+3.002083333333333	3.303125	246.94165062806206
+3.3125	3.5395833333333333	246.94165062806206
+3.546875	3.652083333333333	246.94165062806206
+3.659375	3.9739583333333335	246.94165062806206
+3.9833333333333334	4.296875	246.94165062806206
+4.310416666666667	4.552083333333333	246.94165062806206
+4.561458333333333	4.652083333333334	246.94165062806206
+4.659375	4.977083333333334	246.94165062806206
+4.983333333333333	5.308333333333334	246.94165062806206
+5.316666666666666	5.666666666666667	246.94165062806206
+5.673958333333333	6	246.94165062806206
+6.008333333333334	6.333333333333333	246.94165062806206
+6.340625	6.666666666666667	246.94165062806206
+6.673958333333333	6.89375	246.94165062806206
+6.904166666666667	6.995833333333334	246.94165062806206
+7.00625	7.325	246.94165062806206
+7.333333333333333	7.675	246.94165062806206
+7.685416666666667	8	246.94165062806206
+8.0125	8.329166666666667	246.94165062806206
+8.338541666666666	8.552083333333334	246.94165062806206
+8.561458333333333	8.666666666666666	246.94165062806206
+8.675	9.008333333333333	246.94165062806206
+9.01875	9.341666666666667	246.94165062806206
+9.351041666666667	9.570833333333333	246.94165062806206
+9.579166666666667	9.683333333333334	246.94165062806206
+9.695833333333333	10	246.94165062806206
+10.010416666666666	10.333333333333334	246.94165062806206
+10.342708333333333	10.666666666666666	246.94165062806206
+10.675	11.008333333333333	246.94165062806206
+11.016666666666667	11.23125	246.94165062806206
+11.242708333333333	11.344791666666667	246.94165062806206
+11.355208333333334	11.658333333333333	246.94165062806206
+11.666666666666666	11.879166666666666	246.94165062806206
+11.885416666666666	11.99375	246.94165062806206
+12	12.308333333333334	246.94165062806206
+12.317708333333334	12.639583333333333	246.94165062806206
+12.652083333333334	12.903125	246.94165062806206
+12.908333333333333	13.003125	246.94165062806206
+13.009375	13.330208333333333	246.94165062806206
+13.333333333333334	13.6625	246.94165062806206
+13.666666666666666	14.00625	246.94165062806206
+14.014583333333333	14.355208333333334	246.94165062806206
+14.364583333333334	14.545833333333333	246.94165062806206
+14.552083333333334	14.666666666666666	246.94165062806206
+14.670833333333333	14.995833333333334	246.94165062806206
+15	15.315625	246.94165062806206
+15.321875	15.670833333333333	246.94165062806206
+15.678125	15.989583333333334	246.94165062806206
+15.995833333333334	16.196875	246.94165062806206
+16.202083333333334	16.303125	246.94165062806206
+16.309375	16.625	246.94165062806206
+16.634375	16.8625	246.94165062806206
+16.869791666666668	16.978125	246.94165062806206
+16.985416666666666	17.303125	246.94165062806206
+17.309375	17.660416666666666	246.94165062806206
+17.666666666666668	17.84375	246.94165062806206
+17.855208333333334	17.958333333333332	246.94165062806206
+17.964583333333334	18.292708333333334	246.94165062806206
+18.302083333333332	18.619791666666668	246.94165062806206
+18.629166666666666	18.969791666666666	246.94165062806206
+18.978125	19.327083333333334	246.94165062806206
+19.333333333333332	19.647916666666667	246.94165062806206
+19.655208333333334	20	246.94165062806206
+20.009375	20.189583333333335	246.94165062806206
+20.196875	20.288541666666667	246.94165062806206
+20.29375	20.6625	246.94165062806206
+20.666666666666668	20.99375	246.94165062806206
+21	21.21875	246.94165062806206
+21.225	21.358333333333334	246.94165062806206
+21.365625	21.670833333333334	246.94165062806206
+21.676041666666666	21.986458333333335	246.94165062806206
+21.99375	22.3375	246.94165062806206
+22.34375	22.6625	246.94165062806206
+22.666666666666668	22.879166666666666	246.94165062806206
+22.885416666666668	22.978125	246.94165062806206
+22.983333333333334	23.333333333333332	246.94165062806206
+23.344791666666666	23.541666666666668	246.94165062806206
+23.547916666666666	23.646875	246.94165062806206
+23.652083333333334	23.99375	246.94165062806206
+24	24.326041666666665	246.94165062806206
+24.333333333333332	24.565625	246.94165062806206
+24.572916666666668	24.666666666666668	246.94165062806206
+24.672916666666666	25	246.94165062806206
+25.005208333333332	25.321875	246.94165062806206
+25.327083333333334	25.666666666666668	246.94165062806206
+25.672916666666666	26.008333333333333	246.94165062806206
+26.014583333333334	26.341666666666665	246.94165062806206
+26.348958333333332	26.652083333333334	246.94165062806206
+26.659375	26.8375	246.94165062806206
+26.84375	26.944791666666667	246.94165062806206
+26.951041666666665	27.307291666666668	246.94165062806206
+27.315625	27.678125	246.94165062806206
+27.684375	27.88125	246.94165062806206
+27.885416666666668	27.99375	246.94165062806206
+28	28.3375	246.94165062806206
+28.344791666666666	28.641666666666666	246.94165062806206
+28.652083333333334	28.992708333333333	246.94165062806206
+29	29.341666666666665	246.94165062806206
+29.346875	29.547916666666666	246.94165062806206
+29.552083333333332	29.672916666666666	246.94165062806206
+29.678125	29.99375	246.94165062806206
+30	30.229166666666668	246.94165062806206
+30.233333333333334	30.3375	246.94165062806206
+30.34375	30.675	246.94165062806206
+30.683333333333334	31.004166666666666	246.94165062806206
+31.010416666666668	31.211458333333333	246.94165062806206
+31.21875	31.303125	246.94165062806206
+31.309375	31.641666666666666	246.94165062806206
+31.648958333333333	32.00833333333333	246.94165062806206
+32.015625	32.333333333333336	246.94165062806206
+32.33958333333333	32.68020833333333	246.94165062806206
+32.6875	32.99375	246.94165062806206
+33	33.325	246.94165062806206
+33.328125	33.53854166666667	246.94165062806206
+33.545833333333334	33.64479166666667	246.94165062806206
+33.65	33.99270833333333	246.94165062806206
+34	34.34375	246.94165062806206
+34.35	34.577083333333334	246.94165062806206
+34.583333333333336	34.678125	246.94165062806206
+34.684375	35	246.94165062806206
+35.00729166666667	35.307291666666664	246.94165062806206
+35.313541666666666	35.641666666666666	246.94165062806206
+35.64791666666667	35.99375	246.94165062806206
+36	36.19375	246.94165062806206
+36.20104166666667	36.311458333333334	246.94165062806206
+36.317708333333336	36.63229166666667	246.94165062806206
+36.639583333333334	36.844791666666666	246.94165062806206
+36.85104166666667	36.953125	246.94165062806206
+36.96041666666667	37.31979166666667	246.94165062806206
+37.32604166666667	37.64375	246.94165062806206
+37.64791666666667	37.885416666666664	246.94165062806206
+37.891666666666666	38	246.94165062806206
+38.00625	38.32604166666667	246.94165062806206
+38.33229166666667	38.645833333333336	246.94165062806206
+38.651041666666664	38.97291666666667	246.94165062806206
+38.98020833333333	39.31458333333333	246.94165062806206
+39.321875	39.64791666666667	246.94165062806206
+39.65208333333333	40	246.94165062806206
+40.00625	40.204166666666666	246.94165062806206
+40.209375	40.297916666666666	246.94165062806206
+40.30416666666667	40.67395833333333	246.94165062806206
+40.68125	43.446875	246.94165062806206
Binary file testdata/TRIOS-groundtruth/take_five/ride.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/take_five/saxophone.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,105 @@
+13.348958333333334	13.583333333333334	233.08188075904496
+13.572916666666666	13.703125	311.1269837220809
+13.703125	13.895833333333334	369.9944227116344
+13.880208333333334	14.036458333333334	415.3046975799451
+14.026041666666666	14.25	440.0
+14.244791666666666	14.369791666666666	466.1637615180899
+14.359375	14.557291666666666	440.0
+14.546875	14.729166666666666	415.3046975799451
+14.713541666666666	14.921875	369.9944227116344
+15.005208333333334	15.375	233.08188075904496
+15.359375	15.651041666666666	277.1826309768721
+15.713541666666666	16.567708333333332	311.1269837220809
+16.661458333333332	16.78125	349.2282314330039
+16.755208333333332	16.859375	369.9944227116344
+16.854166666666668	16.973958333333332	311.1269837220809
+16.958333333333332	17.322916666666668	277.1826309768721
+17.3125	18.239583333333332	311.1269837220809
+18.369791666666668	18.473958333333332	277.1826309768721
+18.453125	18.515625	311.1269837220809
+18.5	18.630208333333332	277.1826309768721
+18.604166666666668	18.692708333333332	233.08188075904496
+18.677083333333332	19.015625	207.65234878997256
+19.005208333333332	19.953125	233.08188075904496
+20.072916666666668	20.276041666666668	233.08188075904496
+20.260416666666668	20.380208333333332	311.1269837220809
+20.390625	20.578125	369.9944227116344
+20.557291666666668	20.697916666666668	415.3046975799451
+20.6875	20.901041666666668	440.0
+20.885416666666668	21.046875	466.1637615180899
+21.020833333333332	21.234375	440.0
+21.21875	21.375	415.3046975799451
+21.359375	21.583333333333332	369.9944227116344
+21.697916666666668	22.083333333333332	233.08188075904496
+22.0625	22.328125	277.1826309768721
+22.390625	23.182291666666668	311.1269837220809
+23.359375	23.421875	277.1826309768721
+23.411458333333332	23.489583333333332	311.1269837220809
+23.479166666666668	23.59375	277.1826309768721
+23.567708333333332	23.671875	233.08188075904496
+23.645833333333332	23.953125	207.65234878997256
+24	24.885416666666668	233.08188075904496
+25	25.067708333333332	349.2282314330039
+25.052083333333332	25.161458333333332	369.9944227116344
+25.151041666666668	25.197916666666668	349.2282314330039
+25.197916666666668	25.296875	311.1269837220809
+25.286458333333332	25.640625	277.1826309768721
+25.630208333333332	26.760416666666668	311.1269837220809
+27.369791666666668	27.59375	622.2539674441618
+27.583333333333332	27.760416666666668	739.9888454232688
+27.895833333333332	28.057291666666668	622.2539674441618
+28.041666666666668	28.333333333333332	493.8833012561241
+28.348958333333332	28.578125	415.3046975799451
+28.5625	28.708333333333332	466.1637615180899
+28.692708333333332	28.885416666666668	493.8833012561241
+28.869791666666668	29.026041666666668	523.2511306011972
+29.010416666666668	29.229166666666668	554.3652619537442
+29.213541666666668	29.401041666666668	698.4564628660078
+29.505208333333332	29.697916666666668	554.3652619537442
+29.65625	29.963541666666668	466.1637615180899
+29.994791666666668	30.203125	369.9944227116344
+30.1875	30.348958333333332	415.3046975799451
+30.333333333333332	30.53125	440.0
+30.515625	30.677083333333332	466.1637615180899
+30.661458333333332	30.875	493.8833012561241
+30.864583333333332	31.052083333333332	622.2539674441618
+31.151041666666668	31.333333333333332	493.8833012561241
+31.307291666666668	31.635416666666668	415.3046975799451
+31.640625	31.880208333333332	349.2282314330039
+31.854166666666668	31.984375	369.9944227116344
+31.973958333333332	32.197916666666664	415.3046975799451
+32.182291666666664	32.333333333333336	440.0
+32.317708333333336	32.53125	466.1637615180899
+32.515625	32.666666666666664	440.0
+32.651041666666664	32.848958333333336	466.1637615180899
+32.838541666666664	33.015625	493.8833012561241
+32.994791666666664	33.213541666666664	554.3652619537442
+33.322916666666664	33.5625	554.3652619537442
+33.536458333333336	33.6875	523.2511306011972
+33.666666666666664	33.875	554.3652619537442
+33.859375	34.036458333333336	587.3295358348151
+34.026041666666664	34.208333333333336	622.2539674441618
+34.197916666666664	34.395833333333336	739.9888454232688
+34.541666666666664	34.677083333333336	622.2539674441618
+34.666666666666664	34.973958333333336	493.8833012561241
+35.005208333333336	35.234375	415.3046975799451
+35.223958333333336	35.359375	466.1637615180899
+35.34375	35.546875	493.8833012561241
+35.526041666666664	35.6875	523.2511306011972
+35.666666666666664	35.90625	554.3652619537442
+35.885416666666664	36.067708333333336	698.4564628660078
+36.208333333333336	36.390625	554.3652619537442
+36.359375	36.645833333333336	466.1637615180899
+36.6875	36.885416666666664	369.9944227116344
+36.875	37.026041666666664	415.3046975799451
+37.010416666666664	37.208333333333336	440.0
+37.192708333333336	37.369791666666664	466.1637615180899
+37.354166666666664	37.557291666666664	493.8833012561241
+37.546875	37.729166666666664	622.2539674441618
+37.848958333333336	38.036458333333336	493.8833012561241
+38.005208333333336	38.328125	415.3046975799451
+38.338541666666664	38.552083333333336	349.2282314330039
+38.536458333333336	38.677083333333336	415.3046975799451
+38.666666666666664	38.90625	554.3652619537442
+38.890625	39.03125	493.8833012561241
+39.020833333333336	40.197916666666664	466.1637615180899
Binary file testdata/TRIOS-groundtruth/take_five/saxophone.mid has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/TRIOS-groundtruth/take_five/snare.lab	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,103 @@
+1.1979166666666667	1.5104166666666667	73.41619197935188
+1.515625	1.6354166666666667	73.41619197935188
+1.640625	2.1614583333333335	73.41619197935188
+2.1666666666666665	2.2395833333333335	73.41619197935188
+2.2447916666666665	2.8489583333333335	73.41619197935188
+2.859375	3.1770833333333335	73.41619197935188
+3.1822916666666665	3.3229166666666665	73.41619197935188
+3.328125	3.8333333333333335	73.41619197935188
+3.8385416666666665	4.510416666666667	73.41619197935188
+4.515625	4.885416666666667	73.41619197935188
+4.890625	5.453125	73.41619197935188
+5.463541666666667	5.546875	73.41619197935188
+5.557291666666667	6.130208333333333	73.41619197935188
+6.135416666666667	6.479166666666667	73.41619197935188
+6.484375	6.630208333333333	73.41619197935188
+6.635416666666667	7.197916666666667	73.41619197935188
+7.203125	7.890625	73.41619197935188
+7.890625	8.177083333333334	73.41619197935188
+8.182291666666666	8.322916666666666	73.41619197935188
+8.328125	8.84375	73.41619197935188
+8.848958333333334	8.916666666666666	73.41619197935188
+8.921875	9.5	73.41619197935188
+9.510416666666666	9.833333333333334	73.41619197935188
+9.838541666666666	9.984375	73.41619197935188
+9.989583333333334	10.541666666666666	73.41619197935188
+10.546875	10.619791666666666	73.41619197935188
+10.625	11.161458333333334	73.41619197935188
+11.171875	11.484375	73.41619197935188
+11.489583333333334	11.630208333333334	73.41619197935188
+11.635416666666666	12.140625	73.41619197935188
+12.145833333333334	12.864583333333334	73.41619197935188
+12.869791666666666	13.192708333333334	73.41619197935188
+13.197916666666666	13.755208333333334	73.41619197935188
+13.755208333333334	13.833333333333334	73.41619197935188
+13.838541666666666	14.458333333333334	73.41619197935188
+14.463541666666666	14.770833333333334	73.41619197935188
+14.776041666666666	14.927083333333334	73.41619197935188
+14.9375	15.494791666666666	73.41619197935188
+15.5	15.578125	73.41619197935188
+15.583333333333334	16.182291666666668	73.41619197935188
+16.1875	16.510416666666668	73.41619197935188
+16.515625	16.645833333333332	73.41619197935188
+16.651041666666668	17.171875	73.41619197935188
+17.177083333333332	17.838541666666668	73.41619197935188
+17.84375	18.166666666666668	73.41619197935188
+18.171875	18.78125	73.41619197935188
+18.786458333333332	18.854166666666668	73.41619197935188
+18.859375	19.494791666666668	73.41619197935188
+19.505208333333332	19.807291666666668	73.41619197935188
+19.8125	19.958333333333332	73.41619197935188
+19.96875	20.546875	73.41619197935188
+20.552083333333332	21.213541666666668	73.41619197935188
+21.21875	21.505208333333332	73.41619197935188
+21.510416666666668	21.65625	73.41619197935188
+21.661458333333332	22.166666666666668	73.41619197935188
+22.171875	22.25	73.41619197935188
+22.255208333333332	22.869791666666668	73.41619197935188
+22.869791666666668	23.166666666666668	73.41619197935188
+23.171875	23.322916666666668	73.41619197935188
+23.328125	23.869791666666668	73.41619197935188
+23.875	24.520833333333332	73.41619197935188
+24.53125	24.880208333333332	73.41619197935188
+24.890625	25.432291666666668	73.41619197935188
+25.4375	25.520833333333332	73.41619197935188
+25.526041666666668	26.125	73.41619197935188
+26.125	26.453125	73.41619197935188
+26.458333333333332	26.609375	73.41619197935188
+26.619791666666668	27.177083333333332	73.41619197935188
+27.182291666666668	27.838541666666668	73.41619197935188
+27.84375	28.145833333333332	73.41619197935188
+28.15625	28.307291666666668	73.41619197935188
+28.3125	28.828125	73.41619197935188
+28.833333333333332	28.916666666666668	73.41619197935188
+28.921875	29.520833333333332	73.41619197935188
+29.53125	29.848958333333332	73.41619197935188
+29.854166666666668	30	73.41619197935188
+30.005208333333332	30.520833333333332	73.41619197935188
+30.526041666666668	31.182291666666668	73.41619197935188
+31.1875	31.536458333333332	73.41619197935188
+31.541666666666668	32.119791666666664	73.41619197935188
+32.125	32.197916666666664	73.41619197935188
+32.203125	32.848958333333336	73.41619197935188
+32.854166666666664	33.166666666666664	73.41619197935188
+33.171875	33.328125	73.41619197935188
+33.333333333333336	33.854166666666664	73.41619197935188
+33.859375	34.494791666666664	73.41619197935188
+34.505208333333336	34.8125	73.41619197935188
+34.822916666666664	34.942708333333336	73.41619197935188
+34.947916666666664	35.46875	73.41619197935188
+35.473958333333336	35.541666666666664	73.41619197935188
+35.546875	36.161458333333336	73.41619197935188
+36.166666666666664	36.484375	73.41619197935188
+36.489583333333336	36.625	73.41619197935188
+36.635416666666664	37.135416666666664	73.41619197935188
+37.140625	37.822916666666664	73.41619197935188
+37.828125	38.192708333333336	73.41619197935188
+38.197916666666664	38.765625	73.41619197935188
+38.770833333333336	38.854166666666664	73.41619197935188
+38.859375	39.4375	73.41619197935188
+39.447916666666664	39.786458333333336	73.41619197935188
+39.791666666666664	39.9375	73.41619197935188
+39.947916666666664	40.510416666666664	73.41619197935188
+40.515625	41.505208333333336	73.41619197935188
Binary file testdata/TRIOS-groundtruth/take_five/snare.mid has changed
--- a/testdata/evaluation/README	Thu May 29 15:18:14 2014 +0100
+++ b/testdata/evaluation/README	Wed Jun 04 11:46:01 2014 +0100
@@ -1,9 +1,14 @@
 
-batchProcessingEvaluate.m evaluates a set of .lab output files against
-MIDI "ground truth".
+ * run.sh is our basic Silvet evaluation script. It runs Silvet
+against single- and multiple-instrument files from the TRIOS dataset
+using the theoretically best settings for each file, and then
+evaluates the results against the ground truth and MIREX 2012
+submission.
 
-The MIDI files can be found in ../TRIOS-groundtruth, and some examples
-of the .lab files in ../TRIOS-mirex2012-matlab and ../TRIOS-silvet.
+ * batchProcessingEvaluate.m evaluates a set of .lab output files
+against MIDI.  The MIDI can be found in ../TRIOS-groundtruth, and some
+example .lab files in ../TRIOS-mirex2012-matlab and ../TRIOS-silvet.
 
-evaluate_lab.yeti evaluates one lab file against another, onsets only,
-to a given timing tolerance.
+ * evaluate_lab.yeti evaluates one lab file against another, onsets
+only, to a given timing tolerance.
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/evaluation/outputs/72a9696f7caa-no-instrument-parameter.txt	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,423 @@
+Yeti 0.9.9+
+1.0
+
+Input files are:
+/home/cannam/Music/TRIOS_dataset/mozart/piano.wav
+/home/cannam/Music/TRIOS_dataset/mozart/viola.wav
+/home/cannam/Music/TRIOS_dataset/mozart/mix.wav
+/home/cannam/Music/TRIOS_dataset/mozart/clarinet.wav
+/home/cannam/Music/TRIOS_dataset/lussier/piano.wav
+/home/cannam/Music/TRIOS_dataset/lussier/mix.wav
+/home/cannam/Music/TRIOS_dataset/lussier/bassoon.wav
+/home/cannam/Music/TRIOS_dataset/lussier/trumpet.wav
+/home/cannam/Music/TRIOS_dataset/take_five/piano.wav
+/home/cannam/Music/TRIOS_dataset/take_five/mix.wav
+/home/cannam/Music/TRIOS_dataset/take_five/saxophone.wav
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/mozart/piano.wav...
+
+For piece mozart, arrangement piano, using instrument 1...
+force -> 
+one-file -> /tmp/30755
+Have audio source: "/tmp/30755norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/30755norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+NOTE: Using default sample rate of 44100 for default transform
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:notes" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/30755norm.wav"
+Audio file "/tmp/30755norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 1%
Extracting and writing features... 2%
Extracting and writing features... 3%
Extracting and writing features... 4%
Extracting and writing features... 5%
Extracting and writing features... 6%
Extracting and writing features... 7%
Extracting and writing features... 8%
Extracting and writing features... 10%
Extracting and writing features... 11%
Extracting and writing features... 12%
Extracting and writing features... 13%
Extracting and writing features... 14%
Extracting and writing features... 15%
Extracting and writing features... 16%
Extracting and writing features... 17%
Extracting and writing features... 18%
Extracting and writing features... 20%
Extracting and writing features... 21%
Extracting and writing features... 22%
Extracting and writing features... 23%
Extracting and writing features... 24%
Extracting and writing features... 25%
Extracting and writing features... 26%
Extracting and writing features... 27%
Extracting and writing features... 28%
Extracting and writing features... 30%
Extracting and writing features... 31%
Extracting and writing features... 32%
Extracting and writing features... 33%
Extracting and writing features... 34%
Extracting and writing features... 35%
Extracting and writing features... 36%
Extracting and writing features... 37%
Extracting and writing features... 38%
Extracting and writing features... 40%
Extracting and writing features... 41%
Extracting and writing features... 42%
Extracting and writing features... 43%
Extracting and writing features... 44%
Extracting and writing features... 45%
Extracting and writing features... 46%
Extracting and writing features... 47%
Extracting and writing features... 48%
Extracting and writing features... 50%
Extracting and writing features... 51%
Extracting and writing features... 52%
Extracting and writing features... 53%
Extracting and writing features... 54%
Extracting and writing features... 55%
Extracting and writing features... 56%
Extracting and writing features... 57%
Extracting and writing features... 58%
Extracting and writing features... 59%
Extracting and writing features... 61%
Extracting and writing features... 62%
Extracting and writing features... 63%
Extracting and writing features... 64%
Extracting and writing features... 65%
Extracting and writing features... 66%
Extracting and writing features... 67%
Extracting and writing features... 68%
Extracting and writing features... 69%
Extracting and writing features... 71%
Extracting and writing features... 72%
Extracting and writing features... 73%
Extracting and writing features... 74%
Extracting and writing features... 75%
Extracting and writing features... 76%
Extracting and writing features... 77%
Extracting and writing features... 78%
Extracting and writing features... 79%
Extracting and writing features... 81%
Extracting and writing features... 82%
Extracting and writing features... 83%
Extracting and writing features... 84%
Extracting and writing features... 85%
Extracting and writing features... 86%
Extracting and writing features... 87%
Extracting and writing features... 88%
Extracting and writing features... 89%
Extracting and writing features... 91%
Extracting and writing features... 92%
Extracting and writing features... 93%
Extracting and writing features... 94%
Extracting and writing features... 95%
Extracting and writing features... 96%
Extracting and writing features... 97%
Extracting and writing features... 98%
Extracting and writing features... 99%
Extracting and writing features... Done
+
+
+Validating against ground truth at 50 ms:
+precision 65.6, recall 71.9, accuracy 52.2, F 68.6  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 69.3, recall 66.4, accuracy 51.3, F 67.8
+
+Validating MIREX against ground truth at 50 ms:
+precision 56.2, recall 64.3, accuracy 42.9, F 60
+
+Validating against ground truth at 100 ms:
+precision 76.8, recall 84.2, accuracy 67.2, F 80.3
+
+Validating against MIREX submission at 100 ms:
+precision 86.8, recall 83.2, accuracy 73.9, F 85
+
+Validating MIREX against ground truth at 100 ms:
+precision 69.4, recall 79.4, accuracy 58.8, F 74.1
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/mozart/viola.wav...
+
+For piece mozart, arrangement viola, using instrument 0...
+force -> 
+one-file -> /tmp/30755
+Have audio source: "/tmp/30755norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/30755norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+NOTE: Using default sample rate of 44100 for default transform
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:notes" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/30755norm.wav"
+Audio file "/tmp/30755norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 1%
Extracting and writing features... 2%
Extracting and writing features... 3%
Extracting and writing features... 4%
Extracting and writing features... 5%
Extracting and writing features... 6%
Extracting and writing features... 7%
Extracting and writing features... 8%
Extracting and writing features... 10%
Extracting and writing features... 11%
Extracting and writing features... 12%
Extracting and writing features... 13%
Extracting and writing features... 14%
Extracting and writing features... 15%
Extracting and writing features... 16%
Extracting and writing features... 17%
Extracting and writing features... 18%
Extracting and writing features... 20%
Extracting and writing features... 21%
Extracting and writing features... 22%
Extracting and writing features... 23%
Extracting and writing features... 24%
Extracting and writing features... 25%
Extracting and writing features... 26%
Extracting and writing features... 27%
Extracting and writing features... 28%
Extracting and writing features... 30%
Extracting and writing features... 31%
Extracting and writing features... 32%
Extracting and writing features... 33%
Extracting and writing features... 34%
Extracting and writing features... 35%
Extracting and writing features... 36%
Extracting and writing features... 37%
Extracting and writing features... 38%
Extracting and writing features... 40%
Extracting and writing features... 41%
Extracting and writing features... 42%
Extracting and writing features... 43%
Extracting and writing features... 44%
Extracting and writing features... 45%
Extracting and writing features... 46%
Extracting and writing features... 47%
Extracting and writing features... 48%
Extracting and writing features... 50%
Extracting and writing features... 51%
Extracting and writing features... 52%
Extracting and writing features... 53%
Extracting and writing features... 54%
Extracting and writing features... 55%
Extracting and writing features... 56%
Extracting and writing features... 57%
Extracting and writing features... 58%
Extracting and writing features... 59%
Extracting and writing features... 61%
Extracting and writing features... 62%
Extracting and writing features... 63%
Extracting and writing features... 64%
Extracting and writing features... 65%
Extracting and writing features... 66%
Extracting and writing features... 67%
Extracting and writing features... 68%
Extracting and writing features... 69%
Extracting and writing features... 71%
Extracting and writing features... 72%
Extracting and writing features... 73%
Extracting and writing features... 74%
Extracting and writing features... 75%
Extracting and writing features... 76%
Extracting and writing features... 77%
Extracting and writing features... 78%
Extracting and writing features... 79%
Extracting and writing features... 81%
Extracting and writing features... 82%
Extracting and writing features... 83%
Extracting and writing features... 84%
Extracting and writing features... 85%
Extracting and writing features... 86%
Extracting and writing features... 87%
Extracting and writing features... 88%
Extracting and writing features... 89%
Extracting and writing features... 91%
Extracting and writing features... 92%
Extracting and writing features... 93%
Extracting and writing features... 94%
Extracting and writing features... 95%
Extracting and writing features... 96%
Extracting and writing features... 97%
Extracting and writing features... 98%
Extracting and writing features... 99%
Extracting and writing features... Done
+
+
+Validating against ground truth at 50 ms:
+precision 29, recall 78.1, accuracy 26.8, F 42.3  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 48.8, recall 33.8, accuracy 25, F 40
+
+Validating MIREX against ground truth at 50 ms:
+precision 20.9, recall 81.2, accuracy 20, F 33.3
+
+Validating against ground truth at 100 ms:
+precision 29, recall 78.1, accuracy 26.8, F 42.3
+
+Validating against MIREX submission at 100 ms:
+precision 67.4, recall 46.7, accuracy 38.1, F 55.2
+
+Validating MIREX against ground truth at 100 ms:
+precision 22.5, recall 87.5, accuracy 21.8, F 35.8
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/mozart/mix.wav...
+
+For piece mozart, arrangement mix, using instrument 0...
+force -> 
+one-file -> /tmp/30755
+Have audio source: "/tmp/30755norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/30755norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+NOTE: Using default sample rate of 44100 for default transform
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:notes" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/30755norm.wav"
+Audio file "/tmp/30755norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 1%
Extracting and writing features... 2%
Extracting and writing features... 3%
Extracting and writing features... 4%
Extracting and writing features... 5%
Extracting and writing features... 6%
Extracting and writing features... 7%
Extracting and writing features... 8%
Extracting and writing features... 10%
Extracting and writing features... 11%
Extracting and writing features... 12%
Extracting and writing features... 13%
Extracting and writing features... 14%
Extracting and writing features... 15%
Extracting and writing features... 16%
Extracting and writing features... 17%
Extracting and writing features... 18%
Extracting and writing features... 20%
Extracting and writing features... 21%
Extracting and writing features... 22%
Extracting and writing features... 23%
Extracting and writing features... 24%
Extracting and writing features... 25%
Extracting and writing features... 26%
Extracting and writing features... 27%
Extracting and writing features... 28%
Extracting and writing features... 30%
Extracting and writing features... 31%
Extracting and writing features... 32%
Extracting and writing features... 33%
Extracting and writing features... 34%
Extracting and writing features... 35%
Extracting and writing features... 36%
Extracting and writing features... 37%
Extracting and writing features... 38%
Extracting and writing features... 40%
Extracting and writing features... 41%
Extracting and writing features... 42%
Extracting and writing features... 43%
Extracting and writing features... 44%
Extracting and writing features... 45%
Extracting and writing features... 46%
Extracting and writing features... 47%
Extracting and writing features... 48%
Extracting and writing features... 50%
Extracting and writing features... 51%
Extracting and writing features... 52%
Extracting and writing features... 53%
Extracting and writing features... 54%
Extracting and writing features... 55%
Extracting and writing features... 56%
Extracting and writing features... 57%
Extracting and writing features... 58%
Extracting and writing features... 59%
Extracting and writing features... 61%
Extracting and writing features... 62%
Extracting and writing features... 63%
Extracting and writing features... 64%
Extracting and writing features... 65%
Extracting and writing features... 66%
Extracting and writing features... 67%
Extracting and writing features... 68%
Extracting and writing features... 69%
Extracting and writing features... 71%
Extracting and writing features... 72%
Extracting and writing features... 73%
Extracting and writing features... 74%
Extracting and writing features... 75%
Extracting and writing features... 76%
Extracting and writing features... 77%
Extracting and writing features... 78%
Extracting and writing features... 79%
Extracting and writing features... 81%
Extracting and writing features... 82%
Extracting and writing features... 83%
Extracting and writing features... 84%
Extracting and writing features... 85%
Extracting and writing features... 86%
Extracting and writing features... 87%
Extracting and writing features... 88%
Extracting and writing features... 89%
Extracting and writing features... 91%
Extracting and writing features... 92%
Extracting and writing features... 93%
Extracting and writing features... 94%
Extracting and writing features... 95%
Extracting and writing features... 96%
Extracting and writing features... 97%
Extracting and writing features... 98%
Extracting and writing features... 99%
Extracting and writing features... Done
+
+
+Validating against ground truth at 50 ms:
+precision 58.8, recall 59.5, accuracy 42, F 59.1  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 61.6, recall 61.6, accuracy 44.5, F 61.6
+
+Validating MIREX against ground truth at 50 ms:
+precision 50.4, recall 51, accuracy 33.9, F 50.7
+
+Validating against ground truth at 100 ms:
+precision 70, recall 70.8, accuracy 54.3, F 70.4
+
+Validating against MIREX submission at 100 ms:
+precision 79.6, recall 79.6, accuracy 66.1, F 79.6
+
+Validating MIREX against ground truth at 100 ms:
+precision 67.2, recall 68, accuracy 51, F 67.6
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/mozart/clarinet.wav...
+
+For piece mozart, arrangement clarinet, using instrument 8...
+force -> 
+one-file -> /tmp/30755
+Have audio source: "/tmp/30755norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/30755norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+NOTE: Using default sample rate of 44100 for default transform
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:notes" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/30755norm.wav"
+Audio file "/tmp/30755norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 1%
Extracting and writing features... 2%
Extracting and writing features... 3%
Extracting and writing features... 4%
Extracting and writing features... 5%
Extracting and writing features... 6%
Extracting and writing features... 7%
Extracting and writing features... 8%
Extracting and writing features... 10%
Extracting and writing features... 11%
Extracting and writing features... 12%
Extracting and writing features... 13%
Extracting and writing features... 14%
Extracting and writing features... 15%
Extracting and writing features... 16%
Extracting and writing features... 17%
Extracting and writing features... 18%
Extracting and writing features... 20%
Extracting and writing features... 21%
Extracting and writing features... 22%
Extracting and writing features... 23%
Extracting and writing features... 24%
Extracting and writing features... 25%
Extracting and writing features... 26%
Extracting and writing features... 27%
Extracting and writing features... 28%
Extracting and writing features... 30%
Extracting and writing features... 31%
Extracting and writing features... 32%
Extracting and writing features... 33%
Extracting and writing features... 34%
Extracting and writing features... 35%
Extracting and writing features... 36%
Extracting and writing features... 37%
Extracting and writing features... 38%
Extracting and writing features... 40%
Extracting and writing features... 41%
Extracting and writing features... 42%
Extracting and writing features... 43%
Extracting and writing features... 44%
Extracting and writing features... 45%
Extracting and writing features... 46%
Extracting and writing features... 47%
Extracting and writing features... 48%
Extracting and writing features... 50%
Extracting and writing features... 51%
Extracting and writing features... 52%
Extracting and writing features... 53%
Extracting and writing features... 54%
Extracting and writing features... 55%
Extracting and writing features... 56%
Extracting and writing features... 57%
Extracting and writing features... 58%
Extracting and writing features... 59%
Extracting and writing features... 61%
Extracting and writing features... 62%
Extracting and writing features... 63%
Extracting and writing features... 64%
Extracting and writing features... 65%
Extracting and writing features... 66%
Extracting and writing features... 67%
Extracting and writing features... 68%
Extracting and writing features... 69%
Extracting and writing features... 71%
Extracting and writing features... 72%
Extracting and writing features... 73%
Extracting and writing features... 74%
Extracting and writing features... 75%
Extracting and writing features... 76%
Extracting and writing features... 77%
Extracting and writing features... 78%
Extracting and writing features... 79%
Extracting and writing features... 81%
Extracting and writing features... 82%
Extracting and writing features... 83%
Extracting and writing features... 84%
Extracting and writing features... 85%
Extracting and writing features... 86%
Extracting and writing features... 87%
Extracting and writing features... 88%
Extracting and writing features... 89%
Extracting and writing features... 91%
Extracting and writing features... 92%
Extracting and writing features... 93%
Extracting and writing features... 94%
Extracting and writing features... 95%
Extracting and writing features... 96%
Extracting and writing features... 97%
Extracting and writing features... 98%
Extracting and writing features... 99%
Extracting and writing features... Done
+
+
+Validating against ground truth at 50 ms:
+precision 92.8, recall 75.3, accuracy 71.2, F 83.2  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 91, recall 70.8, accuracy 66.2, F 79.6
+
+Validating MIREX against ground truth at 50 ms:
+precision 72.2, recall 75.3, accuracy 58.4, F 73.7
+
+Validating against ground truth at 100 ms:
+precision 94.6, recall 76.8, accuracy 73.6, F 84.8
+
+Validating against MIREX submission at 100 ms:
+precision 96.4, recall 75, accuracy 72.9, F 84.3
+
+Validating MIREX against ground truth at 100 ms:
+precision 75, recall 78.2, accuracy 62, F 76.5
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/lussier/piano.wav...
+
+For piece lussier, arrangement piano, using instrument 1...
+force -> 
+one-file -> /tmp/30755
+Have audio source: "/tmp/30755norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/30755norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+NOTE: Using default sample rate of 44100 for default transform
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:notes" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/30755norm.wav"
+Audio file "/tmp/30755norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 2%
Extracting and writing features... 4%
Extracting and writing features... 6%
Extracting and writing features... 8%
Extracting and writing features... 10%
Extracting and writing features... 12%
Extracting and writing features... 14%
Extracting and writing features... 16%
Extracting and writing features... 18%
Extracting and writing features... 20%
Extracting and writing features... 22%
Extracting and writing features... 24%
Extracting and writing features... 26%
Extracting and writing features... 28%
Extracting and writing features... 31%
Extracting and writing features... 33%
Extracting and writing features... 35%
Extracting and writing features... 37%
Extracting and writing features... 39%
Extracting and writing features... 41%
Extracting and writing features... 43%
Extracting and writing features... 45%
Extracting and writing features... 47%
Extracting and writing features... 49%
Extracting and writing features... 51%
Extracting and writing features... 53%
Extracting and writing features... 55%
Extracting and writing features... 57%
Extracting and writing features... 59%
Extracting and writing features... 62%
Extracting and writing features... 64%
Extracting and writing features... 66%
Extracting and writing features... 68%
Extracting and writing features... 70%
Extracting and writing features... 72%
Extracting and writing features... 74%
Extracting and writing features... 76%
Extracting and writing features... 78%
Extracting and writing features... 80%
Extracting and writing features... 82%
Extracting and writing features... 84%
Extracting and writing features... 86%
Extracting and writing features... 88%
Extracting and writing features... 90%
Extracting and writing features... 92%
Extracting and writing features... 95%
Extracting and writing features... 97%
Extracting and writing features... 99%
Extracting and writing features... Done
+
+
+Validating against ground truth at 50 ms:
+precision 56.1, recall 49.5, accuracy 35.7, F 52.6  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 54.2, recall 47.8, accuracy 34.1, F 50.8
+
+Validating MIREX against ground truth at 50 ms:
+precision 45.3, recall 45.3, accuracy 29.3, F 45.3
+
+Validating against ground truth at 100 ms:
+precision 68.5, recall 60.5, accuracy 47.3, F 64.2
+
+Validating against MIREX submission at 100 ms:
+precision 79, recall 69.7, accuracy 58.8, F 74.1
+
+Validating MIREX against ground truth at 100 ms:
+precision 62.1, recall 62.1, accuracy 45.1, F 62.1
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/lussier/mix.wav...
+
+For piece lussier, arrangement mix, using instrument 0...
+force -> 
+one-file -> /tmp/30755
+Have audio source: "/tmp/30755norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/30755norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+NOTE: Using default sample rate of 44100 for default transform
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:notes" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/30755norm.wav"
+Audio file "/tmp/30755norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 2%
Extracting and writing features... 4%
Extracting and writing features... 6%
Extracting and writing features... 8%
Extracting and writing features... 10%
Extracting and writing features... 12%
Extracting and writing features... 14%
Extracting and writing features... 16%
Extracting and writing features... 18%
Extracting and writing features... 20%
Extracting and writing features... 22%
Extracting and writing features... 24%
Extracting and writing features... 26%
Extracting and writing features... 28%
Extracting and writing features... 31%
Extracting and writing features... 33%
Extracting and writing features... 35%
Extracting and writing features... 37%
Extracting and writing features... 39%
Extracting and writing features... 41%
Extracting and writing features... 43%
Extracting and writing features... 45%
Extracting and writing features... 47%
Extracting and writing features... 49%
Extracting and writing features... 51%
Extracting and writing features... 53%
Extracting and writing features... 55%
Extracting and writing features... 57%
Extracting and writing features... 59%
Extracting and writing features... 62%
Extracting and writing features... 64%
Extracting and writing features... 66%
Extracting and writing features... 68%
Extracting and writing features... 70%
Extracting and writing features... 72%
Extracting and writing features... 74%
Extracting and writing features... 76%
Extracting and writing features... 78%
Extracting and writing features... 80%
Extracting and writing features... 82%
Extracting and writing features... 84%
Extracting and writing features... 86%
Extracting and writing features... 88%
Extracting and writing features... 90%
Extracting and writing features... 92%
Extracting and writing features... 95%
Extracting and writing features... 97%
Extracting and writing features... 99%
Extracting and writing features... Done
+
+
+Validating against ground truth at 50 ms:
+precision 50, recall 37.5, accuracy 27.2, F 42.8  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 48, recall 46, accuracy 30.7, F 47
+
+Validating MIREX against ground truth at 50 ms:
+precision 40.4, recall 31.7, accuracy 21.6, F 35.5
+
+Validating against ground truth at 100 ms:
+precision 56.4, recall 42.3, accuracy 31.8, F 48.3
+
+Validating against MIREX submission at 100 ms:
+precision 73, recall 69.9, accuracy 55.6, F 71.4
+
+Validating MIREX against ground truth at 100 ms:
+precision 57.6, recall 45.1, accuracy 33.9, F 50.6
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/lussier/bassoon.wav...
+
+For piece lussier, arrangement bassoon, using instrument 10...
+force -> 
+one-file -> /tmp/30755
+Have audio source: "/tmp/30755norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/30755norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+NOTE: Using default sample rate of 44100 for default transform
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:notes" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/30755norm.wav"
+Audio file "/tmp/30755norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 2%
Extracting and writing features... 4%
Extracting and writing features... 6%
Extracting and writing features... 8%
Extracting and writing features... 10%
Extracting and writing features... 12%
Extracting and writing features... 14%
Extracting and writing features... 16%
Extracting and writing features... 18%
Extracting and writing features... 20%
Extracting and writing features... 22%
Extracting and writing features... 24%
Extracting and writing features... 26%
Extracting and writing features... 28%
Extracting and writing features... 31%
Extracting and writing features... 33%
Extracting and writing features... 35%
Extracting and writing features... 37%
Extracting and writing features... 39%
Extracting and writing features... 41%
Extracting and writing features... 43%
Extracting and writing features... 45%
Extracting and writing features... 47%
Extracting and writing features... 49%
Extracting and writing features... 51%
Extracting and writing features... 53%
Extracting and writing features... 55%
Extracting and writing features... 57%
Extracting and writing features... 59%
Extracting and writing features... 62%
Extracting and writing features... 64%
Extracting and writing features... 66%
Extracting and writing features... 68%
Extracting and writing features... 70%
Extracting and writing features... 72%
Extracting and writing features... 74%
Extracting and writing features... 76%
Extracting and writing features... 78%
Extracting and writing features... 80%
Extracting and writing features... 82%
Extracting and writing features... 84%
Extracting and writing features... 86%
Extracting and writing features... 88%
Extracting and writing features... 90%
Extracting and writing features... 92%
Extracting and writing features... 95%
Extracting and writing features... 97%
Extracting and writing features... 99%
Extracting and writing features... Done
+
+
+Validating against ground truth at 50 ms:
+precision 39.6, recall 76.9, accuracy 35.4, F 52.3  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 65.8, recall 59.2, accuracy 45.3, F 62.4
+
+Validating MIREX against ground truth at 50 ms:
+precision 31.4, recall 67.6, accuracy 27.3, F 42.9
+
+Validating against ground truth at 100 ms:
+precision 40.4, recall 78.4, accuracy 36.4, F 53.4
+
+Validating against MIREX submission at 100 ms:
+precision 81.7, recall 73.5, accuracy 63.1, F 77.4
+
+Validating MIREX against ground truth at 100 ms:
+precision 37.1, recall 80, accuracy 33.9, F 50.7
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/lussier/trumpet.wav...
+
+For piece lussier, arrangement trumpet, using instrument 0...
+force -> 
+one-file -> /tmp/30755
+Have audio source: "/tmp/30755norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/30755norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+NOTE: Using default sample rate of 44100 for default transform
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:notes" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/30755norm.wav"
+Audio file "/tmp/30755norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 2%
Extracting and writing features... 4%
Extracting and writing features... 6%
Extracting and writing features... 8%
Extracting and writing features... 10%
Extracting and writing features... 12%
Extracting and writing features... 14%
Extracting and writing features... 16%
Extracting and writing features... 18%
Extracting and writing features... 20%
Extracting and writing features... 22%
Extracting and writing features... 24%
Extracting and writing features... 26%
Extracting and writing features... 28%
Extracting and writing features... 31%
Extracting and writing features... 33%
Extracting and writing features... 35%
Extracting and writing features... 37%
Extracting and writing features... 39%
Extracting and writing features... 41%
Extracting and writing features... 43%
Extracting and writing features... 45%
Extracting and writing features... 47%
Extracting and writing features... 49%
Extracting and writing features... 51%
Extracting and writing features... 53%
Extracting and writing features... 55%
Extracting and writing features... 57%
Extracting and writing features... 59%
Extracting and writing features... 62%
Extracting and writing features... 64%
Extracting and writing features... 66%
Extracting and writing features... 68%
Extracting and writing features... 70%
Extracting and writing features... 72%
Extracting and writing features... 74%
Extracting and writing features... 76%
Extracting and writing features... 78%
Extracting and writing features... 80%
Extracting and writing features... 82%
Extracting and writing features... 84%
Extracting and writing features... 86%
Extracting and writing features... 88%
Extracting and writing features... 90%
Extracting and writing features... 92%
Extracting and writing features... 95%
Extracting and writing features... 97%
Extracting and writing features... 99%
Extracting and writing features... Done
+
+
+Validating against ground truth at 50 ms:
+precision 32.3, recall 91.6, accuracy 31.4, F 47.8  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 54.4, recall 53.6, accuracy 37, F 54
+
+Validating MIREX against ground truth at 50 ms:
+precision 28.9, recall 83.3, accuracy 27.3, F 43
+
+Validating against ground truth at 100 ms:
+precision 32.3, recall 91.6, accuracy 31.4, F 47.8
+
+Validating against MIREX submission at 100 ms:
+precision 72, recall 71, accuracy 55.6, F 71.5
+
+Validating MIREX against ground truth at 100 ms:
+precision 31.8, recall 91.6, accuracy 30.9, F 47.3
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/take_five/piano.wav...
+
+For piece take_five, arrangement piano, using instrument 1...
+force -> 
+one-file -> /tmp/30755
+Have audio source: "/tmp/30755norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/30755norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+NOTE: Using default sample rate of 44100 for default transform
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:notes" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/30755norm.wav"
+Audio file "/tmp/30755norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 1%
Extracting and writing features... 2%
Extracting and writing features... 3%
Extracting and writing features... 4%
Extracting and writing features... 5%
Extracting and writing features... 6%
Extracting and writing features... 7%
Extracting and writing features... 8%
Extracting and writing features... 9%
Extracting and writing features... 10%
Extracting and writing features... 11%
Extracting and writing features... 12%
Extracting and writing features... 13%
Extracting and writing features... 14%
Extracting and writing features... 15%
Extracting and writing features... 16%
Extracting and writing features... 17%
Extracting and writing features... 18%
Extracting and writing features... 19%
Extracting and writing features... 20%
Extracting and writing features... 21%
Extracting and writing features... 22%
Extracting and writing features... 23%
Extracting and writing features... 24%
Extracting and writing features... 25%
Extracting and writing features... 26%
Extracting and writing features... 27%
Extracting and writing features... 28%
Extracting and writing features... 29%
Extracting and writing features... 30%
Extracting and writing features... 31%
Extracting and writing features... 32%
Extracting and writing features... 33%
Extracting and writing features... 34%
Extracting and writing features... 35%
Extracting and writing features... 36%
Extracting and writing features... 37%
Extracting and writing features... 38%
Extracting and writing features... 39%
Extracting and writing features... 40%
Extracting and writing features... 41%
Extracting and writing features... 42%
Extracting and writing features... 43%
Extracting and writing features... 44%
Extracting and writing features... 45%
Extracting and writing features... 46%
Extracting and writing features... 47%
Extracting and writing features... 48%
Extracting and writing features... 49%
Extracting and writing features... 50%
Extracting and writing features... 51%
Extracting and writing features... 52%
Extracting and writing features... 53%
Extracting and writing features... 54%
Extracting and writing features... 55%
Extracting and writing features... 56%
Extracting and writing features... 57%
Extracting and writing features... 58%
Extracting and writing features... 59%
Extracting and writing features... 60%
Extracting and writing features... 61%
Extracting and writing features... 62%
Extracting and writing features... 63%
Extracting and writing features... 64%
Extracting and writing features... 65%
Extracting and writing features... 66%
Extracting and writing features... 67%
Extracting and writing features... 68%
Extracting and writing features... 69%
Extracting and writing features... 70%
Extracting and writing features... 71%
Extracting and writing features... 72%
Extracting and writing features... 73%
Extracting and writing features... 74%
Extracting and writing features... 75%
Extracting and writing features... 76%
Extracting and writing features... 77%
Extracting and writing features... 78%
Extracting and writing features... 79%
Extracting and writing features... 80%
Extracting and writing features... 81%
Extracting and writing features... 82%
Extracting and writing features... 83%
Extracting and writing features... 84%
Extracting and writing features... 85%
Extracting and writing features... 86%
Extracting and writing features... 87%
Extracting and writing features... 88%
Extracting and writing features... 89%
Extracting and writing features... 90%
Extracting and writing features... 91%
Extracting and writing features... 92%
Extracting and writing features... 93%
Extracting and writing features... 94%
Extracting and writing features... 95%
Extracting and writing features... 96%
Extracting and writing features... 97%
Extracting and writing features... 98%
Extracting and writing features... 99%
Extracting and writing features... 100%
Extracting and writing features... Done
+
+Validating against ground truth at 50 ms:
+precision 44.1, recall 61.2, accuracy 34.5, F 51.3  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 56.1, recall 51, accuracy 36.5, F 53.4
+
+Validating MIREX against ground truth at 50 ms:
+precision 50.1, recall 76.4, accuracy 43.4, F 60.5
+
+Validating against ground truth at 100 ms:
+precision 57.8, recall 80.1, accuracy 50.5, F 67.1
+
+Validating against MIREX submission at 100 ms:
+precision 82.7, recall 75.2, accuracy 65, F 78.7
+
+Validating MIREX against ground truth at 100 ms:
+precision 51.9, recall 79.2, accuracy 45.7, F 62.7
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/take_five/mix.wav...
+
+For piece take_five, arrangement mix, using instrument 0...
+force -> 
+one-file -> /tmp/30755
+Have audio source: "/tmp/30755norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/30755norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+NOTE: Using default sample rate of 44100 for default transform
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:notes" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/30755norm.wav"
+Audio file "/tmp/30755norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 1%
Extracting and writing features... 2%
Extracting and writing features... 3%
Extracting and writing features... 4%
Extracting and writing features... 5%
Extracting and writing features... 6%
Extracting and writing features... 7%
Extracting and writing features... 8%
Extracting and writing features... 9%
Extracting and writing features... 10%
Extracting and writing features... 11%
Extracting and writing features... 12%
Extracting and writing features... 13%
Extracting and writing features... 14%
Extracting and writing features... 15%
Extracting and writing features... 16%
Extracting and writing features... 17%
Extracting and writing features... 18%
Extracting and writing features... 19%
Extracting and writing features... 20%
Extracting and writing features... 21%
Extracting and writing features... 22%
Extracting and writing features... 23%
Extracting and writing features... 24%
Extracting and writing features... 25%
Extracting and writing features... 26%
Extracting and writing features... 27%
Extracting and writing features... 28%
Extracting and writing features... 29%
Extracting and writing features... 30%
Extracting and writing features... 31%
Extracting and writing features... 32%
Extracting and writing features... 33%
Extracting and writing features... 34%
Extracting and writing features... 35%
Extracting and writing features... 36%
Extracting and writing features... 37%
Extracting and writing features... 38%
Extracting and writing features... 39%
Extracting and writing features... 40%
Extracting and writing features... 41%
Extracting and writing features... 42%
Extracting and writing features... 43%
Extracting and writing features... 44%
Extracting and writing features... 45%
Extracting and writing features... 46%
Extracting and writing features... 47%
Extracting and writing features... 48%
Extracting and writing features... 49%
Extracting and writing features... 50%
Extracting and writing features... 51%
Extracting and writing features... 52%
Extracting and writing features... 53%
Extracting and writing features... 54%
Extracting and writing features... 55%
Extracting and writing features... 56%
Extracting and writing features... 57%
Extracting and writing features... 58%
Extracting and writing features... 59%
Extracting and writing features... 60%
Extracting and writing features... 61%
Extracting and writing features... 62%
Extracting and writing features... 63%
Extracting and writing features... 64%
Extracting and writing features... 65%
Extracting and writing features... 66%
Extracting and writing features... 67%
Extracting and writing features... 68%
Extracting and writing features... 69%
Extracting and writing features... 70%
Extracting and writing features... 71%
Extracting and writing features... 72%
Extracting and writing features... 73%
Extracting and writing features... 74%
Extracting and writing features... 75%
Extracting and writing features... 76%
Extracting and writing features... 77%
Extracting and writing features... 78%
Extracting and writing features... 79%
Extracting and writing features... 80%
Extracting and writing features... 81%
Extracting and writing features... 82%
Extracting and writing features... 83%
Extracting and writing features... 84%
Extracting and writing features... 85%
Extracting and writing features... 86%
Extracting and writing features... 87%
Extracting and writing features... 88%
Extracting and writing features... 89%
Extracting and writing features... 90%
Extracting and writing features... 91%
Extracting and writing features... 92%
Extracting and writing features... 93%
Extracting and writing features... 94%
Extracting and writing features... 95%
Extracting and writing features... 96%
Extracting and writing features... 97%
Extracting and writing features... 98%
Extracting and writing features... 99%
Extracting and writing features... 100%
Extracting and writing features... Done
+
+Validating against ground truth at 50 ms:
+precision 68.6, recall 75.4, accuracy 56.1, F 71.8  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 71.1, recall 64.7, accuracy 51.3, F 67.8
+
+Validating MIREX against ground truth at 50 ms:
+precision 56.5, recall 68.3, accuracy 44.8, F 61.8
+
+Validating against ground truth at 100 ms:
+precision 72, recall 79.1, accuracy 60.5, F 75.4
+
+Validating against MIREX submission at 100 ms:
+precision 90.1, recall 82, accuracy 75.2, F 85.8
+
+Validating MIREX against ground truth at 100 ms:
+precision 65.5, recall 79.1, accuracy 55.9, F 71.7
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/take_five/saxophone.wav...
+
+For piece take_five, arrangement saxophone, using instrument 0...
+force -> 
+one-file -> /tmp/30755
+Have audio source: "/tmp/30755norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/30755norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+NOTE: Using default sample rate of 44100 for default transform
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:notes" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/30755norm.wav"
+Audio file "/tmp/30755norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 1%
Extracting and writing features... 2%
Extracting and writing features... 3%
Extracting and writing features... 4%
Extracting and writing features... 5%
Extracting and writing features... 6%
Extracting and writing features... 7%
Extracting and writing features... 8%
Extracting and writing features... 9%
Extracting and writing features... 10%
Extracting and writing features... 11%
Extracting and writing features... 12%
Extracting and writing features... 13%
Extracting and writing features... 14%
Extracting and writing features... 15%
Extracting and writing features... 16%
Extracting and writing features... 17%
Extracting and writing features... 18%
Extracting and writing features... 19%
Extracting and writing features... 20%
Extracting and writing features... 21%
Extracting and writing features... 22%
Extracting and writing features... 23%
Extracting and writing features... 24%
Extracting and writing features... 25%
Extracting and writing features... 26%
Extracting and writing features... 27%
Extracting and writing features... 28%
Extracting and writing features... 29%
Extracting and writing features... 30%
Extracting and writing features... 31%
Extracting and writing features... 32%
Extracting and writing features... 33%
Extracting and writing features... 34%
Extracting and writing features... 35%
Extracting and writing features... 36%
Extracting and writing features... 37%
Extracting and writing features... 38%
Extracting and writing features... 39%
Extracting and writing features... 40%
Extracting and writing features... 41%
Extracting and writing features... 42%
Extracting and writing features... 43%
Extracting and writing features... 44%
Extracting and writing features... 45%
Extracting and writing features... 46%
Extracting and writing features... 47%
Extracting and writing features... 48%
Extracting and writing features... 49%
Extracting and writing features... 50%
Extracting and writing features... 51%
Extracting and writing features... 52%
Extracting and writing features... 53%
Extracting and writing features... 54%
Extracting and writing features... 55%
Extracting and writing features... 56%
Extracting and writing features... 57%
Extracting and writing features... 58%
Extracting and writing features... 59%
Extracting and writing features... 60%
Extracting and writing features... 61%
Extracting and writing features... 62%
Extracting and writing features... 63%
Extracting and writing features... 64%
Extracting and writing features... 65%
Extracting and writing features... 66%
Extracting and writing features... 67%
Extracting and writing features... 68%
Extracting and writing features... 69%
Extracting and writing features... 70%
Extracting and writing features... 71%
Extracting and writing features... 72%
Extracting and writing features... 73%
Extracting and writing features... 74%
Extracting and writing features... 75%
Extracting and writing features... 76%
Extracting and writing features... 77%
Extracting and writing features... 78%
Extracting and writing features... 79%
Extracting and writing features... 80%
Extracting and writing features... 81%
Extracting and writing features... 82%
Extracting and writing features... 83%
Extracting and writing features... 84%
Extracting and writing features... 85%
Extracting and writing features... 86%
Extracting and writing features... 87%
Extracting and writing features... 88%
Extracting and writing features... 89%
Extracting and writing features... 90%
Extracting and writing features... 91%
Extracting and writing features... 92%
Extracting and writing features... 93%
Extracting and writing features... 94%
Extracting and writing features... 95%
Extracting and writing features... 96%
Extracting and writing features... 97%
Extracting and writing features... 98%
Extracting and writing features... 99%
Extracting and writing features... 100%
Extracting and writing features... Done
+
+Validating against ground truth at 50 ms:
+precision 79.1, recall 90.4, accuracy 73, F 84.4  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 77.5, recall 66.4, accuracy 55.6, F 71.5
+
+Validating MIREX against ground truth at 50 ms:
+precision 67.8, recall 90.4, accuracy 63.3, F 77.5
+
+Validating against ground truth at 100 ms:
+precision 80.8, recall 92.3, accuracy 75.7, F 86.2
+
+Validating against MIREX submission at 100 ms:
+precision 91.6, recall 78.5, accuracy 73.3, F 84.6
+
+Validating MIREX against ground truth at 100 ms:
+precision 70, recall 93.3, accuracy 66.6, F 80
+
+
+real	3m54.966s
+user	9m52.200s
+sys	0m3.710s
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/evaluation/outputs/72a9696f7caa.txt	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,599 @@
+Yeti 0.9.9+
+1.0
+
+Input files are:
+/home/cannam/Music/TRIOS_dataset/mozart/piano.wav
+/home/cannam/Music/TRIOS_dataset/mozart/viola.wav
+/home/cannam/Music/TRIOS_dataset/mozart/mix.wav
+/home/cannam/Music/TRIOS_dataset/mozart/clarinet.wav
+/home/cannam/Music/TRIOS_dataset/lussier/piano.wav
+/home/cannam/Music/TRIOS_dataset/lussier/mix.wav
+/home/cannam/Music/TRIOS_dataset/lussier/bassoon.wav
+/home/cannam/Music/TRIOS_dataset/lussier/trumpet.wav
+/home/cannam/Music/TRIOS_dataset/take_five/piano.wav
+/home/cannam/Music/TRIOS_dataset/take_five/mix.wav
+/home/cannam/Music/TRIOS_dataset/take_five/saxophone.wav
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/mozart/piano.wav...
+
+For piece mozart, arrangement piano, using instrument 1...
+force -> 
+one-file -> /tmp/5389
+Have audio source: "/tmp/5389norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/5389norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+RDFTransformFactory: NOTE: Transform is: 
+<transform
+    id="vamp:silvet:silvet:"
+    pluginVersion=""
+    program=""
+    stepSize="1024"
+    blockSize="1024"
+    windowType="hanning"
+    startTime="0.000000000"
+    duration="0.000000000"
+    sampleRate="0">
+  <parameter name="finetune" value="0"/>
+  <parameter name="instrument" value="1"/>
+  <parameter name="mode" value="1"/>
+</transform>
+
+NOTE: Transform does not specify a sample rate, using default rate of 44100
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/5389norm.wav"
+Audio file "/tmp/5389norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 1%
Extracting and writing features... 2%
Extracting and writing features... 3%
Extracting and writing features... 4%
Extracting and writing features... 5%
Extracting and writing features... 6%
Extracting and writing features... 7%
Extracting and writing features... 8%
Extracting and writing features... 10%
Extracting and writing features... 11%
Extracting and writing features... 12%
Extracting and writing features... 13%
Extracting and writing features... 14%
Extracting and writing features... 15%
Extracting and writing features... 16%
Extracting and writing features... 17%
Extracting and writing features... 18%
Extracting and writing features... 20%
Extracting and writing features... 21%
Extracting and writing features... 22%
Extracting and writing features... 23%
Extracting and writing features... 24%
Extracting and writing features... 25%
Extracting and writing features... 26%
Extracting and writing features... 27%
Extracting and writing features... 28%
Extracting and writing features... 30%
Extracting and writing features... 31%
Extracting and writing features... 32%
Extracting and writing features... 33%
Extracting and writing features... 34%
Extracting and writing features... 35%
Extracting and writing features... 36%
Extracting and writing features... 37%
Extracting and writing features... 38%
Extracting and writing features... 40%
Extracting and writing features... 41%
Extracting and writing features... 42%
Extracting and writing features... 43%
Extracting and writing features... 44%
Extracting and writing features... 45%
Extracting and writing features... 46%
Extracting and writing features... 47%
Extracting and writing features... 48%
Extracting and writing features... 50%
Extracting and writing features... 51%
Extracting and writing features... 52%
Extracting and writing features... 53%
Extracting and writing features... 54%
Extracting and writing features... 55%
Extracting and writing features... 56%
Extracting and writing features... 57%
Extracting and writing features... 58%
Extracting and writing features... 59%
Extracting and writing features... 61%
Extracting and writing features... 62%
Extracting and writing features... 63%
Extracting and writing features... 64%
Extracting and writing features... 65%
Extracting and writing features... 66%
Extracting and writing features... 67%
Extracting and writing features... 68%
Extracting and writing features... 69%
Extracting and writing features... 71%
Extracting and writing features... 72%
Extracting and writing features... 73%
Extracting and writing features... 74%
Extracting and writing features... 75%
Extracting and writing features... 76%
Extracting and writing features... 77%
Extracting and writing features... 78%
Extracting and writing features... 79%
Extracting and writing features... 81%
Extracting and writing features... 82%
Extracting and writing features... 83%
Extracting and writing features... 84%
Extracting and writing features... 85%
Extracting and writing features... 86%
Extracting and writing features... 87%
Extracting and writing features... 88%
Extracting and writing features... 89%
Extracting and writing features... 91%
Extracting and writing features... 92%
Extracting and writing features... 93%
Extracting and writing features... 94%
Extracting and writing features... 95%
Extracting and writing features... 96%
Extracting and writing features... 97%
Extracting and writing features... 98%
Extracting and writing features... 99%
Extracting and writing features... Done
+
+
+Validating against ground truth at 50 ms:
+precision 43.1, recall 65, accuracy 35, F 51.9  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 30, recall 39.5, accuracy 20.5, F 34.1
+
+Validating MIREX against ground truth at 50 ms:
+precision 56.2, recall 64.3, accuracy 42.9, F 60
+
+Validating against ground truth at 100 ms:
+precision 53.1, recall 80.1, accuracy 46.9, F 63.9
+
+Validating against MIREX submission at 100 ms:
+precision 60, recall 79, accuracy 51.7, F 68.2
+
+Validating MIREX against ground truth at 100 ms:
+precision 69.4, recall 79.4, accuracy 58.8, F 74.1
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/mozart/viola.wav...
+
+For piece mozart, arrangement viola, using instrument 0...
+force -> 
+one-file -> /tmp/5389
+Have audio source: "/tmp/5389norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/5389norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+RDFTransformFactory: NOTE: Transform is: 
+<transform
+    id="vamp:silvet:silvet:"
+    pluginVersion=""
+    program=""
+    stepSize="1024"
+    blockSize="1024"
+    windowType="hanning"
+    startTime="0.000000000"
+    duration="0.000000000"
+    sampleRate="0">
+  <parameter name="finetune" value="0"/>
+  <parameter name="instrument" value="0"/>
+  <parameter name="mode" value="1"/>
+</transform>
+
+NOTE: Transform does not specify a sample rate, using default rate of 44100
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/5389norm.wav"
+Audio file "/tmp/5389norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 1%
Extracting and writing features... 2%
Extracting and writing features... 3%
Extracting and writing features... 4%
Extracting and writing features... 5%
Extracting and writing features... 6%
Extracting and writing features... 7%
Extracting and writing features... 8%
Extracting and writing features... 10%
Extracting and writing features... 11%
Extracting and writing features... 12%
Extracting and writing features... 13%
Extracting and writing features... 14%
Extracting and writing features... 15%
Extracting and writing features... 16%
Extracting and writing features... 17%
Extracting and writing features... 18%
Extracting and writing features... 20%
Extracting and writing features... 21%
Extracting and writing features... 22%
Extracting and writing features... 23%
Extracting and writing features... 24%
Extracting and writing features... 25%
Extracting and writing features... 26%
Extracting and writing features... 27%
Extracting and writing features... 28%
Extracting and writing features... 30%
Extracting and writing features... 31%
Extracting and writing features... 32%
Extracting and writing features... 33%
Extracting and writing features... 34%
Extracting and writing features... 35%
Extracting and writing features... 36%
Extracting and writing features... 37%
Extracting and writing features... 38%
Extracting and writing features... 40%
Extracting and writing features... 41%
Extracting and writing features... 42%
Extracting and writing features... 43%
Extracting and writing features... 44%
Extracting and writing features... 45%
Extracting and writing features... 46%
Extracting and writing features... 47%
Extracting and writing features... 48%
Extracting and writing features... 50%
Extracting and writing features... 51%
Extracting and writing features... 52%
Extracting and writing features... 53%
Extracting and writing features... 54%
Extracting and writing features... 55%
Extracting and writing features... 56%
Extracting and writing features... 57%
Extracting and writing features... 58%
Extracting and writing features... 59%
Extracting and writing features... 61%
Extracting and writing features... 62%
Extracting and writing features... 63%
Extracting and writing features... 64%
Extracting and writing features... 65%
Extracting and writing features... 66%
Extracting and writing features... 67%
Extracting and writing features... 68%
Extracting and writing features... 69%
Extracting and writing features... 71%
Extracting and writing features... 72%
Extracting and writing features... 73%
Extracting and writing features... 74%
Extracting and writing features... 75%
Extracting and writing features... 76%
Extracting and writing features... 77%
Extracting and writing features... 78%
Extracting and writing features... 79%
Extracting and writing features... 81%
Extracting and writing features... 82%
Extracting and writing features... 83%
Extracting and writing features... 84%
Extracting and writing features... 85%
Extracting and writing features... 86%
Extracting and writing features... 87%
Extracting and writing features... 88%
Extracting and writing features... 89%
Extracting and writing features... 91%
Extracting and writing features... 92%
Extracting and writing features... 93%
Extracting and writing features... 94%
Extracting and writing features... 95%
Extracting and writing features... 96%
Extracting and writing features... 97%
Extracting and writing features... 98%
Extracting and writing features... 99%
Extracting and writing features... Done
+
+
+Validating against ground truth at 50 ms:
+precision 27.2, recall 75, accuracy 25, F 40  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 43.1, recall 30.6, accuracy 21.8, F 35.8
+
+Validating MIREX against ground truth at 50 ms:
+precision 20.9, recall 81.2, accuracy 20, F 33.3
+
+Validating against ground truth at 100 ms:
+precision 28.4, recall 78.1, accuracy 26.3, F 41.6
+
+Validating against MIREX submission at 100 ms:
+precision 63.6, recall 45.1, accuracy 35.8, F 52.8
+
+Validating MIREX against ground truth at 100 ms:
+precision 22.5, recall 87.5, accuracy 21.8, F 35.8
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/mozart/mix.wav...
+
+For piece mozart, arrangement mix, using instrument 0...
+force -> 
+one-file -> /tmp/5389
+Have audio source: "/tmp/5389norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/5389norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+RDFTransformFactory: NOTE: Transform is: 
+<transform
+    id="vamp:silvet:silvet:"
+    pluginVersion=""
+    program=""
+    stepSize="1024"
+    blockSize="1024"
+    windowType="hanning"
+    startTime="0.000000000"
+    duration="0.000000000"
+    sampleRate="0">
+  <parameter name="finetune" value="0"/>
+  <parameter name="instrument" value="0"/>
+  <parameter name="mode" value="1"/>
+</transform>
+
+NOTE: Transform does not specify a sample rate, using default rate of 44100
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/5389norm.wav"
+Audio file "/tmp/5389norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 1%
Extracting and writing features... 2%
Extracting and writing features... 3%
Extracting and writing features... 4%
Extracting and writing features... 5%
Extracting and writing features... 6%
Extracting and writing features... 7%
Extracting and writing features... 8%
Extracting and writing features... 10%
Extracting and writing features... 11%
Extracting and writing features... 12%
Extracting and writing features... 13%
Extracting and writing features... 14%
Extracting and writing features... 15%
Extracting and writing features... 16%
Extracting and writing features... 17%
Extracting and writing features... 18%
Extracting and writing features... 20%
Extracting and writing features... 21%
Extracting and writing features... 22%
Extracting and writing features... 23%
Extracting and writing features... 24%
Extracting and writing features... 25%
Extracting and writing features... 26%
Extracting and writing features... 27%
Extracting and writing features... 28%
Extracting and writing features... 30%
Extracting and writing features... 31%
Extracting and writing features... 32%
Extracting and writing features... 33%
Extracting and writing features... 34%
Extracting and writing features... 35%
Extracting and writing features... 36%
Extracting and writing features... 37%
Extracting and writing features... 38%
Extracting and writing features... 40%
Extracting and writing features... 41%
Extracting and writing features... 42%
Extracting and writing features... 43%
Extracting and writing features... 44%
Extracting and writing features... 45%
Extracting and writing features... 46%
Extracting and writing features... 47%
Extracting and writing features... 48%
Extracting and writing features... 50%
Extracting and writing features... 51%
Extracting and writing features... 52%
Extracting and writing features... 53%
Extracting and writing features... 54%
Extracting and writing features... 55%
Extracting and writing features... 56%
Extracting and writing features... 57%
Extracting and writing features... 58%
Extracting and writing features... 59%
Extracting and writing features... 61%
Extracting and writing features... 62%
Extracting and writing features... 63%
Extracting and writing features... 64%
Extracting and writing features... 65%
Extracting and writing features... 66%
Extracting and writing features... 67%
Extracting and writing features... 68%
Extracting and writing features... 69%
Extracting and writing features... 71%
Extracting and writing features... 72%
Extracting and writing features... 73%
Extracting and writing features... 74%
Extracting and writing features... 75%
Extracting and writing features... 76%
Extracting and writing features... 77%
Extracting and writing features... 78%
Extracting and writing features... 79%
Extracting and writing features... 81%
Extracting and writing features... 82%
Extracting and writing features... 83%
Extracting and writing features... 84%
Extracting and writing features... 85%
Extracting and writing features... 86%
Extracting and writing features... 87%
Extracting and writing features... 88%
Extracting and writing features... 89%
Extracting and writing features... 91%
Extracting and writing features... 92%
Extracting and writing features... 93%
Extracting and writing features... 94%
Extracting and writing features... 95%
Extracting and writing features... 96%
Extracting and writing features... 97%
Extracting and writing features... 98%
Extracting and writing features... 99%
Extracting and writing features... Done
+
+
+Validating against ground truth at 50 ms:
+precision 56.8, recall 55.4, accuracy 39, F 56.1  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 60.9, recall 58.8, accuracy 42.7, F 59.8
+
+Validating MIREX against ground truth at 50 ms:
+precision 50.4, recall 51, accuracy 33.9, F 50.7
+
+Validating against ground truth at 100 ms:
+precision 68.4, recall 66.8, accuracy 51, F 67.6
+
+Validating against MIREX submission at 100 ms:
+precision 80, recall 77.2, accuracy 64.7, F 78.6
+
+Validating MIREX against ground truth at 100 ms:
+precision 67.2, recall 68, accuracy 51, F 67.6
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/mozart/clarinet.wav...
+
+For piece mozart, arrangement clarinet, using instrument 8...
+force -> 
+one-file -> /tmp/5389
+Have audio source: "/tmp/5389norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/5389norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+RDFTransformFactory: NOTE: Transform is: 
+<transform
+    id="vamp:silvet:silvet:"
+    pluginVersion=""
+    program=""
+    stepSize="1024"
+    blockSize="1024"
+    windowType="hanning"
+    startTime="0.000000000"
+    duration="0.000000000"
+    sampleRate="0">
+  <parameter name="finetune" value="0"/>
+  <parameter name="instrument" value="8"/>
+  <parameter name="mode" value="1"/>
+</transform>
+
+NOTE: Transform does not specify a sample rate, using default rate of 44100
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/5389norm.wav"
+Audio file "/tmp/5389norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 1%
Extracting and writing features... 2%
Extracting and writing features... 3%
Extracting and writing features... 4%
Extracting and writing features... 5%
Extracting and writing features... 6%
Extracting and writing features... 7%
Extracting and writing features... 8%
Extracting and writing features... 10%
Extracting and writing features... 11%
Extracting and writing features... 12%
Extracting and writing features... 13%
Extracting and writing features... 14%
Extracting and writing features... 15%
Extracting and writing features... 16%
Extracting and writing features... 17%
Extracting and writing features... 18%
Extracting and writing features... 20%
Extracting and writing features... 21%
Extracting and writing features... 22%
Extracting and writing features... 23%
Extracting and writing features... 24%
Extracting and writing features... 25%
Extracting and writing features... 26%
Extracting and writing features... 27%
Extracting and writing features... 28%
Extracting and writing features... 30%
Extracting and writing features... 31%
Extracting and writing features... 32%
Extracting and writing features... 33%
Extracting and writing features... 34%
Extracting and writing features... 35%
Extracting and writing features... 36%
Extracting and writing features... 37%
Extracting and writing features... 38%
Extracting and writing features... 40%
Extracting and writing features... 41%
Extracting and writing features... 42%
Extracting and writing features... 43%
Extracting and writing features... 44%
Extracting and writing features... 45%
Extracting and writing features... 46%
Extracting and writing features... 47%
Extracting and writing features... 48%
Extracting and writing features... 50%
Extracting and writing features... 51%
Extracting and writing features... 52%
Extracting and writing features... 53%
Extracting and writing features... 54%
Extracting and writing features... 55%
Extracting and writing features... 56%
Extracting and writing features... 57%
Extracting and writing features... 58%
Extracting and writing features... 59%
Extracting and writing features... 61%
Extracting and writing features... 62%
Extracting and writing features... 63%
Extracting and writing features... 64%
Extracting and writing features... 65%
Extracting and writing features... 66%
Extracting and writing features... 67%
Extracting and writing features... 68%
Extracting and writing features... 69%
Extracting and writing features... 71%
Extracting and writing features... 72%
Extracting and writing features... 73%
Extracting and writing features... 74%
Extracting and writing features... 75%
Extracting and writing features... 76%
Extracting and writing features... 77%
Extracting and writing features... 78%
Extracting and writing features... 79%
Extracting and writing features... 81%
Extracting and writing features... 82%
Extracting and writing features... 83%
Extracting and writing features... 84%
Extracting and writing features... 85%
Extracting and writing features... 86%
Extracting and writing features... 87%
Extracting and writing features... 88%
Extracting and writing features... 89%
Extracting and writing features... 91%
Extracting and writing features... 92%
Extracting and writing features... 93%
Extracting and writing features... 94%
Extracting and writing features... 95%
Extracting and writing features... 96%
Extracting and writing features... 97%
Extracting and writing features... 98%
Extracting and writing features... 99%
Extracting and writing features... Done
+
+
+Validating against ground truth at 50 ms:
+precision 90.5, recall 69.5, accuracy 64.8, F 78.6  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 83, recall 61.1, accuracy 54.3, F 70.4
+
+Validating MIREX against ground truth at 50 ms:
+precision 72.2, recall 75.3, accuracy 58.4, F 73.7
+
+Validating against ground truth at 100 ms:
+precision 100, recall 76.8, accuracy 76.8, F 86.8
+
+Validating against MIREX submission at 100 ms:
+precision 98.1, recall 72.2, accuracy 71.2, F 83.2
+
+Validating MIREX against ground truth at 100 ms:
+precision 75, recall 78.2, accuracy 62, F 76.5
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/lussier/piano.wav...
+
+For piece lussier, arrangement piano, using instrument 1...
+force -> 
+one-file -> /tmp/5389
+Have audio source: "/tmp/5389norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/5389norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+RDFTransformFactory: NOTE: Transform is: 
+<transform
+    id="vamp:silvet:silvet:"
+    pluginVersion=""
+    program=""
+    stepSize="1024"
+    blockSize="1024"
+    windowType="hanning"
+    startTime="0.000000000"
+    duration="0.000000000"
+    sampleRate="0">
+  <parameter name="finetune" value="0"/>
+  <parameter name="instrument" value="1"/>
+  <parameter name="mode" value="1"/>
+</transform>
+
+NOTE: Transform does not specify a sample rate, using default rate of 44100
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/5389norm.wav"
+Audio file "/tmp/5389norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 2%
Extracting and writing features... 4%
Extracting and writing features... 6%
Extracting and writing features... 8%
Extracting and writing features... 10%
Extracting and writing features... 12%
Extracting and writing features... 14%
Extracting and writing features... 16%
Extracting and writing features... 18%
Extracting and writing features... 20%
Extracting and writing features... 22%
Extracting and writing features... 24%
Extracting and writing features... 26%
Extracting and writing features... 28%
Extracting and writing features... 31%
Extracting and writing features... 33%
Extracting and writing features... 35%
Extracting and writing features... 37%
Extracting and writing features... 39%
Extracting and writing features... 41%
Extracting and writing features... 43%
Extracting and writing features... 45%
Extracting and writing features... 47%
Extracting and writing features... 49%
Extracting and writing features... 51%
Extracting and writing features... 53%
Extracting and writing features... 55%
Extracting and writing features... 57%
Extracting and writing features... 59%
Extracting and writing features... 62%
Extracting and writing features... 64%
Extracting and writing features... 66%
Extracting and writing features... 68%
Extracting and writing features... 70%
Extracting and writing features... 72%
Extracting and writing features... 74%
Extracting and writing features... 76%
Extracting and writing features... 78%
Extracting and writing features... 80%
Extracting and writing features... 82%
Extracting and writing features... 84%
Extracting and writing features... 86%
Extracting and writing features... 88%
Extracting and writing features... 90%
Extracting and writing features... 92%
Extracting and writing features... 95%
Extracting and writing features... 97%
Extracting and writing features... 99%
Extracting and writing features... Done
+
+
+Validating against ground truth at 50 ms:
+precision 38.3, recall 51.2, accuracy 28.1, F 43.8  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 22, recall 29.4, accuracy 14.4, F 25.1
+
+Validating MIREX against ground truth at 50 ms:
+precision 45.3, recall 45.3, accuracy 29.3, F 45.3
+
+Validating against ground truth at 100 ms:
+precision 47.7, recall 63.8, accuracy 37.6, F 54.6
+
+Validating against MIREX submission at 100 ms:
+precision 44.6, recall 59.6, accuracy 34.2, F 51
+
+Validating MIREX against ground truth at 100 ms:
+precision 62.1, recall 62.1, accuracy 45.1, F 62.1
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/lussier/mix.wav...
+
+For piece lussier, arrangement mix, using instrument 0...
+force -> 
+one-file -> /tmp/5389
+Have audio source: "/tmp/5389norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/5389norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+RDFTransformFactory: NOTE: Transform is: 
+<transform
+    id="vamp:silvet:silvet:"
+    pluginVersion=""
+    program=""
+    stepSize="1024"
+    blockSize="1024"
+    windowType="hanning"
+    startTime="0.000000000"
+    duration="0.000000000"
+    sampleRate="0">
+  <parameter name="finetune" value="0"/>
+  <parameter name="instrument" value="0"/>
+  <parameter name="mode" value="1"/>
+</transform>
+
+NOTE: Transform does not specify a sample rate, using default rate of 44100
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/5389norm.wav"
+Audio file "/tmp/5389norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 2%
Extracting and writing features... 4%
Extracting and writing features... 6%
Extracting and writing features... 8%
Extracting and writing features... 10%
Extracting and writing features... 12%
Extracting and writing features... 14%
Extracting and writing features... 16%
Extracting and writing features... 18%
Extracting and writing features... 20%
Extracting and writing features... 22%
Extracting and writing features... 24%
Extracting and writing features... 26%
Extracting and writing features... 28%
Extracting and writing features... 31%
Extracting and writing features... 33%
Extracting and writing features... 35%
Extracting and writing features... 37%
Extracting and writing features... 39%
Extracting and writing features... 41%
Extracting and writing features... 43%
Extracting and writing features... 45%
Extracting and writing features... 47%
Extracting and writing features... 49%
Extracting and writing features... 51%
Extracting and writing features... 53%
Extracting and writing features... 55%
Extracting and writing features... 57%
Extracting and writing features... 59%
Extracting and writing features... 62%
Extracting and writing features... 64%
Extracting and writing features... 66%
Extracting and writing features... 68%
Extracting and writing features... 70%
Extracting and writing features... 72%
Extracting and writing features... 74%
Extracting and writing features... 76%
Extracting and writing features... 78%
Extracting and writing features... 80%
Extracting and writing features... 82%
Extracting and writing features... 84%
Extracting and writing features... 86%
Extracting and writing features... 88%
Extracting and writing features... 90%
Extracting and writing features... 92%
Extracting and writing features... 95%
Extracting and writing features... 97%
Extracting and writing features... 99%
Extracting and writing features... Done
+
+
+Validating against ground truth at 50 ms:
+precision 55.3, recall 37.5, accuracy 28.7, F 44.6  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 61.7, recall 53.3, accuracy 40, F 57.2
+
+Validating MIREX against ground truth at 50 ms:
+precision 40.4, recall 31.7, accuracy 21.6, F 35.5
+
+Validating against ground truth at 100 ms:
+precision 62.4, recall 42.3, accuracy 33.7, F 50.4
+
+Validating against MIREX submission at 100 ms:
+precision 78, recall 67.4, accuracy 56.7, F 72.3
+
+Validating MIREX against ground truth at 100 ms:
+precision 57.6, recall 45.1, accuracy 33.9, F 50.6
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/lussier/bassoon.wav...
+
+For piece lussier, arrangement bassoon, using instrument 10...
+force -> 
+one-file -> /tmp/5389
+Have audio source: "/tmp/5389norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/5389norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+RDFTransformFactory: NOTE: Transform is: 
+<transform
+    id="vamp:silvet:silvet:"
+    pluginVersion=""
+    program=""
+    stepSize="1024"
+    blockSize="1024"
+    windowType="hanning"
+    startTime="0.000000000"
+    duration="0.000000000"
+    sampleRate="0">
+  <parameter name="finetune" value="0"/>
+  <parameter name="instrument" value="10"/>
+  <parameter name="mode" value="1"/>
+</transform>
+
+NOTE: Transform does not specify a sample rate, using default rate of 44100
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/5389norm.wav"
+Audio file "/tmp/5389norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 2%
Extracting and writing features... 4%
Extracting and writing features... 6%
Extracting and writing features... 8%
Extracting and writing features... 10%
Extracting and writing features... 12%
Extracting and writing features... 14%
Extracting and writing features... 16%
Extracting and writing features... 18%
Extracting and writing features... 20%
Extracting and writing features... 22%
Extracting and writing features... 24%
Extracting and writing features... 26%
Extracting and writing features... 28%
Extracting and writing features... 31%
Extracting and writing features... 33%
Extracting and writing features... 35%
Extracting and writing features... 37%
Extracting and writing features... 39%
Extracting and writing features... 41%
Extracting and writing features... 43%
Extracting and writing features... 45%
Extracting and writing features... 47%
Extracting and writing features... 49%
Extracting and writing features... 51%
Extracting and writing features... 53%
Extracting and writing features... 55%
Extracting and writing features... 57%
Extracting and writing features... 59%
Extracting and writing features... 62%
Extracting and writing features... 64%
Extracting and writing features... 66%
Extracting and writing features... 68%
Extracting and writing features... 70%
Extracting and writing features... 72%
Extracting and writing features... 74%
Extracting and writing features... 76%
Extracting and writing features... 78%
Extracting and writing features... 80%
Extracting and writing features... 82%
Extracting and writing features... 84%
Extracting and writing features... 86%
Extracting and writing features... 88%
Extracting and writing features... 90%
Extracting and writing features... 92%
Extracting and writing features... 95%
Extracting and writing features... 97%
Extracting and writing features... 99%
Extracting and writing features... Done
+
+
+Validating against ground truth at 50 ms:
+precision 78.6, recall 73.8, accuracy 61.5, F 76.1  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 44.2, recall 19.2, accuracy 15.5, F 26.8
+
+Validating MIREX against ground truth at 50 ms:
+precision 31.4, recall 67.6, accuracy 27.3, F 42.9
+
+Validating against ground truth at 100 ms:
+precision 88.5, recall 83, accuracy 75, F 85.7
+
+Validating against MIREX submission at 100 ms:
+precision 80.3, recall 35, accuracy 32.2, F 48.7
+
+Validating MIREX against ground truth at 100 ms:
+precision 37.1, recall 80, accuracy 33.9, F 50.7
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/lussier/trumpet.wav...
+
+For piece lussier, arrangement trumpet, using instrument 0...
+force -> 
+one-file -> /tmp/5389
+Have audio source: "/tmp/5389norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/5389norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+RDFTransformFactory: NOTE: Transform is: 
+<transform
+    id="vamp:silvet:silvet:"
+    pluginVersion=""
+    program=""
+    stepSize="1024"
+    blockSize="1024"
+    windowType="hanning"
+    startTime="0.000000000"
+    duration="0.000000000"
+    sampleRate="0">
+  <parameter name="finetune" value="0"/>
+  <parameter name="instrument" value="0"/>
+  <parameter name="mode" value="1"/>
+</transform>
+
+NOTE: Transform does not specify a sample rate, using default rate of 44100
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/5389norm.wav"
+Audio file "/tmp/5389norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 2%
Extracting and writing features... 4%
Extracting and writing features... 6%
Extracting and writing features... 8%
Extracting and writing features... 10%
Extracting and writing features... 12%
Extracting and writing features... 14%
Extracting and writing features... 16%
Extracting and writing features... 18%
Extracting and writing features... 20%
Extracting and writing features... 22%
Extracting and writing features... 24%
Extracting and writing features... 26%
Extracting and writing features... 28%
Extracting and writing features... 31%
Extracting and writing features... 33%
Extracting and writing features... 35%
Extracting and writing features... 37%
Extracting and writing features... 39%
Extracting and writing features... 41%
Extracting and writing features... 43%
Extracting and writing features... 45%
Extracting and writing features... 47%
Extracting and writing features... 49%
Extracting and writing features... 51%
Extracting and writing features... 53%
Extracting and writing features... 55%
Extracting and writing features... 57%
Extracting and writing features... 59%
Extracting and writing features... 62%
Extracting and writing features... 64%
Extracting and writing features... 66%
Extracting and writing features... 68%
Extracting and writing features... 70%
Extracting and writing features... 72%
Extracting and writing features... 74%
Extracting and writing features... 76%
Extracting and writing features... 78%
Extracting and writing features... 80%
Extracting and writing features... 82%
Extracting and writing features... 84%
Extracting and writing features... 86%
Extracting and writing features... 88%
Extracting and writing features... 90%
Extracting and writing features... 92%
Extracting and writing features... 95%
Extracting and writing features... 97%
Extracting and writing features... 99%
Extracting and writing features... Done
+
+
+Validating against ground truth at 50 ms:
+precision 28, recall 87.5, accuracy 26.9, F 42.4  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 45.3, recall 49.2, accuracy 30.9, F 47.2
+
+Validating MIREX against ground truth at 50 ms:
+precision 28.9, recall 83.3, accuracy 27.3, F 43
+
+Validating against ground truth at 100 ms:
+precision 29.3, recall 91.6, accuracy 28.5, F 44.4
+
+Validating against MIREX submission at 100 ms:
+precision 64, recall 69.5, accuracy 50, F 66.6
+
+Validating MIREX against ground truth at 100 ms:
+precision 31.8, recall 91.6, accuracy 30.9, F 47.3
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/take_five/piano.wav...
+
+For piece take_five, arrangement piano, using instrument 1...
+force -> 
+one-file -> /tmp/5389
+Have audio source: "/tmp/5389norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/5389norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+RDFTransformFactory: NOTE: Transform is: 
+<transform
+    id="vamp:silvet:silvet:"
+    pluginVersion=""
+    program=""
+    stepSize="1024"
+    blockSize="1024"
+    windowType="hanning"
+    startTime="0.000000000"
+    duration="0.000000000"
+    sampleRate="0">
+  <parameter name="finetune" value="0"/>
+  <parameter name="instrument" value="1"/>
+  <parameter name="mode" value="1"/>
+</transform>
+
+NOTE: Transform does not specify a sample rate, using default rate of 44100
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/5389norm.wav"
+Audio file "/tmp/5389norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 1%
Extracting and writing features... 2%
Extracting and writing features... 3%
Extracting and writing features... 4%
Extracting and writing features... 5%
Extracting and writing features... 6%
Extracting and writing features... 7%
Extracting and writing features... 8%
Extracting and writing features... 9%
Extracting and writing features... 10%
Extracting and writing features... 11%
Extracting and writing features... 12%
Extracting and writing features... 13%
Extracting and writing features... 14%
Extracting and writing features... 15%
Extracting and writing features... 16%
Extracting and writing features... 17%
Extracting and writing features... 18%
Extracting and writing features... 19%
Extracting and writing features... 20%
Extracting and writing features... 21%
Extracting and writing features... 22%
Extracting and writing features... 23%
Extracting and writing features... 24%
Extracting and writing features... 25%
Extracting and writing features... 26%
Extracting and writing features... 27%
Extracting and writing features... 28%
Extracting and writing features... 29%
Extracting and writing features... 30%
Extracting and writing features... 31%
Extracting and writing features... 32%
Extracting and writing features... 33%
Extracting and writing features... 34%
Extracting and writing features... 35%
Extracting and writing features... 36%
Extracting and writing features... 37%
Extracting and writing features... 38%
Extracting and writing features... 39%
Extracting and writing features... 40%
Extracting and writing features... 41%
Extracting and writing features... 42%
Extracting and writing features... 43%
Extracting and writing features... 44%
Extracting and writing features... 45%
Extracting and writing features... 46%
Extracting and writing features... 47%
Extracting and writing features... 48%
Extracting and writing features... 49%
Extracting and writing features... 50%
Extracting and writing features... 51%
Extracting and writing features... 52%
Extracting and writing features... 53%
Extracting and writing features... 54%
Extracting and writing features... 55%
Extracting and writing features... 56%
Extracting and writing features... 57%
Extracting and writing features... 58%
Extracting and writing features... 59%
Extracting and writing features... 60%
Extracting and writing features... 61%
Extracting and writing features... 62%
Extracting and writing features... 63%
Extracting and writing features... 64%
Extracting and writing features... 65%
Extracting and writing features... 66%
Extracting and writing features... 67%
Extracting and writing features... 68%
Extracting and writing features... 69%
Extracting and writing features... 70%
Extracting and writing features... 71%
Extracting and writing features... 72%
Extracting and writing features... 73%
Extracting and writing features... 74%
Extracting and writing features... 75%
Extracting and writing features... 76%
Extracting and writing features... 77%
Extracting and writing features... 78%
Extracting and writing features... 79%
Extracting and writing features... 80%
Extracting and writing features... 81%
Extracting and writing features... 82%
Extracting and writing features... 83%
Extracting and writing features... 84%
Extracting and writing features... 85%
Extracting and writing features... 86%
Extracting and writing features... 87%
Extracting and writing features... 88%
Extracting and writing features... 89%
Extracting and writing features... 90%
Extracting and writing features... 91%
Extracting and writing features... 92%
Extracting and writing features... 93%
Extracting and writing features... 94%
Extracting and writing features... 95%
Extracting and writing features... 96%
Extracting and writing features... 97%
Extracting and writing features... 98%
Extracting and writing features... 99%
Extracting and writing features... 100%
Extracting and writing features... Done
+
+Validating against ground truth at 50 ms:
+precision 22.8, recall 38.7, accuracy 16.8, F 28.7  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 34.3, recall 38, accuracy 22, F 36.1
+
+Validating MIREX against ground truth at 50 ms:
+precision 50.1, recall 76.4, accuracy 43.4, F 60.5
+
+Validating against ground truth at 100 ms:
+precision 40.5, recall 68.6, accuracy 34.2, F 51
+
+Validating against MIREX submission at 100 ms:
+precision 70.8, recall 78.5, accuracy 59.3, F 74.4
+
+Validating MIREX against ground truth at 100 ms:
+precision 51.9, recall 79.2, accuracy 45.7, F 62.7
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/take_five/mix.wav...
+
+For piece take_five, arrangement mix, using instrument 0...
+force -> 
+one-file -> /tmp/5389
+Have audio source: "/tmp/5389norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/5389norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+RDFTransformFactory: NOTE: Transform is: 
+<transform
+    id="vamp:silvet:silvet:"
+    pluginVersion=""
+    program=""
+    stepSize="1024"
+    blockSize="1024"
+    windowType="hanning"
+    startTime="0.000000000"
+    duration="0.000000000"
+    sampleRate="0">
+  <parameter name="finetune" value="0"/>
+  <parameter name="instrument" value="0"/>
+  <parameter name="mode" value="1"/>
+</transform>
+
+NOTE: Transform does not specify a sample rate, using default rate of 44100
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/5389norm.wav"
+Audio file "/tmp/5389norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 1%
Extracting and writing features... 2%
Extracting and writing features... 3%
Extracting and writing features... 4%
Extracting and writing features... 5%
Extracting and writing features... 6%
Extracting and writing features... 7%
Extracting and writing features... 8%
Extracting and writing features... 9%
Extracting and writing features... 10%
Extracting and writing features... 11%
Extracting and writing features... 12%
Extracting and writing features... 13%
Extracting and writing features... 14%
Extracting and writing features... 15%
Extracting and writing features... 16%
Extracting and writing features... 17%
Extracting and writing features... 18%
Extracting and writing features... 19%
Extracting and writing features... 20%
Extracting and writing features... 21%
Extracting and writing features... 22%
Extracting and writing features... 23%
Extracting and writing features... 24%
Extracting and writing features... 25%
Extracting and writing features... 26%
Extracting and writing features... 27%
Extracting and writing features... 28%
Extracting and writing features... 29%
Extracting and writing features... 30%
Extracting and writing features... 31%
Extracting and writing features... 32%
Extracting and writing features... 33%
Extracting and writing features... 34%
Extracting and writing features... 35%
Extracting and writing features... 36%
Extracting and writing features... 37%
Extracting and writing features... 38%
Extracting and writing features... 39%
Extracting and writing features... 40%
Extracting and writing features... 41%
Extracting and writing features... 42%
Extracting and writing features... 43%
Extracting and writing features... 44%
Extracting and writing features... 45%
Extracting and writing features... 46%
Extracting and writing features... 47%
Extracting and writing features... 48%
Extracting and writing features... 49%
Extracting and writing features... 50%
Extracting and writing features... 51%
Extracting and writing features... 52%
Extracting and writing features... 53%
Extracting and writing features... 54%
Extracting and writing features... 55%
Extracting and writing features... 56%
Extracting and writing features... 57%
Extracting and writing features... 58%
Extracting and writing features... 59%
Extracting and writing features... 60%
Extracting and writing features... 61%
Extracting and writing features... 62%
Extracting and writing features... 63%
Extracting and writing features... 64%
Extracting and writing features... 65%
Extracting and writing features... 66%
Extracting and writing features... 67%
Extracting and writing features... 68%
Extracting and writing features... 69%
Extracting and writing features... 70%
Extracting and writing features... 71%
Extracting and writing features... 72%
Extracting and writing features... 73%
Extracting and writing features... 74%
Extracting and writing features... 75%
Extracting and writing features... 76%
Extracting and writing features... 77%
Extracting and writing features... 78%
Extracting and writing features... 79%
Extracting and writing features... 80%
Extracting and writing features... 81%
Extracting and writing features... 82%
Extracting and writing features... 83%
Extracting and writing features... 84%
Extracting and writing features... 85%
Extracting and writing features... 86%
Extracting and writing features... 87%
Extracting and writing features... 88%
Extracting and writing features... 89%
Extracting and writing features... 90%
Extracting and writing features... 91%
Extracting and writing features... 92%
Extracting and writing features... 93%
Extracting and writing features... 94%
Extracting and writing features... 95%
Extracting and writing features... 96%
Extracting and writing features... 97%
Extracting and writing features... 98%
Extracting and writing features... 99%
Extracting and writing features... 100%
Extracting and writing features... Done
+
+Validating against ground truth at 50 ms:
+precision 68.4, recall 75.4, accuracy 55.9, F 71.7  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 73.2, recall 66.8, accuracy 53.7, F 69.8
+
+Validating MIREX against ground truth at 50 ms:
+precision 56.5, recall 68.3, accuracy 44.8, F 61.8
+
+Validating against ground truth at 100 ms:
+precision 72.9, recall 80.4, accuracy 61.9, F 76.5
+
+Validating against MIREX submission at 100 ms:
+precision 87.8, recall 80.2, accuracy 72.2, F 83.8
+
+Validating MIREX against ground truth at 100 ms:
+precision 65.5, recall 79.1, accuracy 55.9, F 71.7
+
+
+Evaluating for file /home/cannam/Music/TRIOS_dataset/take_five/saxophone.wav...
+
+For piece take_five, arrangement saxophone, using instrument 0...
+force -> 
+one-file -> /tmp/5389
+Have audio source: "/tmp/5389norm.wav"
+
Determining default rate and channel count from first input file... Done
+File or URL "/tmp/5389norm.wav" opened successfully
+Taking default channel count of 1 from file
+Taking default sample rate of 44100Hz from file
+(Note: Default may be overridden by transforms)
+RDFTransformFactory: NOTE: Transform is: 
+<transform
+    id="vamp:silvet:silvet:"
+    pluginVersion=""
+    program=""
+    stepSize="1024"
+    blockSize="1024"
+    windowType="hanning"
+    startTime="0.000000000"
+    duration="0.000000000"
+    sampleRate="0">
+  <parameter name="finetune" value="0"/>
+  <parameter name="instrument" value="0"/>
+  <parameter name="mode" value="1"/>
+</transform>
+
+NOTE: Transform does not specify a sample rate, using default rate of 44100
+NOTE: Loaded and initialised plugin for transform "vamp:silvet:silvet:" with plugin step size 1024 and block size 1024 (adapter step and block size 16384)
+Extracting features for: "/tmp/5389norm.wav"
+Audio file "/tmp/5389norm.wav": 1ch at 44100Hz
+
Extracting and writing features... 1%
Extracting and writing features... 2%
Extracting and writing features... 3%
Extracting and writing features... 4%
Extracting and writing features... 5%
Extracting and writing features... 6%
Extracting and writing features... 7%
Extracting and writing features... 8%
Extracting and writing features... 9%
Extracting and writing features... 10%
Extracting and writing features... 11%
Extracting and writing features... 12%
Extracting and writing features... 13%
Extracting and writing features... 14%
Extracting and writing features... 15%
Extracting and writing features... 16%
Extracting and writing features... 17%
Extracting and writing features... 18%
Extracting and writing features... 19%
Extracting and writing features... 20%
Extracting and writing features... 21%
Extracting and writing features... 22%
Extracting and writing features... 23%
Extracting and writing features... 24%
Extracting and writing features... 25%
Extracting and writing features... 26%
Extracting and writing features... 27%
Extracting and writing features... 28%
Extracting and writing features... 29%
Extracting and writing features... 30%
Extracting and writing features... 31%
Extracting and writing features... 32%
Extracting and writing features... 33%
Extracting and writing features... 34%
Extracting and writing features... 35%
Extracting and writing features... 36%
Extracting and writing features... 37%
Extracting and writing features... 38%
Extracting and writing features... 39%
Extracting and writing features... 40%
Extracting and writing features... 41%
Extracting and writing features... 42%
Extracting and writing features... 43%
Extracting and writing features... 44%
Extracting and writing features... 45%
Extracting and writing features... 46%
Extracting and writing features... 47%
Extracting and writing features... 48%
Extracting and writing features... 49%
Extracting and writing features... 50%
Extracting and writing features... 51%
Extracting and writing features... 52%
Extracting and writing features... 53%
Extracting and writing features... 54%
Extracting and writing features... 55%
Extracting and writing features... 56%
Extracting and writing features... 57%
Extracting and writing features... 58%
Extracting and writing features... 59%
Extracting and writing features... 60%
Extracting and writing features... 61%
Extracting and writing features... 62%
Extracting and writing features... 63%
Extracting and writing features... 64%
Extracting and writing features... 65%
Extracting and writing features... 66%
Extracting and writing features... 67%
Extracting and writing features... 68%
Extracting and writing features... 69%
Extracting and writing features... 70%
Extracting and writing features... 71%
Extracting and writing features... 72%
Extracting and writing features... 73%
Extracting and writing features... 74%
Extracting and writing features... 75%
Extracting and writing features... 76%
Extracting and writing features... 77%
Extracting and writing features... 78%
Extracting and writing features... 79%
Extracting and writing features... 80%
Extracting and writing features... 81%
Extracting and writing features... 82%
Extracting and writing features... 83%
Extracting and writing features... 84%
Extracting and writing features... 85%
Extracting and writing features... 86%
Extracting and writing features... 87%
Extracting and writing features... 88%
Extracting and writing features... 89%
Extracting and writing features... 90%
Extracting and writing features... 91%
Extracting and writing features... 92%
Extracting and writing features... 93%
Extracting and writing features... 94%
Extracting and writing features... 95%
Extracting and writing features... 96%
Extracting and writing features... 97%
Extracting and writing features... 98%
Extracting and writing features... 99%
Extracting and writing features... 100%
Extracting and writing features... Done
+
+Validating against ground truth at 50 ms:
+precision 78.3, recall 89.5, accuracy 71.7, F 83.5  <-- main measure
+
+Validating against MIREX submission at 50 ms:
+precision 78.3, recall 67.1, accuracy 56.6, F 72.3
+
+Validating MIREX against ground truth at 50 ms:
+precision 67.8, recall 90.4, accuracy 63.3, F 77.5
+
+Validating against ground truth at 100 ms:
+precision 79.1, recall 90.4, accuracy 73, F 84.4
+
+Validating against MIREX submission at 100 ms:
+precision 90.8, recall 77.8, accuracy 72.1, F 83.8
+
+Validating MIREX against ground truth at 100 ms:
+precision 70, recall 93.3, accuracy 66.6, F 80
+
+
+real	3m19.938s
+user	7m28.427s
+sys	0m3.373s
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/evaluation/run.sh	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,117 @@
+#!/bin/sh
+
+trios_path="/home/cannam/Music/TRIOS_dataset"
+yc="/home/cannam/code/may/bin/yc"
+
+if [ ! -d "$trios_path" ]; then
+    echo "TRIOS dataset directory $trios_path not found, giving up"
+    exit 1
+fi
+
+if ! "$yc" -v ; then
+    echo "Failed to run Yeti compiler yc at $yc_path, giving up";
+fi
+
+if ! sonic-annotator -v ; then
+    echo "Failed to run sonic-annotator (not in PATH?), giving up"
+    exit 1
+fi
+
+rdffile="../../silvet.n3"
+if [ ! -f "$rdffile" ] ; then
+    echo "Failed to find plugin RDF file at $rdffile, giving up"
+    exit 1
+fi
+
+case "$trios_path" in
+*\ *) echo "TRIOS dataset path $trios_path has a space in it, this script won't handle that"; exit 1;;
+esac
+
+VAMP_PATH=../..
+export VAMP_PATH
+
+outfile="/tmp/$$"
+
+tmpwav="/tmp/$$norm.wav"
+
+instfile="/tmp/$$instruments.txt"
+
+transfile="/tmp/$$transform.ttl"
+
+trap 'rm -f "$outfile" "$tmpwav" "$instfile" "$transfile" "$outfile.lab"' 0
+
+# Use the mix and single-instrument non-synthetic files for a (varied)
+# subset of the TRIOS dataset. Omit percussion (but we still use the
+# Take Five example, even though it's largely percussion, because it's
+# a good test of how we do with other instruments in the presence of
+# percussion).
+infiles=`find "$trios_path" -name \*.wav -print | egrep '(mozart|lussier|take_five)' | grep -v _syn.wav | grep -v kick.wav | grep -v ride.wav | grep -v snare.wav`
+
+grep Piano "$rdffile" | sed 's/^.*( *//' | sed 's/ *).*$//' | sed 's/ "/\n/g' | sed 's/"//g' | tr '[A-Z]' '[a-z]' | tail -n +2 | cat -n > "$instfile"
+
+instrument_for() {
+    filename="$1"
+    base=`basename "$filename" .wav`
+    instrument_no=`grep "$base" "$instfile" | awk '{ print $1; }'`
+    if [ -z "$instrument_no" ] || [ -z "$base" ]; 
+    then echo 0
+    else echo "$instrument_no"
+    fi
+}
+
+echo
+echo "Input files are:"
+echo $infiles | fmt -1
+
+time for infile in $infiles; do
+
+    echo
+    echo "Evaluating for file $infile..."
+
+    instrument=`instrument_for "$infile"`
+    case "$instrument" in
+	[0-9]*) ;;
+	*) echo "Instrument extraction failed for infile $infile -- not even default multi-instrument setting returned?"; exit 1;;
+    esac
+    
+    piece=`basename \`dirname "$infile" \``
+    arrangement=`basename "$infile" .wav`
+
+    echo
+    echo "For piece $piece, arrangement $arrangement, using instrument $instrument..."
+
+    sox "$infile" "$tmpwav" gain -n -6.020599913279624
+
+    # generate the transform by interpolating the instrument parameter
+    cat transform.ttl | sed "s/INSTRUMENT_PARAMETER/$instrument/" > "$transfile"
+
+    sonic-annotator \
+	--writer csv \
+	--csv-one-file "$outfile" \
+	--csv-force \
+	--transform "$transfile" \
+	"$tmpwav"
+
+    cat "$outfile" | \
+	sed 's/^[^,]*,//' | \
+	while IFS=, read start duration frequency level label; do
+	    end=`echo "$start $duration + p" | dc`
+	    echo -e "$start\t$end\t$frequency"
+    done > "$outfile.lab"
+
+    for ms in 50 100; do
+	mark=""
+	if [ "$ms" = "50" ]; then mark="  <-- main measure"; fi;
+	echo
+	echo "Validating against ground truth at $ms ms:"
+	"$yc" ./evaluate_lab.yeti "$ms" "../TRIOS-groundtruth/$piece/$arrangement.lab" "$outfile.lab" | sed 's/$/'"$mark"'/'
+	echo
+	echo "Validating against MIREX submission at $ms ms:"
+	"$yc" ./evaluate_lab.yeti "$ms" "../TRIOS-mirex2012-matlab/$piece/$arrangement.lab" "$outfile.lab"
+	echo
+	echo "Validating MIREX against ground truth at $ms ms":
+	"$yc" ./evaluate_lab.yeti "$ms" "../TRIOS-groundtruth/$piece/$arrangement.lab" "../TRIOS-mirex2012-matlab/$piece/$arrangement.lab"
+    done;
+
+    echo
+done
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/testdata/evaluation/transform.ttl	Wed Jun 04 11:46:01 2014 +0100
@@ -0,0 +1,21 @@
+@prefix xsd:      <http://www.w3.org/2001/XMLSchema#> .
+@prefix vamp:     <http://purl.org/ontology/vamp/> .
+@prefix :         <#> .
+
+:transform a vamp:Transform ;
+    vamp:plugin <http://vamp-plugins.org/rdf/plugins/silvet#silvet> ;
+    vamp:step_size "1024"^^xsd:int ; 
+    vamp:block_size "1024"^^xsd:int ; 
+    vamp:parameter_binding [
+        vamp:parameter [ vamp:identifier "finetune" ] ;
+        vamp:value "0"^^xsd:float ;
+    ] ;
+    vamp:parameter_binding [
+        vamp:parameter [ vamp:identifier "instrument" ] ;
+        vamp:value "INSTRUMENT_PARAMETER"^^xsd:float ;
+    ] ;
+    vamp:parameter_binding [
+        vamp:parameter [ vamp:identifier "mode" ] ;
+        vamp:value "1"^^xsd:float ;
+    ] ;
+    .
--- a/testdata/timing/run.sh	Thu May 29 15:18:14 2014 +0100
+++ b/testdata/timing/run.sh	Wed Jun 04 11:46:01 2014 +0100
@@ -45,13 +45,13 @@
 for ms in 50 100 150; do
     echo
     echo "Validating against ground truth at $ms ms:"
-    "$yc" ../evaluation/evaluate_lab.yeti "$ms" "../TRIOS-groundtruth/take_five.lab" "$outfile.lab"
+    "$yc" ../evaluation/evaluate_lab.yeti "$ms" "../TRIOS-groundtruth/take_five/mix.lab" "$outfile.lab"
     echo
     echo "Validating against MIREX submission at $ms ms:"
     "$yc" ../evaluation/evaluate_lab.yeti "$ms" "../TRIOS-mirex2012-matlab/take_five/mix.lab" "$outfile.lab"
     echo
     echo "Validating MIREX against ground truth at $ms ms":
-    "$yc" ../evaluation/evaluate_lab.yeti "$ms" "../TRIOS-groundtruth/take_five.lab" "../TRIOS-mirex2012-matlab/take_five/mix.lab"
+    "$yc" ../evaluation/evaluate_lab.yeti "$ms" "../TRIOS-groundtruth/take_five/mix.lab" "../TRIOS-mirex2012-matlab/take_five/mix.lab"
 done;
 
 echo