PYIN Parameters » History » Version 39

Chris Cannam, 2019-11-18 03:19 PM

1 1 Chris Cannam
h1. PYIN Parameters
2 1 Chris Cannam
3 35 Chris Cannam
h3. The pYIN plugin
4 35 Chris Cannam
5 1 Chris Cannam
Tony uses a Vamp plugin called "pYIN":/projects/pyin for pitch and note analysis.
6 1 Chris Cannam
7 36 Chris Cannam
The plugin can be used in other Vamp plugin hosts as well: see the "pYIN project page":/projects/pyin to download the plugin separately from Tony.
8 36 Chris Cannam
9 36 Chris Cannam
This page may be helpful if you need to get results from pYIN that match those generated in Tony (or vice versa).
10 1 Chris Cannam
11 35 Chris Cannam
h3. pYIN parameters that Tony uses
12 35 Chris Cannam
13 24 Chris Cannam
pYIN has a number of processing parameters which can be adjusted, and Tony contains a number of options (on the Analysis menu) which adjust some of them. However, the names, identifiers, and default values of the pYIN parameters do not match those used in Tony. Generally this is because the parameters found in pYIN are continuous value ranges, while the settings in Tony are all on-off toggles.
14 1 Chris Cannam
15 1 Chris Cannam
Here is a table showing the correspondence between Tony menu options and pYIN parameters, as of Tony v2.1 and pYIN v1.1.
16 1 Chris Cannam
17 30 Chris Cannam
|*Tony option*|*pYIN parameter name*|*pYIN parameter id*|*pYIN parameter type*|*pYIN default value*|*Value when Tony option is on*|*Value when Tony option is off*|*Tony option default*|
18 30 Chris Cannam
|Unbiased Timing (slow)|Use non-standard precise YIN timing (slow)|@precisetime@|Toggle|Off|On|Off|Off|
19 30 Chris Cannam
|Penalise Soft Pitches|Suppress low amplitude pitch estimates|@lowampsuppression@|Range 0.0-1.0|0.1|0.2|0.0|On|
20 30 Chris Cannam
|High Onset Sensitivity|Onset sensitivity|@onsetsensitivity@|Range 0.0-1.0|0.7|0.7|0.0|On|
21 30 Chris Cannam
|Drop Short Notes|Duration pruning threshold|@prunethresh@|Range 0.0-0.2|0.1|0.1|0.0|On|
22 11 Chris Cannam
23 31 Chris Cannam
*Note*: There is a bug in Tony v2.1 (as well as earlier releases) in the handling of the "Penalise Soft Pitches" option. When you first run the application, this option is shown as ticked in the menu, but it is not actually activated when running pYIN (the pYIN parameter is instead set to 0.0). If you switch the option off and on again in the menu, or select "Reset Options to Defaults", then the parameter will subsequently be set correctly. This state is remembered in subsequent runs, so you only have to do this once. The bug will be fixed in Tony v2.1.1. This does unfortunately mean the behaviour of v2.1.1 "out of the box" will differ slightly from the (erroneous) first-run behaviour of v2.1.
24 16 Chris Cannam
25 35 Chris Cannam
h3. Other pYIN parameters
26 35 Chris Cannam
27 32 Chris Cannam
There are also some parameters in pYIN that cannot be changed in Tony - the application leaves these all at their default values. They are:
28 33 Chris Cannam
29 33 Chris Cannam
|*pYIN parameter name*|*pYIN parameter id*|*pYIN parameter type*|*Default*|
30 33 Chris Cannam
|Yin threshold distribution|@threshdistr@|8 distinct options|"Beta (mean 0.15)"|
31 33 Chris Cannam
|Fixed-lag smoothing|@fixedlag@|Toggle|On|
32 10 Chris Cannam
|Output estimates classified as unvoiced?|@outputunvoiced@|Three-way toggle|Off|
33 1 Chris Cannam
34 37 Chris Cannam
h3. How to set these parameters when using Sonic Annotator
35 37 Chris Cannam
36 37 Chris Cannam
(See also the "Sonic Annotator documentation":/projects/sonic-annotator/wiki)
37 37 Chris Cannam
38 37 Chris Cannam
You can specify a plugin for Sonic Annotator using the @-d@ (default) flag, which tells it to run a plugin with the default parameters:
39 37 Chris Cannam
40 37 Chris Cannam
<pre>
41 39 Chris Cannam
$ sonic-annotator -d vamp:pyin:pyin:smoothedpitchtrack audio.wav -w csv --csv-one-file output.csv
42 37 Chris Cannam
</pre>
43 37 Chris Cannam
44 38 Chris Cannam
But if you want to set any parameters to non-default values, you need a transform specification file. You can create a skeleton and then edit it:
45 37 Chris Cannam
46 38 Chris Cannam
<pre>
47 38 Chris Cannam
$ sonic-annotator -s vamp:pyin:pyin:smoothedpitchtrack > pitchtrack.ttl
48 38 Chris Cannam
</pre>
49 38 Chris Cannam
50 38 Chris Cannam
Then edit the file @pitchtrack.ttl@ and change the parameter values in it. For example, you might change this block
51 38 Chris Cannam
52 38 Chris Cannam
<pre>
53 38 Chris Cannam
    vamp:parameter_binding [
54 38 Chris Cannam
        vamp:parameter [ vamp:identifier "onsetsensitivity" ] ;
55 38 Chris Cannam
        vamp:value "0.7"^^xsd:float ;
56 38 Chris Cannam
    ] ;
57 38 Chris Cannam
    vamp:parameter_binding [
58 38 Chris Cannam
        vamp:parameter [ vamp:identifier "outputunvoiced" ] ;
59 38 Chris Cannam
        vamp:value "0"^^xsd:float ;
60 38 Chris Cannam
    ] ;
61 38 Chris Cannam
</pre>
62 38 Chris Cannam
63 38 Chris Cannam
to
64 38 Chris Cannam
65 38 Chris Cannam
<pre>
66 38 Chris Cannam
    vamp:parameter_binding [
67 38 Chris Cannam
        vamp:parameter [ vamp:identifier "onsetsensitivity" ] ;
68 38 Chris Cannam
        vamp:value "0.0"^^xsd:float ;
69 38 Chris Cannam
    ] ;
70 38 Chris Cannam
    vamp:parameter_binding [
71 38 Chris Cannam
        vamp:parameter [ vamp:identifier "outputunvoiced" ] ;
72 38 Chris Cannam
        vamp:value "2"^^xsd:float ;
73 38 Chris Cannam
    ] ;
74 38 Chris Cannam
</pre>
75 38 Chris Cannam
76 38 Chris Cannam
to adjust the onset sensitivity and also tell pYIN to return negative values for unvoiced frames. Then run Sonic Annotator with this transform file:
77 38 Chris Cannam
78 38 Chris Cannam
<pre>
79 39 Chris Cannam
$ sonic-annotator -t pitchtrack.ttl audio.wav -w csv --csv-one-file output.csv
80 38 Chris Cannam
</pre>
81 37 Chris Cannam
82 35 Chris Cannam
h3. Screenshots
83 10 Chris Cannam
84 34 Chris Cannam
|*Options in the Analysis menu of Tony that control pYIN parameters*|*Options available when using pYIN directly in Sonic Visualiser*|
85 34 Chris Cannam
|!Screenshot_2019-11-18_13-03-34.png!|!Screenshot_2019-11-18_13-04-25.png!|