Skip to content

Commit

Permalink
Unrol RNNs
Browse files Browse the repository at this point in the history
  • Loading branch information
monatis committed Jan 4, 2021
1 parent acf0dd5 commit aac6f53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow_asr/models/transducer.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def __init__(self,
name=f"{name}_{rnn_type}_{i}", return_state=True,
implementation=rnn_implementation,
kernel_regularizer=kernel_regularizer,
bias_regularizer=bias_regularizer
bias_regularizer=bias_regularizer, unroll=True
)
if layer_norm:
ln = tf.keras.layers.LayerNormalization(name=f"{name}_ln_{i}")
Expand Down

0 comments on commit aac6f53

Please sign in to comment.