Last active
June 25, 2021 04:32
-
-
Save melgor/41e7d9367410b71dfddc33db34cba85f to your computer and use it in GitHub Desktop.
How to restore CUDNNLSTM of TensorFlow at CPU device? So that it could be used in GPU, CPU or Mobile
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
for anyone who had the same issue I did, remember to set time_major=True in stack_bidirectional_dynamic_rnn().
The CudnnLSTM() function is time major, as opposed to batch major. So remember to transpose your inputs and outputs (swap dimensions 0 and 1)