Skip to content

Commit

Permalink
Make tanh the joint network activation function
Browse files Browse the repository at this point in the history
  • Loading branch information
hwangjeff committed Apr 8, 2022
1 parent 35b576b commit f49325f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion torchaudio/prototype/models/rnnt.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@ def conformer_rnnt_base():
lstm_layer_norm_epsilon=1e-5,
lstm_dropout=0.3,
)
joiner = _Joiner(1024, 1024)
joiner = _Joiner(1024, 1024, activation="tanh")
return RNNT(encoder, decoder, joiner)

0 comments on commit f49325f

Please sign in to comment.