-
Notifications
You must be signed in to change notification settings - Fork 14
/
overiva_sim_config.json
111 lines (107 loc) · 2.24 KB
/
overiva_sim_config.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name" : "mbss_sim",
"n_repeat" : 50,
"seed" : 12345,
"n_targets_list" : [1,2,3,4],
"n_mics_list" : [2,3,4,5,6,7,8],
"rt60_list" : {
"0.3" : { "max_order" : 17, "absorption" : 0.35 }
},
"sinr_list" : [10],
"samples_list" : "/home/robin/icassp2019-blinky-iva/samples/metadata.json",
"snr" : 60,
"fs" : 16000,
"room_dim" : [10, 7.5, 3],
"weak_source_var" : 1.0,
"n_interferers" : 10,
"ref_mic" : 0,
"dir" : "data",
"monitor_convergence" : false,
"stft_params" : {
"framesize" : 4096
},
"algorithm_kwargs" : {
"auxiva_laplace" : {
"algo" : "auxiva",
"kwargs" : {
"n_iter" : 100,
"proj_back" : true,
"model" : "laplace"
}
},
"auxiva_gauss" : {
"algo" : "auxiva",
"kwargs" : {
"n_iter" : 100,
"proj_back" : true,
"model" : "gauss"
}
},
"auxiva_pca_laplace" : {
"algo" : "auxiva_pca",
"kwargs" : {
"n_iter" : 100,
"proj_back" : true,
"model" : "laplace"
}
},
"auxiva_pca_gauss" : {
"algo" : "auxiva_pca",
"kwargs" : {
"n_iter" : 100,
"proj_back" : true,
"model" : "gauss"
}
},
"overiva_laplace" : {
"algo" : "overiva",
"kwargs" : {
"n_iter" : 100,
"proj_back" : true,
"init_eig" : false,
"model" : "laplace"
}
},
"overiva_gauss" : {
"algo" : "overiva",
"kwargs" : {
"n_iter" : 100,
"proj_back" : true,
"init_eig" : false,
"model" : "gauss"
}
},
"ogive_laplace" : {
"algo" : "ogive",
"kwargs" : {
"n_iter": 4000,
"step_size": 0.1,
"tol": 1e-3,
"update": "demix",
"proj_back": true,
"model": "laplace",
"init_eig": false
}
},
"ogive_gauss" : {
"algo" : "ogive",
"kwargs" : {
"n_iter": 4000,
"step_size": 0.1,
"tol": 1e-3,
"update": "demix",
"proj_back": true,
"model": "gauss",
"init_eig": false
}
}
},
"overdet_algos" : [
"overiva_laplace",
"overiva_gauss",
"auxiva_pca_laplace",
"auxiva_pca_gauss",
"ogive_laplace",
"ogive_laplace_eig"
]
}