poonehmousavi
commited on
Commit
·
74357e5
1
Parent(s):
60c8d9c
Update hyperparams.yaml
Browse files- hyperparams.yaml +24 -4
hyperparams.yaml
CHANGED
@@ -35,11 +35,31 @@ max_attn_shift: 140
|
|
35 |
ctc_weight_decode: 0.0
|
36 |
temperature: 1.50
|
37 |
|
38 |
-
enc: !new:speechbrain.lobes.models.VanillaNN.VanillaNN
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
input_shape: [null, null, 1024]
|
40 |
-
|
41 |
-
|
42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
|
44 |
wav2vec2: !new:speechbrain.lobes.models.huggingface_wav2vec.HuggingFaceWav2Vec2
|
45 |
source: !ref <wav2vec2_hub>
|
|
|
35 |
ctc_weight_decode: 0.0
|
36 |
temperature: 1.50
|
37 |
|
38 |
+
# enc: !new:speechbrain.lobes.models.VanillaNN.VanillaNN
|
39 |
+
# input_shape: [null, null, 1024]
|
40 |
+
# activation: !ref <activation>
|
41 |
+
# dnn_blocks: !ref <dnn_layers>
|
42 |
+
# dnn_neurons: !ref <dnn_neurons>
|
43 |
+
|
44 |
+
enc: !new:speechbrain.nnet.containers.Sequential
|
45 |
input_shape: [null, null, 1024]
|
46 |
+
linear1: !name:speechbrain.nnet.linear.Linear
|
47 |
+
n_neurons: !ref <dnn_neurons>
|
48 |
+
bias: True
|
49 |
+
bn1: !name:speechbrain.nnet.normalization.BatchNorm1d
|
50 |
+
activation: !new:torch.nn.LeakyReLU
|
51 |
+
|
52 |
+
linear2: !name:speechbrain.nnet.linear.Linear
|
53 |
+
n_neurons: !ref <dnn_neurons>
|
54 |
+
bias: True
|
55 |
+
bn2: !name:speechbrain.nnet.normalization.BatchNorm1d
|
56 |
+
activation2: !new:torch.nn.LeakyReLU
|
57 |
+
|
58 |
+
linear3: !name:speechbrain.nnet.linear.Linear
|
59 |
+
n_neurons: !ref <dnn_neurons>
|
60 |
+
bias: True
|
61 |
+
bn3: !name:speechbrain.nnet.normalization.BatchNorm1d
|
62 |
+
activation3: !new:torch.nn.LeakyReLU
|
63 |
|
64 |
wav2vec2: !new:speechbrain.lobes.models.huggingface_wav2vec.HuggingFaceWav2Vec2
|
65 |
source: !ref <wav2vec2_hub>
|