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
In the official document, the input of LSTM is (seq_len, batch, input_size).However in your code, the input of LSTM is (Batch, Seq_len, input_size).Use torch.transpose(x,1,0)??
The text was updated successfully, but these errors were encountered:
In the official document, the input of LSTM is (seq_len, batch, input_size).However in your code, the input of LSTM is (Batch, Seq_len, input_size).Use torch.transpose(x,1,0)??
The text was updated successfully, but these errors were encountered: