We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
So I want to change below Keras bidirectional LSTM layer into Transformer encoder:
lstmLayer = keras.layers.Bidirectional( keras.layers.CuDNNLSTM(args.rnnSize, return_sequences = True, recurrent_initializer = 'glorot_uniform' ) )(inputLayer)
so can this be accomplished using your library? The rest of the code remains same, I just want to replace bidirectional LSTM layers with Transformer.
I would really appreciate your help. Thanks.
The text was updated successfully, but these errors were encountered:
@Eugen2525 did you figure it out how to do it?
Sorry, something went wrong.
No branches or pull requests
So I want to change below Keras bidirectional LSTM layer into Transformer encoder:
lstmLayer = keras.layers.Bidirectional( keras.layers.CuDNNLSTM(args.rnnSize, return_sequences = True, recurrent_initializer = 'glorot_uniform' ) )(inputLayer)
so can this be accomplished using your library? The rest of the code remains same, I just want to replace bidirectional LSTM layers with Transformer.
I would really appreciate your help. Thanks.
The text was updated successfully, but these errors were encountered: