Fix SB 1.0 compatibility
Browse filesSee: https://github.com/speechbrain/speechbrain/issues/2604
This model was trained with `causal: True` (the default), but this functionality was broken pre-1.0.
Upon checking, the `TransformerASR` for this model doesn't seem to have anything else affected by the switch from `causal: True` to `causal: False`.
- hyperparams.yaml +1 -0
hyperparams.yaml
CHANGED
@@ -61,6 +61,7 @@ Transformer: !new:speechbrain.lobes.models.transformer.TransformerASR.Transforme
|
|
61 |
dropout: !ref <transformer_dropout>
|
62 |
activation: !ref <activation>
|
63 |
normalize_before: True
|
|
|
64 |
|
65 |
|
66 |
ctc_lin: !new:speechbrain.nnet.linear.Linear
|
|
|
61 |
dropout: !ref <transformer_dropout>
|
62 |
activation: !ref <activation>
|
63 |
normalize_before: True
|
64 |
+
causal: False
|
65 |
|
66 |
|
67 |
ctc_lin: !new:speechbrain.nnet.linear.Linear
|