mirco commited on
Commit
c4d2b1d
1 Parent(s): a5c16eb

adding hyperparams.yaml for inference

Browse files
Files changed (1) hide show
  1. hyperparams.yaml +37 -0
hyperparams.yaml ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ############################################################################
2
+ # Model: ECAPA big for Speaker verification
3
+ # ############################################################################
4
+
5
+ # Feature parameters
6
+ n_mels: 80
7
+
8
+ # Model params
9
+ compute_features: !new:speechbrain.lobes.features.Fbank
10
+ n_mels: !ref <n_mels>
11
+
12
+ mean_var_norm: !new:speechbrain.processing.features.InputNormalization
13
+ norm_type: sentence
14
+ std_norm: False
15
+
16
+ embedding_model: !new:speechbrain.lobes.models.ECAPA_TDNN.ECAPA_TDNN
17
+ input_size: !ref <n_mels>
18
+ channels: [1024, 1024, 1024, 1024, 3072]
19
+ kernel_sizes: [5, 3, 3, 3, 1]
20
+ dilations: [1, 2, 3, 4, 1]
21
+ attention_channels: 128
22
+ lin_neurons: 192
23
+
24
+ mean_var_norm_emb: !new:speechbrain.processing.features.InputNormalization
25
+ norm_type: global
26
+ std_norm: False
27
+
28
+ modules:
29
+ compute_features: !ref <compute_features>
30
+ mean_var_norm: !ref <mean_var_norm>
31
+ embedding_model: !ref <embedding_model>
32
+ mean_var_norm_emb: !ref <mean_var_norm_emb>
33
+
34
+ pretrainer: !new:speechbrain.utils.parameter_transfer.Pretrainer
35
+ loadables:
36
+ embedding_model: !ref <embedding_model>
37
+ mean_var_norm_emb: !ref <mean_var_norm_emb>