Changeset dbc0351 for python/aubio/bench
- Timestamp:
- Feb 17, 2006, 5:03:04 PM (19 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 677b267
- Parents:
- 0cd995a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/aubio/bench/node.py
r0cd995a rdbc0351 144 144 act_on_results(mkdir,self.datadir,self.resdir,filter='d') 145 145 146 def pretty_print(self,values ):146 def pretty_print(self,values,sep='|'): 147 147 for i in range(len(values)): 148 print self.formats[i] % values[i], 148 print self.formats[i] % values[i], sep, 149 149 print 150 150 151 151 def dir_exec(self): 152 152 """ run file_exec on every input file """ 153 self.orig, self.missed, self.merged, self.expc, \ 154 self.bad, self.doubled = 0, 0, 0, 0, 0, 0 155 self.l , self.mean = [], 0 156 act_on_files(self.file_exec,self.sndlist,self.reslist, \ 157 suffix='',filter=sndfile_filter) 158 153 pass 154 159 155 def dir_eval(self): 160 156 pass
Note: See TracChangeset
for help on using the changeset viewer.