You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
The returned shape of rnn_h_init and rnn_c_init are both empty tuple "()" and produce an error when initializing the parameters in FeedForward model.
If I change the code to
the returned shapes seem to be right now. But according to the instructions in rnn_cell_demo.py, both c and h are time major rather than batch major.
I am not familiar with RNN symbol in mxnet, can anyone provide some help about this? Should I define h and c without using SwapAxis?
The text was updated successfully, but these errors were encountered:
Following the code in example/rnn/rnn_cell_demo.py, I create a RNN symbol like this:
The returned shape of rnn_h_init and rnn_c_init are both empty tuple "()" and produce an error when initializing the parameters in FeedForward model.
If I change the code to
the returned shapes seem to be right now. But according to the instructions in rnn_cell_demo.py, both c and h are time major rather than batch major.
I am not familiar with RNN symbol in mxnet, can anyone provide some help about this? Should I define h and c without using SwapAxis?
The text was updated successfully, but these errors were encountered: