Changeset 336cf77 for python/bench-onset


Ignore:
Timestamp:
Dec 16, 2005, 5:34:00 AM (19 years ago)
Author:
Paul Brossier <piem@altern.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
50791b3
Parents:
75139a9
Message:

rename class task to bench, move pretty_print into it
rename class task to bench, move pretty_print into it

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/bench-onset

    r75139a9 r336cf77  
    1818                self.mode = 'dual'
    1919
    20 class taskonset(task):
     20class benchonset(bench):
    2121       
    22         def pretty_print(self,values):
    23                 for i in range(len(values)):
    24                         print self.formats[i] % values[i],
    25                 print
    26 
    2722        def compute_results(self):
    2823                self.P = 100*float(self.expc-self.missed-self.merged)/(self.expc-self.missed-self.merged + self.bad+self.doubled)
     
    158153respath = '/var/tmp/DB-testings'
    159154
    160 taskonset = taskonset(datapath,respath)
     155benchonset = benchonset(datapath,respath,checkres=True,checkanno=True)
    161156
    162 taskonset.params = onset_parameters()
     157benchonset.params = onset_parameters()
    163158
    164 taskonset.titles = [ 'mode', 'thres', 'orig', 'expc', 'missd', 'mergd',
     159benchonset.titles = [ 'mode', 'thres', 'orig', 'expc', 'missd', 'mergd',
    165160'bad', 'doubl', 'corrt', 'GD', 'FP', 'GD-merged', 'FP-pruned',
    166161'prec', 'recl', 'dist' ]
    167 taskonset.formats = ["%12s" , "| %6s", "| %6s", "| %6s", "| %6s", "| %6s",
     162benchonset.formats = ["%12s" , "| %6s", "| %6s", "| %6s", "| %6s", "| %6s",
    168163"| %6s", "| %6s", "| %6s", "| %8s", "| %8s", "| %8s", "| %8s",
    169164"| %6s", "| %6s", "| %6s"]
    170165
    171 #taskonset.run_bench(modes=modes,thresholds=thresholds)
    172 taskonset.auto_learn(modes=modes)
     166#benchonset.run_bench(modes=modes,thresholds=thresholds)
     167benchonset.auto_learn(modes=modes)
    173168
    174169#        gatherdata
Note: See TracChangeset for help on using the changeset viewer.