Changeset 43938de
- Timestamp:
- Mar 3, 2006, 7:11:52 AM (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:
- 5d1c070
- Parents:
- 13c3fba
- Location:
- python
- Files:
-
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
python/aubio/bench/node.py
r13c3fba r43938de 90 90 """ class to run benchmarks on directories """ 91 91 def __init__(self,datadir,resdir=None,checkres=False,checkanno=False,params=[]): 92 from aubio.task s import taskparams92 from aubio.task.params import taskparams 93 93 self.datadir = datadir 94 94 # path to write results path to -
python/aubio/task/onset.py
r13c3fba r43938de 61 61 62 62 def eval(self,inputdata,ftru,mode='roc',vmode=''): 63 from txtfile import read_datafile64 from onsetcompare import onset_roc, onset_diffs, onset_rocloc63 from aubio.txtfile import read_datafile 64 from aubio.onsetcompare import onset_roc, onset_diffs, onset_rocloc 65 65 ltru = read_datafile(ftru,depth=0) 66 66 lres = [] -
python/test/bench/onset/bench-onset
r13c3fba r43938de 1 1 #! /usr/bin/python 2 2 3 from aubio.task simport *3 from aubio.task import * 4 4 5 from benchonset import mmean, stdev, benchonset5 from aubio.bench.onset import mmean, stdev, benchonset 6 6 7 7 class mybenchonset(benchonset): -
python/test/bench/pitch/bench-pitch
r13c3fba r43938de 2 2 3 3 from aubio.bench.node import * 4 from aubio.task simport *4 from aubio.task import * 5 5 6 6 class benchpitch(bench):
Note: See TracChangeset
for help on using the changeset viewer.