-
Notifications
You must be signed in to change notification settings - Fork 4
/
configs.json
62 lines (62 loc) · 1.77 KB
/
configs.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
{
"default": {
"cfg": {
"dtype": "float32",
"input_dim": [
120,
160,
1
],
"attention_n": 20,
"n_hidden": 1024,
"n_z": 45,
"z_indirection": false,
"sequence_length": 26,
"batch_size": 64,
"n_rnn_cells": [
3,
3
],
"learning_rate": 5e-05,
"nonrecurrent_dec": false,
"residual_encoder": false,
"hearing_decoder": false,
"v1_gaussian": true,
"n_v1_write": 3,
"kl_weight": 0.1,
"congr_weight": 0.1,
"fs": 44100,
"audio_gen": {
"binaural": true,
"varying_delta": true,
"nsoundstream": 3,
"nmodulation": 4,
"section_len_msec": 8,
"attack_len_msec": 1,
"decay_len_msec": 1,
"soundscape_len_by_stream_len": 1.5,
"const_phase": true
},
"hearing": {
"models_used": {
"mfccs": true,
"wavegan": true,
"tcn": false,
"carfac": false
},
"mfcss_frame_len": 0.01,
"mfcss_frame_step": 0.002,
"mfcss_nceps": 100,
"wg_nfilters": 64,
"wg_kernel_len": 0.01,
"wg_strides": 0.002,
"hearing_repr_len": 512,
"tcn_nlevels": 11,
"tcn_nhidden": 32,
"tcn_kernel_size": 2,
"tcn_dropout": 0.1
}
},
"models": []
}
}