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
Hey, I am trying to add a Dropout-Layer to a Readout Model like this:
rnn = RecurrentSequential(readout='add', teacher_force=True, return_sequences=True) rnn.add(LSTMCell(10, input_dim=4)) rnn.add(LSTMCell(10)) rnn.add(Dropout(0.2)) rnn.add(LSTMCell(4))
but since Readout only works with Theano and the Dropout-Layer only works with Tensorflow, I somehow got stuck. Does anybody have any suggestions? :) Thanks in advance!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey,
I am trying to add a Dropout-Layer to a Readout Model like this:
but since Readout only works with Theano and the Dropout-Layer only works with Tensorflow, I somehow got stuck. Does anybody have any suggestions? :)
Thanks in advance!
The text was updated successfully, but these errors were encountered: