forked from fakufaku/auxiva-ipa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperiment_ipa_config.json
101 lines (97 loc) · 2.65 KB
/
experiment_ipa_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
{
"name": "speed_contest_journal_ipa",
"seed": 12345,
"repeat": 100,
"sinr": [5, 15, 25],
"n_targets": "determined",
"n_interferers": [0],
"n_mics": [2, 3, 4, 5],
"dist_crit_ratio": [1.0],
"samples_list" : "./samples/metadata.json",
"room_cache_file": "./data/experiment1_rooms.json",
"mix_params": {"diffuse_ratio": 0.0, "ref_mic": 0},
"room_params": {
"mic_delta": 0.1,
"fs": 16000,
"t60_interval": [0.150, 0.350],
"room_width_interval": [6, 10],
"room_height_interval": [2.8, 4.5],
"source_zone_height": [1.0, 2.0],
"guard_zone_width": 0.5
},
"stft_params" : {
"framesize" : 4096,
"hop" : 1024,
"window": "hamming"
},
"algorithm_kwargs" : {
"auxiva_laplace" : {
"algo" : "auxiva",
"kwargs" : {
"n_iter" : 100,
"model" : "laplace",
"init": "pca",
"callback_checkpoints" : [1, 2, 3, 4, 6, 8, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
}
},
"auxiva_iss_laplace" : {
"algo" : "auxiva-iss",
"kwargs" : {
"n_iter" : 100,
"model" : "laplace",
"init": "pca",
"callback_checkpoints" : [1, 2, 3, 4, 6, 8, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
}
},
"auxiva2_laplace" : {
"algo" : "auxiva2",
"kwargs" : {
"n_iter" : 100,
"model" : "laplace",
"init": "pca",
"callback_checkpoints" : [2, 4, 6, 8, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
}
},
"auxiva_demix_steer_pca" : {
"algo" : "auxiva-demix-steer",
"kwargs" : {
"n_iter" : 100,
"model" : "laplace",
"init": "pca",
"callback_checkpoints" : [2, 4, 6, 8, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
}
},
"auxiva_laplace_nopca" : {
"algo" : "auxiva",
"kwargs" : {
"n_iter" : 100,
"model" : "laplace",
"callback_checkpoints" : [1, 2, 3, 4, 6, 8, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
}
},
"auxiva_iss_laplace_nopca" : {
"algo" : "auxiva-iss",
"kwargs" : {
"n_iter" : 100,
"model" : "laplace",
"callback_checkpoints" : [1, 2, 3, 4, 6, 8, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
}
},
"auxiva2_laplace_nopca" : {
"algo" : "auxiva2",
"kwargs" : {
"n_iter" : 100,
"model" : "laplace",
"callback_checkpoints" : [2, 4, 6, 8, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
}
},
"auxiva_demix_steer_nopca" : {
"algo" : "auxiva-demix-steer",
"kwargs" : {
"n_iter" : 100,
"model" : "laplace",
"callback_checkpoints" : [2, 4, 6, 8, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
}
}
}
}