-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
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
alternative way of concatenating two LSTM cell #10
Comments
Keras is tensorflow-based, so you can use functions from tensorflow to concatenate two tensors together. |
Could you please share a link with me in which doing this? Thanks in advance:) |
https://apimirror.com/tensorflow~python/tf/concat Or you can look for concatenate function in Keras source code, as a reference. |
It did not help actually, Im trying to convert your code to CoreMl, but CoreMl does not support concatenate! |
Can you please let me know about this? Thanks again. |
You cannot set the specific dimension of rnn_2, two "? " depend on input dataset at the very beginning, First'?' presents the batch size, and the second is 1/8 of input image width. |
Hello again:)
I am working on your code and almost done. except I need to change one line of the code:
rnn2_merged = concatenate([rnn_2, rnn_2b])
in which you are concatenating them.Can you please help me with this. I want to keep the same structure but without Concatenate?
to put it another way, what will be the alternative way of concatenating them in
keras
but without using concatenate?Thanks for taking the time.
The text was updated successfully, but these errors were encountered: