-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparameters.json
83 lines (83 loc) · 2.5 KB
/
parameters.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"version": 1,
"type": "synthetic-data",
"info": {
"name": "Mix Noise Audio Generator",
"description": "Mix noise to audio files with SNR targets"
},
"parameters": [
{
"name": "Path to noise files",
"value": "/mnt/s3fs/noise_dir",
"type": "string",
"help": "Bucket path/prefix with noise files",
"param": "noise-dir"
},
{
"name": "Path to audio/clean files",
"value": "/mnt/s3fs/audio_dir",
"type": "string",
"help": "Bucket path/prefix with audio/clean files",
"param": "audio-dir"
},
{
"name": "Min SNR",
"value": "3.0",
"type": "float",
"help": "Min SNR when mixing with noise files",
"param": "min-snr"
},
{
"name": "Max SNR",
"value": "5.0",
"type": "float",
"help": "Max SNR when mixing with noise files",
"param": "max-snr"
},
{
"name": "Labelling method",
"value": "manual",
"type": "select",
"valid": [
{
"label": "Extract label from filename",
"value": "auto"
},
{
"label": "Label is set manually",
"value": "manual"
}
],
"help": "Labelling method ('auto' will extract label from filename such as <label>.<rest-of-filename>.wav)",
"param": "labelling-method"
},
{
"name": "Label",
"value": "empty",
"type": "string",
"help": "Label for the audio samples, only if labelling method is set to 'manual'",
"param": "label"
},
{
"name": "Upload to category",
"value": "split",
"type": "select",
"valid": [
{
"label": "Split 80/20 between training and testing",
"value": "split"
},
{
"label": "Training",
"value": "training"
},
{
"label": "Testing",
"value": "testing"
}
],
"help": "Data will be uploaded to this category in your project",
"param": "upload-category"
}
]
}