I have a general question regarding adding pitch bins in a .json file:
This is a fragment of a json file I'm working with. I want to ad a 120 degree pitch bin - which I've done in P_pitches:
...................
"init_kwargs": {
"P_pitches": [
45,
60,
90,
105,
120, <- This pitch bin added
130,
150,
180
],
"Ps": [
0.58,
0.5,
0.41,
0.7,
<- Need to add value here
1.0,
0.9,
0.79
], .................
But I also need to add a value in Ps. Best I can get from the documentation is that these are 'default values'. They seem to be less than one. Can you describe how they are used and how one would arrive at a default value when adding another pitch bin?
Thanks