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 _reverse_sequences() method in ~/mxnet/gluon/rnn/rnn_cell.py gives unexpected output when the input is of single time_step with the imperative mode. Below is the example to demonstrate the issue:
Below is the debugged output from _reverse_sequences() method
>>> len(sequences) # Before reversing the input
1
>>> sequences[0].shape # Before reversing the input
(10, 50)
>>> reversed_sequences.shape # After reversing the input
(10, 50)
>>> len(reversed_sequences) # After reversing the input
10
# The correct output should be
>>> len(reversed_sequences)
1
reversed_sequences[0].shape
(10, 50)
The issue is not reproducible in symbolic mode(Please uncomment the net.hybridize() if you want to run it in symbolic mode). Also, the failure can only be seen in the nightly pip release due to the change made in this PR #13575.
The text was updated successfully, but these errors were encountered:
Hey, this is the MXNet Label Bot.
Thank you for submitting the issue! I will try and suggest some labels so that the appropriate MXNet community members can help resolve it.
Here are my recommended labels: Bug
The
_reverse_sequences()
method in~/mxnet/gluon/rnn/rnn_cell.py
gives unexpected output when the input is of singletime_step
with the imperative mode. Below is the example to demonstrate the issue:Below is the debugged output from
_reverse_sequences()
methodThe issue is not reproducible in symbolic mode(Please uncomment the
net.hybridize()
if you want to run it in symbolic mode). Also, the failure can only be seen in the nightly pip release due to the change made in this PR #13575.The text was updated successfully, but these errors were encountered: