sdelangen commited on
Commit
32858bd
1 Parent(s): e3a8656

Fix SB 1.0 compatibility

Browse files

See: 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`.

Files changed (1) hide show
  1. 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