Mercurial > hg > silvet
annotate testdata/evaluation/transform.ttl @ 327:df9a8e16bae6 livemode-octave-higher
Experiment with dropping the bottom octave off each template (since most of the information is in higher harmonics anyway!) -- this is about 15% faster again and has half the latency, but per
author | Chris Cannam |
---|---|
date | Tue, 19 May 2015 09:29:00 +0100 |
parents | 40684b5dd478 |
children |
rev | line source |
---|---|
Chris@197 | 1 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . |
Chris@197 | 2 @prefix vamp: <http://purl.org/ontology/vamp/> . |
Chris@197 | 3 @prefix : <#> . |
Chris@197 | 4 |
Chris@197 | 5 :transform a vamp:Transform ; |
Chris@197 | 6 vamp:plugin <http://vamp-plugins.org/rdf/plugins/silvet#silvet> ; |
Chris@197 | 7 vamp:step_size "1024"^^xsd:int ; |
Chris@197 | 8 vamp:block_size "1024"^^xsd:int ; |
Chris@197 | 9 vamp:parameter_binding [ |
Chris@197 | 10 vamp:parameter [ vamp:identifier "finetune" ] ; |
Chris@197 | 11 vamp:value "0"^^xsd:float ; |
Chris@197 | 12 ] ; |
Chris@197 | 13 vamp:parameter_binding [ |
Chris@197 | 14 vamp:parameter [ vamp:identifier "instrument" ] ; |
Chris@197 | 15 vamp:value "INSTRUMENT_PARAMETER"^^xsd:float ; |
Chris@197 | 16 ] ; |
Chris@197 | 17 vamp:parameter_binding [ |
Chris@197 | 18 vamp:parameter [ vamp:identifier "mode" ] ; |
Chris@269 | 19 vamp:value "MODE_PARAMETER"^^xsd:float ; |
Chris@197 | 20 ] ; |
Chris@197 | 21 . |